-
Notifications
You must be signed in to change notification settings - Fork 428
chore: release LWC v9 #5635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
wjhsf
wants to merge
30
commits into
master
Choose a base branch
from
lwc-v9
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
chore: release LWC v9 #5635
Changes from 6 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
4789ee5
chore: bump meriyah to v7 (#5626)
jmsjtu 63aa200
Merge branch 'master' into lwc-v9
wjhsf 6bf6312
Merge branch 'master' into lwc-v9
wjhsf 70e51c4
docs(engine-server): add deprecation notice to README (#5641)
wjhsf 8544edb
feat(dist): publish packages as ESM rather than CJS @W-20496487 (#5639)
wjhsf 4bc3c19
chore(deps): bump typescript to v6 (#5637)
wjhsf 5f09abd
chore: enforce node v20 via `engines.node` @W-20496487 (#5636)
wjhsf 957891d
chore(deps): bump deps
wjhsf 8c1fa71
Merge branch 'master' into lwc-v9
wjhsf 97f3688
chore: revert package.json `exports`
wjhsf c424706
test: update snapshots
wjhsf 361d671
oops
wjhsf 580232f
test: update snapshots
wjhsf d837945
test(perf): update perf-benchmarks to esm
wjhsf 8a43896
docs: switch to ESM
wjhsf 2a23a6f
chore: fix import
wjhsf 0285b4d
chore(deps): revert bumps
wjhsf 63e2331
oops
wjhsf f64072b
test: update TS version
wjhsf 4d68a81
chore: prefer `node:` protocol (#5649)
wjhsf 1719e3b
chore: replace duped issue number with open issue
wjhsf c31c614
chore: remove completed TODOs
wjhsf 86d663b
feat(ts): use const to infer wire generics
wjhsf 1af8586
test(types): fix tests broken by const inference
wjhsf b234b1d
Merge branch 'master' into lwc-v9
wjhsf d4461fe
feat(compiler): rename experimentalDynamicComponent to dynamicImports…
wjhsf 9260671
feat: deprecate engine-server (#5654)
wjhsf ec61e68
Merge branch 'master' into lwc-v9
wjhsf 3f56972
test(wtr): remove broken tests
wjhsf 4026493
chore(deps): pin so ts version stops breaking test
wjhsf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,26 +1,7 @@ | ||
| # @lwc/engine-server | ||
|
|
||
| WARNING: This is an experimental package. It is subject to change, may be removed at any time, | ||
| and should be used at your own risk! | ||
| ⚠️ This package is deprecated and has been replaced by [`@lwc/ssr-compiler`](https://www.npmjs.com/package/@lwc/ssr-compiler) and [`@lwc/ssr-runtime`](https://www.npmjs.com/package/@lwc/ssr-compiler). | ||
|
|
||
| This package can be used to render LWC components as strings in a server environment. | ||
| ## Links | ||
|
|
||
| ## Supported APIs | ||
|
|
||
| This package supports the following APIs. | ||
|
|
||
| ### renderComponent() | ||
|
|
||
| This function renders a string-representation of a serialized component tree, given a tag name | ||
| and an LWC constructor. The output format itself is aligned with the [current leading | ||
| proposal][explainer], but is subject to change. | ||
|
|
||
| ```js | ||
| import { renderComponent } from '@lwc/engine-server'; | ||
| import LightningHello from 'lightning/hello'; | ||
|
|
||
| const componentProps = {}; | ||
| const serialized = renderComponent('lightning-hello', LightningHello, componentProps); | ||
| ``` | ||
|
|
||
| [explainer]: https://github.com/mfreed7/declarative-shadow-dom/blob/master/README.md | ||
| - [Server-Side Rendering guide](https://lwc.dev/guide/ssr) |
This file contains hidden or 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 hidden or 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
2 changes: 1 addition & 1 deletion
2
.../engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error-ssr.txt
This file contains hidden or 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 +1 @@ | ||
| [7:13]: Unexpected token: '{' | ||
| [7:12-7:13]: Unexpected token: '{' |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.