Skip to content

Commit 2975260

Browse files
authored
Merge pull request #957 from Pauan/fix/updating-versions
Updating versions
2 parents 4621d93 + 183d9e0 commit 2975260

Some content is hidden

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

59 files changed

+15138
-10503
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33

44
orbs:
5-
node: circleci/node@5.2.0
5+
node: circleci/node@7.0.0
66

77

88
executors:
@@ -40,7 +40,9 @@ commands:
4040
- cargo_fetch:
4141
working_directory: wasm
4242
- node/install-packages:
43-
pkg-manager: yarn
43+
check-cache: always
44+
pkg-manager: yarn-berry
45+
with-cache: false
4446

4547

4648
setup-sdk:

.github/workflows/staging-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
toolchain: nightly-2024-08-12
21+
toolchain: nightly-2025-01-16
2222
override: true
2323
components: rustfmt, rust-src
2424

.github/workflows/test-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions-rs/toolchain@v1
1616
with:
1717
profile: minimal
18-
toolchain: nightly-2024-08-12
18+
toolchain: nightly-2025-01-16
1919
override: true
2020
components: rustfmt, rust-src
2121

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
toolchain: nightly-2024-08-12
21+
toolchain: nightly-2025-01-16
2222
override: true
2323
components: rustfmt, rust-src
2424

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ rust/src/program/.DS_Store
2020
.netlify
2121

2222
package-lock.json
23+
.yarn

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: "node-modules"

create-leo-app/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
"collaborators": [
77
"The Provable Team"
88
],
9-
"bin": {
10-
"create-leo-app": "index.js"
11-
},
9+
"bin": "index.js",
1210
"files": [
1311
"index.js",
1412
"template-extension",
@@ -31,11 +29,11 @@
3129
"node": "^14.18.0 || >=16.0.0"
3230
},
3331
"devDependencies": {
34-
"@types/minimist": "^1.2.2",
35-
"@types/prompts": "^2.4.4",
32+
"@types/minimist": "^1.2.5",
33+
"@types/prompts": "^2.4.9",
3634
"kolorist": "^1.8.0",
3735
"minimist": "^1.2.8",
3836
"prompts": "^2.4.2",
39-
"unbuild": "^1.2.1"
37+
"unbuild": "^3.3.1"
4038
}
4139
}

create-leo-app/template-extension/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"build": "rimraf static/js && rollup --config"
88
},
99
"devDependencies": {
10-
"@provablehq/sdk": "^0.7.0",
11-
"@web/rollup-plugin-import-meta-assets": "^2.1.0",
12-
"rimraf": "^5.0.1",
13-
"rollup": "^4.0.0"
10+
"@provablehq/sdk": "^0.8.0",
11+
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
12+
"rimraf": "^6.0.1",
13+
"rollup": "^4.32.0"
1414
}
1515
}

create-leo-app/template-nextjs-ts/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@provablehq/sdk": "^0.7.0",
13-
"next": "13.5.4",
14-
"react": "^18",
15-
"react-dom": "^18",
16-
"terser-webpack-plugin": "^5.3.9"
12+
"@provablehq/sdk": "^0.8.0",
13+
"next": "15.1.6",
14+
"react": "^19.0.0",
15+
"react-dom": "^19.0.0",
16+
"terser-webpack-plugin": "^5.3.11"
1717
},
1818
"devDependencies": {
19-
"@types/node": "^20",
20-
"@types/react": "^18",
21-
"@types/react-dom": "^18",
22-
"typescript": "^5"
19+
"@types/node": "^22.12.0",
20+
"@types/react": "^19.0.8",
21+
"@types/react-dom": "^19.0.3",
22+
"typescript": "^5.7.3"
2323
}
2424
}

create-leo-app/template-node-ts/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"dev": "npm run build && node dist/index.js"
99
},
1010
"dependencies": {
11-
"@provablehq/sdk": "^0.7.0"
11+
"@provablehq/sdk": "^0.8.0"
1212
},
1313
"devDependencies": {
14-
"rimraf": "^5.0.1",
15-
"rollup": "^3.27.2",
14+
"rimraf": "^6.0.1",
15+
"rollup": "^4.32.0",
1616
"rollup-plugin-typescript2": "^0.36.0",
17-
"typescript": "^5.2.2"
17+
"typescript": "^5.7.3"
1818
}
1919
}

0 commit comments

Comments
 (0)