Skip to content

Commit 62f6838

Browse files
Merge branch 'main' into docs/pt-br-readme-fix
2 parents f12a0f4 + 28f4ea2 commit 62f6838

Some content is hidden

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

41 files changed

+1501
-705
lines changed

.github/workflows/lingodotdev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Use Node.js
4949
uses: actions/setup-node@v4
5050
with:
51-
node-version: "20.19"
51+
node-version: "22"
5252

5353
- name: Lingo.dev
5454
uses: ./

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Use Node.js
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: "20.19"
36+
node-version: "22"
3737

3838
- name: Install pnpm
3939
uses: pnpm/action-setup@v4

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
permissions:
1818
contents: write
1919
pull-requests: write
20+
id-token: write
2021
steps:
2122
- name: Checkout
2223
uses: actions/checkout@v4
@@ -38,7 +39,10 @@ jobs:
3839
- name: Use Node.js
3940
uses: actions/setup-node@v4
4041
with:
41-
node-version: "20.19"
42+
node-version: "22"
43+
44+
- name: Upgrade npm for OIDC support
45+
run: npm install -g [email protected]
4246

4347
- name: Install pnpm
4448
uses: pnpm/action-setup@v4
@@ -93,4 +97,4 @@ jobs:
9397
commit: "chore: bump package version"
9498
env:
9599
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
96-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
100+
NPM_CONFIG_PROVENANCE: true

demo/adonisjs/CHANGELOG.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
# adonis
22

