fix(deps): update devdependencies (non-major) #1180
Merged
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:
7.17.10
->7.18.2
7.17.10
->7.18.2
0.14.38
->0.14.39
5.0.4
->5.0.5
Release Notes
babel/babel
v7.18.2
Compare Source
🐛 Bug Fix
babel-plugin-transform-template-literals
babel-helpers
@babel/runtime
(@Jack-Works)babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
regeneratorRuntime
in@babel/runtime/regenerator
(@nicolo-ribaudo)babel-helper-environment-visitor
,babel-helper-replace-supers
,babel-plugin-proposal-class-properties
,babel-plugin-proposal-decorators
,babel-traverse
,babel-types
📝 Documentation
babel-types
🏠 Internal
v7.18.0
Compare Source
🚀 New Feature
babel-preset-env
babel-helper-create-class-features-plugin
,babel-helper-define-map
,babel-plugin-proposal-class-static-block
,babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-object-rest-spread
,babel-plugin-syntax-destructuring-private
,babel-plugin-transform-destructuring
,babel-plugin-transform-proto-to-assign
,babel-plugin-transform-typescript
,babel-standalone
,babel-traverse
,babel-types
babel-generator
,babel-parser
,babel-types
babel-generator
,babel-parser
extends
constraints forinfer
(@sosukesuzuki)babel-generator
,babel-parser
,babel-plugin-transform-typescript
,babel-traverse
,babel-types
babel-helper-module-transforms
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
importInterop
method (@NickHeiner)🐛 Bug Fix
babel-types
babel-parser
<
after object literals with thejsx
plugin (@JLHwung)babel-plugin-transform-react-pure-annotations
React[...]
methods as pure (@JLHwung)💅 Polish
babel-core
,babel-helper-transform-fixture-test-runner
,babel-helpers
,babel-plugin-proposal-async-generator-functions
,babel-plugin-transform-async-to-generator
,babel-plugin-transform-block-scoping
,babel-plugin-transform-classes
,babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
,babel-preset-env
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
,babel-standalone
regeneratorRuntime
as a normal helper (@nicolo-ribaudo)🏠 Internal
babel-core
,babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-transform-modules-systemjs
v7.17.12
Compare Source
🐛 Bug Fix
babel-plugin-transform-react-constant-elements
babel-generator
babel-plugin-transform-destructuring
babel-parser
babel-parser
,babel-plugin-transform-destructuring
,babel-types
🏠 Internal
babel-plugin-proposal-decorators
,babel-types
babel-core
babel-core
,babel-generator
,babel-helper-create-class-features-plugin
,babel-helper-create-regexp-features-plugin
,babel-helper-module-transforms
,babel-helper-plugin-utils
,babel-parser
,babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression
,babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining
,babel-plugin-external-helpers
,babel-plugin-proposal-async-do-expressions
,babel-plugin-proposal-async-generator-functions
,babel-plugin-proposal-class-properties
,babel-plugin-proposal-class-static-block
,babel-plugin-proposal-decorators
,babel-plugin-proposal-export-default-from
,babel-plugin-proposal-export-namespace-from
,babel-plugin-proposal-function-sent
,babel-plugin-proposal-json-strings
,babel-plugin-proposal-logical-assignment-operators
,babel-plugin-proposal-nullish-coalescing-operator
,babel-plugin-proposal-object-rest-spread
,babel-plugin-proposal-optional-chaining
,babel-plugin-proposal-partial-application
,babel-plugin-proposal-pipeline-operator
,babel-plugin-proposal-private-methods
,babel-plugin-proposal-private-property-in-object
,babel-plugin-proposal-record-and-tuple
,babel-plugin-proposal-unicode-property-regex
,babel-plugin-syntax-decorators
,babel-plugin-syntax-destructuring-private
,babel-plugin-syntax-flow
,babel-plugin-syntax-import-assertions
,babel-plugin-syntax-pipeline-operator
,babel-plugin-syntax-record-and-tuple
,babel-plugin-syntax-typescript
,babel-plugin-transform-arrow-functions
,babel-plugin-transform-async-to-generator
,babel-plugin-transform-block-scoping
,babel-plugin-transform-classes
,babel-plugin-transform-computed-properties
,babel-plugin-transform-destructuring
,babel-plugin-transform-duplicate-keys
,babel-plugin-transform-flow-comments
,babel-plugin-transform-flow-strip-types
,babel-plugin-transform-for-of
,babel-plugin-transform-instanceof
,babel-plugin-transform-jscript
,babel-plugin-transform-literals
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-systemjs
,babel-plugin-transform-modules-umd
,babel-plugin-transform-named-capturing-groups-regex
,babel-plugin-transform-new-target
,babel-plugin-transform-parameters
,babel-plugin-transform-property-mutators
,babel-plugin-transform-proto-to-assign
,babel-plugin-transform-react-constant-elements
,babel-plugin-transform-react-jsx
,babel-plugin-transform-reserved-words
,babel-plugin-transform-runtime
,babel-plugin-transform-spread
,babel-plugin-transform-template-literals
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-preset-env
,babel-preset-flow
,babel-preset-react
,babel-preset-typescript
,babel-traverse
,babel-types
evanw/esbuild
v0.14.39
Compare Source
Fix code generation for
export default
and/* @​__PURE__ */
call (#2203)The
/* @​__PURE__ */
comment annotation can be added to function calls to indicate that they are side-effect free. These annotations are passed through into the output by esbuild since many JavaScript tools understand them. However, there was an edge case where printing this comment before a function call caused esbuild to fail to parenthesize a function literal because it thought it was no longer at the start of the expression. This problem has been fixed:Preserve
...
before JSX child expressions (#2245)TypeScript 4.5 changed how JSX child expressions that start with
...
are emitted. Previously the...
was omitted but starting with TypeScript 4.5, the...
is now preserved instead. This release updates esbuild to match TypeScript's new output in this case:Note that this behavior is TypeScript-specific. Babel doesn't support the
...
token at all (it gives the error "Spread children are not supported in React").Slightly adjust esbuild's handling of the
browser
field inpackage.json
(#2239)This release changes esbuild's interpretation of
browser
path remapping to fix a regression that was introduced in esbuild version 0.14.21. Browserify has a bug where it incorrectly matches package paths to relative paths in thebrowser
field, and esbuild replicates this bug for compatibility with Browserify. I have a set of tests that I use to verify that esbuild's replication of this Browserify is accurate here: https://github.com/evanw/package-json-browser-tests. However, I was missing a test case and esbuild's behavior diverges from Browserify in this case. This release now handles this edge case as well:entry.js
:node_modules/pkg/package.json
:node_modules/pkg/sub/foo.js
:node_modules/sub/index.js
:The import path
sub
inrequire('sub')
was previously matching the remapping"./sub/sub.js": "./sub/foo.js"
but with this release it should now no longer match that remapping. Nowrequire('sub')
will only match the remapping"./sub/sub": "./sub/foo.js"
(without the trailing.js
). Browserify apparently only matches without the.js
suffix here.luin/ioredis
v5.0.5
Compare Source
Bug Fixes
Configuration
📅 Schedule: "before 4am on sunday" (UTC).
🚦 Automerge: Disabled due to failing status checks.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.