-
-
Notifications
You must be signed in to change notification settings - Fork 940
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to seroval streaming serializer, change ssr markers * improved serialization/guards, fix #1413, fix #1796 hydration with lazy * v1.8.0-beta.0 * fix: missing `has` property in `SharedConfig` (#1896) * fix: missing `has` property in `SharedConfig` * Update hydration.ts * Create strong-years-smile.md --------- Co-authored-by: Ryan Carniato <[email protected]> * remove attribute quotes in template, batch serialization * v1.8.0-beta.1 * Add 1.8 changelog * Bump postcss from 8.4.27 to 8.4.31 Bumps [postcss](https://github.com/postcss/postcss) from 8.4.27 to 8.4.31. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.27...8.4.31) --- updated-dependencies: - dependency-name: postcss dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * hydration perf improvement, fix #1849 * fix #1905, fix #1908 JSX type ommissions * v1.8.0-beta.2 * prepping for release * fix up changelog --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alexis H. Munsayac <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
063db14
commit 2c087cb
Showing
24 changed files
with
264 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"babel-preset-solid": patch | ||
"solid-js": patch | ||
--- | ||
|
||
remove attribute quotes in template, batch serialization |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"babel-preset-solid": minor | ||
"solid-js": minor | ||
--- | ||
|
||
update to seroval streaming serializer, change ssr markers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"babel-preset-solid": patch | ||
"solid-js": patch | ||
--- | ||
|
||
improved serialization/guards, fix #1413, fix #1796 hydration with lazy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"babel-preset-solid": minor | ||
"solid-js": minor | ||
--- | ||
|
||
hydration perf improvement, fix #1849 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "beta", | ||
"initialVersions": { | ||
"babel-preset-solid": "1.7.12", | ||
"solid-js": "1.7.12", | ||
"solid-element": "1.7.1", | ||
"solid-ssr": "1.7.2", | ||
"test-integration": "1.7.12" | ||
}, | ||
"changesets": [ | ||
"dull-rings-approve", | ||
"healthy-spoons-watch", | ||
"hungry-gifts-film", | ||
"lazy-humans-mate", | ||
"strong-years-smile", | ||
"two-mayflies-flow" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"solid-js": patch | ||
--- | ||
|
||
fix: missing `has` property in `SharedConfig` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"solid-js": patch | ||
--- | ||
|
||
fix #1905, fix #1908 JSX type ommissions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "babel-preset-solid", | ||
"version": "1.7.12", | ||
"version": "1.8.0-beta.2", | ||
"description": "Babel preset to transform JSX for Solid.js", | ||
"author": "Ryan Carniato <[email protected]>", | ||
"homepage": "https://github.com/solidjs/solid/blob/main/packages/babel-preset-solid#readme", | ||
|
@@ -14,7 +14,7 @@ | |
"test": "node test.js" | ||
}, | ||
"dependencies": { | ||
"babel-plugin-jsx-dom-expressions": "^0.36.18" | ||
"babel-plugin-jsx-dom-expressions": "^0.37.0" | ||
}, | ||
"peerDependencies": { | ||
"@babel/core": "^7.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# solid-element | ||
|
||
## 1.8.0-beta.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [e3a97d28] | ||
- Updated dependencies [d797a143] | ||
- [email protected] | ||
|
||
## 1.8.0-beta.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [d8e0e8e8] | ||
- Updated dependencies [bf09b838] | ||
- [email protected] | ||
|
||
## 1.7.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.