3+
## 0.0.59
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bb14deb`](https://github.com/lingodotdev/lingo.dev/commit/bb14debf734bf87a2ea64946f8e7235c01b05578)]:
8+
9+
10+
## 0.0.58
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`3b24647`](https://github.com/lingodotdev/lingo.dev/commit/3b246473f6f4773f00ea13211bc2be59a98e0b7c)]:
15+
- @lingo.dev/_[email protected]
16+
17+
18+
## 0.0.57
19+
20+
### Patch Changes
21+
22+
- Updated dependencies [[`29949db`](https://github.com/lingodotdev/lingo.dev/commit/29949db24ff9c8938233ebb42e8189690c3c7813)]:
23+
- @lingo.dev/_[email protected]
24+
25+
26+
## 0.0.56
27+
28+
### Patch Changes
29+
30+
- Updated dependencies [[`a60aa1e`](https://github.com/lingodotdev/lingo.dev/commit/a60aa1ec01149a4ef418b9025ae50891264f9123)]:
31+
32+
33+
## 0.0.55
34+
35+
### Patch Changes
36+
37+
- Updated dependencies [[`d7ccd60`](https://github.com/lingodotdev/lingo.dev/commit/d7ccd6000cd980333e7ac4b63da4e2ba624c3de4)]:
38+
39+
40+
## 0.0.54
41+
42+
### Patch Changes
43+
44+
- Updated dependencies [[`7367bee`](https://github.com/lingodotdev/lingo.dev/commit/7367bee3318a14647bf9bd0105270b2492fcec31)]:
45+
46+
47+
## 0.0.53
48+
49+
### Patch Changes
50+
51+
- Updated dependencies [[`1a857bd`](https://github.com/lingodotdev/lingo.dev/commit/1a857bdf76d50afb3024a2437da5fd60e6721bb9)]:
52+
- @lingo.dev/_[email protected]
53+
54+
55+
## 0.0.52
56+
57+
### Patch Changes
58+
59+
- [#1665](https://github.com/lingodotdev/lingo.dev/pull/1665) [`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b) Thanks [@vrcprl](https://github.com/vrcprl)! - Upd react version
60+
61+
- Updated dependencies [[`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b)]:
62+
63+
64+
## 0.0.51
65+
66+
### Patch Changes
67+
68+
- Updated dependencies [[`1b2980d`](https://github.com/lingodotdev/lingo.dev/commit/1b2980d9215eca4f2db101af530680d6eb3be8eb)]:
69+
- @lingo.dev/_[email protected]
70+
71+
372
## 0.0.50
473

574
### Patch Changes

demo/adonisjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adonis",
3-
"version": "0.0.50",
3+
"version": "0.0.59",
44
"private": true,
55
"type": "module",
66
"license": "UNLICENSED",
@@ -63,8 +63,8 @@
6363
"@vinejs/vine": "3.0.1",
6464
"edge.js": "6.3.0",
6565
"lingo.dev": "workspace:*",
66-
"react": "19.2.0",
67-
"react-dom": "19.2.0",
66+
"react": "19.2.3",
67+
"react-dom": "19.2.3",
6868
"reflect-metadata": "0.2.2"
6969
},
7070
"hotHook": {

demo/next-app/CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,72 @@
11
# next-app
22

3+
## 0.2.111
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bb14deb`](https://github.com/lingodotdev/lingo.dev/commit/bb14debf734bf87a2ea64946f8e7235c01b05578)]:
8+
9+
10+
## 0.2.110
11+
12+
### Patch Changes
13+
14+
- [`3b24647`](https://github.com/lingodotdev/lingo.dev/commit/3b246473f6f4773f00ea13211bc2be59a98e0b7c) Thanks [@vrcprl](https://github.com/vrcprl)! - Update Next.js to 15.3.8 to address security vulnerability
15+
16+
- Updated dependencies []:
17+
18+
19+
## 0.2.109
20+
21+
### Patch Changes
22+
23+
- Updated dependencies [[`29949db`](https://github.com/lingodotdev/lingo.dev/commit/29949db24ff9c8938233ebb42e8189690c3c7813)]:
24+
25+
26+
## 0.2.108
27+
28+
### Patch Changes
29+
30+
- Updated dependencies [[`a60aa1e`](https://github.com/lingodotdev/lingo.dev/commit/a60aa1ec01149a4ef418b9025ae50891264f9123)]:
31+
32+
33+
## 0.2.107
34+
35+
### Patch Changes
36+
37+
- Updated dependencies [[`d7ccd60`](https://github.com/lingodotdev/lingo.dev/commit/d7ccd6000cd980333e7ac4b63da4e2ba624c3de4)]:
38+
39+
40+
## 0.2.106
41+
42+
### Patch Changes
43+
44+
- Updated dependencies [[`7367bee`](https://github.com/lingodotdev/lingo.dev/commit/7367bee3318a14647bf9bd0105270b2492fcec31)]:
45+
46+
47+
## 0.2.105
48+
49+
### Patch Changes
50+
51+
- Updated dependencies [[`1a857bd`](https://github.com/lingodotdev/lingo.dev/commit/1a857bdf76d50afb3024a2437da5fd60e6721bb9)]:
52+
53+
54+
## 0.2.104
55+
56+
### Patch Changes
57+
58+
- [#1665](https://github.com/lingodotdev/lingo.dev/pull/1665) [`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b) Thanks [@vrcprl](https://github.com/vrcprl)! - Upd react version
59+
60+
- Updated dependencies [[`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b)]:
61+
62+
63+
## 0.2.103
64+
65+
### Patch Changes
66+
67+
- Updated dependencies []:
68+
69+
370
## 0.2.102
471

572
### Patch Changes

demo/next-app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-app",
3-
"version": "0.2.102",
3+
"version": "0.2.111",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -10,9 +10,9 @@
1010
},
1111
"dependencies": {
1212
"lingo.dev": "workspace:*",
13-
"next": "15.3.1",
14-
"react": "19.2.0",
15-
"react-dom": "19.2.0"
13+
"next": "15.3.8",
14+
"react": "19.2.3",
15+
"react-dom": "19.2.3"
1616
},
1717
"devDependencies": {
1818
"@eslint/eslintrc": "3",

demo/react-router-app/CHANGELOG.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,70 @@
11
# react-router-app
22

3+
## 1.0.20
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bb14deb`](https://github.com/lingodotdev/lingo.dev/commit/bb14debf734bf87a2ea64946f8e7235c01b05578)]:
8+
9+
10+
## 1.0.19
11+
12+
### Patch Changes
13+
14+
- Updated dependencies []:
15+
16+
17+
## 1.0.18
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [[`29949db`](https://github.com/lingodotdev/lingo.dev/commit/29949db24ff9c8938233ebb42e8189690c3c7813)]:
22+
23+
24+
## 1.0.17
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [[`a60aa1e`](https://github.com/lingodotdev/lingo.dev/commit/a60aa1ec01149a4ef418b9025ae50891264f9123)]:
29+
30+
31+
## 1.0.16
32+
33+
### Patch Changes
34+
35+
- Updated dependencies [[`d7ccd60`](https://github.com/lingodotdev/lingo.dev/commit/d7ccd6000cd980333e7ac4b63da4e2ba624c3de4)]:
36+
37+
38+
## 1.0.15
39+
40+
### Patch Changes
41+
42+
- Updated dependencies [[`7367bee`](https://github.com/lingodotdev/lingo.dev/commit/7367bee3318a14647bf9bd0105270b2492fcec31)]:
43+
44+
45+
## 1.0.14
46+
47+
### Patch Changes
48+
49+
- Updated dependencies [[`1a857bd`](https://github.com/lingodotdev/lingo.dev/commit/1a857bdf76d50afb3024a2437da5fd60e6721bb9)]:
50+
51+
52+
## 1.0.13
53+
54+
### Patch Changes
55+
56+
- [#1665](https://github.com/lingodotdev/lingo.dev/pull/1665) [`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b) Thanks [@vrcprl](https://github.com/vrcprl)! - Upd react version
57+
58+
- Updated dependencies [[`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b)]:
59+
60+
61+
## 1.0.12
62+
63+
### Patch Changes
64+
65+
- Updated dependencies []:
66+
67+
368
## 1.0.11
469

570
### Patch Changes

demo/react-router-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-app",
3-
"version": "1.0.11",
3+
"version": "1.0.20",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -14,8 +14,8 @@
1414
"@react-router/serve": "7.9.6",
1515
"isbot": "5.1.32",
1616
"lingo.dev": "workspace:*",
17-
"react": "19.2.0",
18-
"react-dom": "19.2.0",
17+
"react": "19.2.3",
18+
"react-dom": "19.2.3",
1919
"react-router": "7.9.6"
2020
},
2121
"devDependencies": {

demo/vite-project/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# vite-project
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#1665](https://github.com/lingodotdev/lingo.dev/pull/1665) [`b898777`](https://github.com/lingodotdev/lingo.dev/commit/b89877729555025e0380451fa495573c2a114a6b) Thanks [@vrcprl](https://github.com/vrcprl)! - Upd react version
8+
39
## 0.0.3
410

511
### Patch Changes

0 commit comments

Comments
 (0)