Skip to content

Commit 1999163

Browse files
authored
feat: next-intl@3.22 (#1391)
2 parents ae836db + 7b3a9a3 commit 1999163

File tree

135 files changed

+5146
-1308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+5146
-1308
lines changed

.github/workflows/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: main
2+
23
on:
34
pull_request:
45
types: [opened, synchronize, reopened]
6+
57
jobs:
68
build:
79
name: Build, lint, and test

.github/workflows/prerelease.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
- run: |
2424
git config --global user.name "${{ github.actor }}"
2525
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
26-
- run: pnpm run publish --conventional-prerelease --preid canary --dist-tag canary --no-push
26+
- run: |
27+
sed -i 's/"use-intl": "workspace:\^"/"use-intl": "workspace:"/' ./packages/next-intl/package.json && git commit -am "use fixed version"
28+
- run: pnpm lerna publish 0.0.0-canary-${GITHUB_SHA::7} --no-git-reset --dist-tag canary --no-push --yes
2729
if: "${{startsWith(github.event.head_commit.message, 'fix: ') || startsWith(github.event.head_commit.message, 'feat: ')}}"
2830
env:
2931
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

docs/components/CommunityLink.tsx docs/components/BlogPostLink.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Props = Omit<ComponentProps<typeof Link>, 'children'> & {
99
type?: 'article' | 'video';
1010
};
1111

12-
export default function CommunityLink({
12+
export default function BlogPostLink({
1313
author,
1414
date,
1515
title,

docs/next.config.mjs

+26-10
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,30 @@ import minLight from 'shiki/themes/min-light.mjs';
33

44
const lightTheme = {
55
...minLight,
6-
tokenColors: minLight.tokenColors.map((color) => {
7-
// Increase the contrast of comments
8-
if (color.scope?.includes('comment')) {
9-
return {...color, settings: {foreground: '#808ea3'}};
10-
} else {
11-
return color;
12-
}
13-
})
6+
tokenColors: minLight.tokenColors
7+
.map((color) => {
8+
// Increase the contrast of comments
9+
if (color.scope?.includes('comment')) {
10+
return {...color, settings: {foreground: '#808ea3'}};
11+
} else {
12+
return color;
13+
}
14+
})
15+
// Add colors for diffs
16+
.concat([
17+
{
18+
scope: 'markup.deleted.diff',
19+
settings: {
20+
foreground: '#D32F2F'
21+
}
22+
},
23+
{
24+
scope: 'markup.inserted.diff',
25+
settings: {
26+
foreground: '#22863A'
27+
}
28+
}
29+
])
1430
};
1531

1632
const withNextra = nextra({
@@ -150,12 +166,12 @@ export default withNextra({
150166
permanent: true
151167
},
152168
{
153-
source: '/examples/minimal',
169+
source: '/examples/advanced',
154170
destination: '/examples',
155171
permanent: true
156172
},
157173
{
158-
source: '/examples/advanced',
174+
source: '/examples/minimal',
159175
destination: '/examples',
160176
permanent: true
161177
}

docs/pages/api/Inter-Regular.otf

591 KB
Binary file not shown.

docs/pages/api/og.tsx docs/pages/api/og-image.tsx

+43-11
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,27 @@ export const config = {
66
};
77

88
export default async function OG(req: Request) {
9-
const inter = await fetch(
9+
const interSemiBold = await fetch(
1010
new URL('./Inter-SemiBold.otf', import.meta.url)
1111
).then((res) => res.arrayBuffer());
12+
const interRegular = await fetch(
13+
new URL('./Inter-Regular.otf', import.meta.url)
14+
).then((res) => res.arrayBuffer());
1215

1316
const {searchParams} = new URL(req.url);
14-
15-
const hasTitle = searchParams.has('title');
16-
let title = hasTitle ? searchParams.get('title')! : siteConfig.title;
17-
const maxLength = 80;
18-
if (title.length > maxLength) {
19-
title = title.slice(0, maxLength) + '...';
17+
let title = siteConfig.title,
18+
subtitle;
19+
if (searchParams.has('params')) {
20+
let params;
21+
try {
22+
params = JSON.parse(searchParams.get('params')!);
23+
} catch {
24+
// Ignore
25+
}
26+
if (params) {
27+
title = params.title || title;
28+
subtitle = params.subtitle;
29+
}
2030
}
2131

2232
return new ImageResponse(
@@ -28,7 +38,6 @@ export default async function OG(req: Request) {
2838
display: 'flex',
2939
flexDirection: 'column',
3040
alignItems: 'flex-start',
31-
justifyContent: 'space-between',
3241
padding: 80,
3342
backgroundColor: 'white',
3443
fontWeight: 600,
@@ -118,11 +127,27 @@ export default async function OG(req: Request) {
118127
fontSize: 82,
119128
lineHeight: 1.1,
120129
letterSpacing: -4,
121-
marginRight: 12
130+
marginRight: 12,
131+
marginTop: 'auto',
132+
marginBottom: 0,
133+
fontWeight: 600
122134
}}
123135
>
124136
{title}
125137
</h1>
138+
{subtitle && (
139+
<p
140+
style={{
141+
fontSize: 54,
142+
lineHeight: 1.1,
143+
letterSpacing: -4,
144+
marginRight: 12,
145+
fontWeight: 500
146+
}}
147+
>
148+
{subtitle}
149+
</p>
150+
)}
126151
</div>
127152
),
128153
{
@@ -131,8 +156,15 @@ export default async function OG(req: Request) {
131156
fonts: [
132157
{
133158
name: 'inter',
134-
data: inter,
135-
style: 'normal'
159+
data: interSemiBold,
160+
style: 'normal',
161+
weight: 600
162+
},
163+
{
164+
name: 'inter',
165+
data: interRegular,
166+
style: 'normal',
167+
weight: 500
136168
}
137169
]
138170
}

docs/pages/blog/index.mdx

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
import CommunityLink from 'components/CommunityLink';
1+
import BlogPostLink from 'components/BlogPostLink';
22

33
# next-intl blog
44

55
<div className="flex flex-col gap-4 py-8">
6-
<CommunityLink
6+
<BlogPostLink
7+
href="/blog/next-intl-3-22"
8+
title="next-intl 3.22: Incrementally moving forward"
9+
date="Oct 21, 2024"
10+
author="By Jan Amann"
11+
/>
12+
<BlogPostLink
713
href="/blog/date-formatting-nextjs"
814
title="Reliable date formatting in Next.js"
915
date="Sep 25, 2024"
1016
author="By Jan Amann"
1117
/>
12-
<CommunityLink
18+
<BlogPostLink
1319
href="/blog/next-intl-3-0"
1420
title="next-intl 3.0"
1521
date="Nov 14, 2023"
1622
author="By Jan Amann"
1723
/>
18-
<CommunityLink
24+
<BlogPostLink
1925
href="/blog/translations-outside-of-react-components"
2026
title="How (not) to use translations outside of React components"
2127
date="Apr 21, 2023"

0 commit comments

Comments
 (0)