-
Notifications
You must be signed in to change notification settings - Fork 1k
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
chore(deps): update dependency esbuild to v0.16.3 #7068
Merged
Merged
Conversation
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
renovate
bot
force-pushed
the
renovate/esbuild-0.x
branch
from
December 9, 2022 09:47
d482c3c
to
f637bfa
Compare
renovate
bot
force-pushed
the
renovate/esbuild-0.x
branch
from
December 9, 2022 15:16
f637bfa
to
964ef55
Compare
jtoar
pushed a commit
that referenced
this pull request
Dec 10, 2022
dac09
added a commit
that referenced
this pull request
Dec 12, 2022
…xperimental-vite-optin * 'main' of github.com:redwoodjs/redwood: (35 commits) chore(deps): update dependency octokit to v2.0.10 (#7100) chore: update all contributors chore(deps): update dependency @types/react to v17.0.52 (#7095) Allow other repo names than just "redwood" (#7101) chore(deps): update dependency @types/prompts to v2.4.2 (#7094) chore(deps): update dependency @types/react-dom to v17.0.18 (#7097) chore(deps): update dependency @types/jscodeshift to v0.11.6 (#7093) chore(deps): update dependency @simplewebauthn/server to v6.2.2 (#7086) chore(deps): update carloscastrojumo/github-cherry-pick-action action to v1.0.6 (#7085) chore(deps): update dependency @types/uuid to v9 (#7089) fix(deps): update dependency mini-css-extract-plugin to v2.7.2 (#7088) fix(deps): update dependency @types/node to v16.18.7 (#7087) fix(deps): update dependency @graphql-codegen/typescript-react-apollo to v3.3.7 (#7075) fix(deps): update dependency @graphql-tools/merge to v8.3.14 (#7076) fix(deps): update dependency @types/aws-lambda to v8.10.109 (#7077) fix(deps): update dependency @types/jest to v29.2.4 (#7078) fix(deps): update dependency systeminformation to v5.16.5 (#7079) chore(deps): update dependency @types/yargs to v17.0.17 (#7067) chore(deps): update dependency @types/lodash to v4.14.191 (#7066) chore(deps): update dependency esbuild to v0.16.3 (#7068) ...
dac09
added a commit
that referenced
this pull request
Dec 12, 2022
…ecoupled-auth-setup-improvements * 'main' of github.com:redwoodjs/redwood: (77 commits) chore(deps): update dependency octokit to v2.0.10 (#7100) chore: update all contributors chore(deps): update dependency @types/react to v17.0.52 (#7095) Allow other repo names than just "redwood" (#7101) chore(deps): update dependency @types/prompts to v2.4.2 (#7094) chore(deps): update dependency @types/react-dom to v17.0.18 (#7097) chore(deps): update dependency @types/jscodeshift to v0.11.6 (#7093) chore(deps): update dependency @simplewebauthn/server to v6.2.2 (#7086) chore(deps): update carloscastrojumo/github-cherry-pick-action action to v1.0.6 (#7085) chore(deps): update dependency @types/uuid to v9 (#7089) fix(deps): update dependency mini-css-extract-plugin to v2.7.2 (#7088) fix(deps): update dependency @types/node to v16.18.7 (#7087) fix(deps): update dependency @graphql-codegen/typescript-react-apollo to v3.3.7 (#7075) fix(deps): update dependency @graphql-tools/merge to v8.3.14 (#7076) fix(deps): update dependency @types/aws-lambda to v8.10.109 (#7077) fix(deps): update dependency @types/jest to v29.2.4 (#7078) fix(deps): update dependency systeminformation to v5.16.5 (#7079) chore(deps): update dependency @types/yargs to v17.0.17 (#7067) chore(deps): update dependency @types/lodash to v4.14.191 (#7066) chore(deps): update dependency esbuild to v0.16.3 (#7068) ...
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.16.2
->0.16.3
Release Notes
evanw/esbuild
v0.16.3
Compare Source
Fix a hang with the JS API in certain cases (#2727)
A change that was made in version 0.15.13 accidentally introduced a case when using esbuild's JS API could cause the node process to fail to exit. The change broke esbuild's watchdog timer, which detects if the parent process no longer exists and then automatically exits esbuild. This hang happened when you ran node as a child process with the
stderr
stream set topipe
instead ofinherit
, in the child process you call esbuild's JS API and passincremental: true
but do not calldispose()
on the returnedrebuild
object, and then callprocess.exit()
. In that case the parent node process was still waiting for the esbuild process that was created by the child node process to exit. The change made in version 0.15.13 was trying to avoid using Go'ssync.WaitGroup
API incorrectly because the API is not thread-safe. Instead of doing this, I have now reverted that change and implemented a thread-safe version of thesync.WaitGroup
API for esbuild to use instead.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.