chore(deps): update dependency esbuild to v0.17.15#7994
Merged
Conversation
8e87f6e to
dde2d80
Compare
dde2d80 to
6fcc50d
Compare
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
jtoar
pushed a commit
that referenced
this pull request
Apr 5, 2023
jaiakt
pushed a commit
to jaiakt/redwood
that referenced
this pull request
Apr 5, 2023
dac09
added a commit
to dac09/redwood
that referenced
this pull request
Apr 6, 2023
…te-ssr * 'feat/vite-ssr' of github.com:dac09/redwood: chore(build): Avoid prebuilding api side, instead use an esbuild plugin (redwoodjs#7672) chore(deps): update dependency @clerk/clerk-react to v4.14.2 (redwoodjs#8016) chore(deps): update dependency @azure/msal-browser to v2.35.0 (redwoodjs#8009) chore(deps): update dependency @supabase/supabase-js to v2.14.0 (redwoodjs#8010) fix(deps): update typescript-eslint monorepo to v5.57.1 (redwoodjs#8008) fix(deps): update dependency core-js to v3.30.0 (redwoodjs#8007) chore(deps): update dependency @playwright/test to v1.32.2 (redwoodjs#8005) fix(deps): update dependency @fastify/static to v6.10.0 (redwoodjs#7999) chore(deps): update dependency dependency-cruiser to v12.11.1 (redwoodjs#7998) Update docs to reference creating an ED25519 key instead of RSA (redwoodjs#8013) chore(deps): update dependency @types/react to v18.0.33 (redwoodjs#7996) chore(deps): update dependency @replayio/playwright to v0.3.28 (redwoodjs#8006) chore(deps): update dependency esbuild to v0.17.15 (redwoodjs#7994) chore(deps): update mheap/github-action-required-labels action to v4 (redwoodjs#7997) chore(ci): Update node version for telemetry check (redwoodjs#8004)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
0.17.14->0.17.15Release Notes
evanw/esbuild
v0.17.15Compare Source
Allow keywords as type parameter names in mapped types (#3033)
TypeScript allows type keywords to be used as parameter names in mapped types. Previously esbuild incorrectly treated this as an error. Code that does this is now supported:
Add annotations for re-exported modules in node (#2486, #3029)
Node lets you import named imports from a CommonJS module using ESM import syntax. However, the allowed names aren't derived from the properties of the CommonJS module. Instead they are derived from an arbitrary syntax-only analysis of the CommonJS module's JavaScript AST.
To accommodate node doing this, esbuild's ESM-to-CommonJS conversion adds a special non-executable "annotation" for node that describes the exports that node should expose in this scenario. It takes the form
0 && (module.exports = { ... })and comes at the end of the file (0 && exprmeansexpris never evaluated).Previously esbuild didn't do this for modules re-exported using the
export * fromsyntax. Annotations for these re-exports will now be added starting with this release:Note that you need to specify both
--format=cjsand--platform=nodeto get these node-specific annotations.Avoid printing an unnecessary space in between a number and a
.(#3026)JavaScript typically requires a space in between a number token and a
.token to avoid the.being interpreted as a decimal point instead of a member expression. However, this space is not required if the number token itself contains a decimal point, an exponent, or uses a base other than 10. This release of esbuild now avoids printing the unnecessary space in these cases:Fix server-sent events with live reload when writing to the file system root (#3027)
This release fixes a bug where esbuild previously failed to emit server-sent events for live reload when
outdirwas the file system root, such as/. This happened because/is the only path on Unix that cannot have a trailing slash trimmed from it, which was fixed by improved path handling.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate. View repository job log here.