Skip to content

Commit fc5050f

Browse files
chore: update to solid 2.0.0-rc.0 — solid consumption ranges move to ^2.0.0-rc.0
The solid-js/@solidjs/web peerDependencies and the babel-preset-solid dependency go from `>=2.0.0-beta.32 <2.0.0-experimental.0` to `^2.0.0-rc.0`: the old experimental-capped upper bound excluded the rc line entirely (`experimental` sorts before `rc`), while the caret still floors above the hazardous 2.0.0-experimental.* publishes and auto-graduates to stable 2.x. Root devDep solid-js and the examples catalog move the same way; the minimumReleaseAgeExclude lists gain the rc.0 versions per the established pattern. Verified locally: build, package-check 100/100, and all five example suites green (ssr, css-matrix, turnkey 332/332, start-client 41/41, start-env 45/45). Patch changeset included — this is a published-manifest change riding the release CI to 3.0.0-next.28. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent ce7f9d8 commit fc5050f

4 files changed

Lines changed: 68 additions & 63 deletions

File tree

.changeset/bump-solid-rc-0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@solidjs/vite-plugin': patch
3+
---
4+
5+
update to solid 2.0.0-rc.0 — the solid-js/@solidjs/web peer ranges and the babel-preset-solid dependency move from `>=2.0.0-beta.32 <2.0.0-experimental.0` to `^2.0.0-rc.0`, admitting the rc line (which the old experimental-capped upper bound excluded, since `experimental` sorts before `rc`), still flooring above the hazardous 2.0.0-experimental.* publishes, and auto-graduating to stable 2.x

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@babel/core": "^7.23.3",
6161
"@dom-expressions/compiler": "0.50.0-next.40",
6262
"@types/babel__core": "^7.20.4",
63-
"babel-preset-solid": ">=2.0.0-beta.32 <2.0.0-experimental.0",
63+
"babel-preset-solid": "^2.0.0-rc.0",
6464
"merge-anything": "^5.1.7",
6565
"vitefu": "^1.0.4"
6666
},
@@ -80,14 +80,14 @@
8080
"prettier": "^3.1.0",
8181
"rollup": "^4.5.0",
8282
"rollup-plugin-cleaner": "^1.0.0",
83-
"solid-js": ">=2.0.0-beta.32 <2.0.0-experimental.0",
83+
"solid-js": "^2.0.0-rc.0",
8484
"typescript": "^5.2.2",
8585
"vite": "^7.0.0"
8686
},
8787
"peerDependencies": {
88-
"@solidjs/web": ">=2.0.0-beta.32 <2.0.0-experimental.0",
88+
"@solidjs/web": "^2.0.0-rc.0",
8989
"@testing-library/jest-dom": "^5.16.6 || ^5.17.0 || ^6.*",
90-
"solid-js": ">=2.0.0-beta.32 <2.0.0-experimental.0",
90+
"solid-js": "^2.0.0-rc.0",
9191
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
9292
},
9393
"peerDependenciesMeta": {

pnpm-lock.yaml

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ allowBuilds:
88
msw: true
99

1010
catalog:
11-
solid-js: "2.0.0-beta.32"
12-
"@solidjs/web": "2.0.0-beta.32"
11+
solid-js: "^2.0.0-rc.0"
12+
"@solidjs/web": "^2.0.0-rc.0"
1313

1414
ignoredBuiltDependencies:
1515
- cypress
1616

1717
minimumReleaseAgeExclude:
18-
- '@solidjs/signals@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32'
19-
- '@solidjs/web@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32'
20-
- babel-preset-solid@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32
21-
- solid-js@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32
18+
- '@solidjs/signals@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32 || 2.0.0-rc.0'
19+
- '@solidjs/web@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32 || 2.0.0-rc.0'
20+
- babel-preset-solid@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32 || 2.0.0-rc.0
21+
- solid-js@2.0.0-beta.30 || 2.0.0-beta.31 || 2.0.0-beta.32 || 2.0.0-rc.0
2222
- '@dom-expressions/babel-plugin-jsx@0.50.0-next.35 || 0.50.0-next.37 || 0.50.0-next.40'
2323
- '@dom-expressions/compiler-darwin-arm64@0.50.0-next.35 || 0.50.0-next.37 || 0.50.0-next.40'
2424
- '@dom-expressions/compiler-darwin-x64@0.50.0-next.35 || 0.50.0-next.37 || 0.50.0-next.40'

0 commit comments

Comments
 (0)