chore(deps): update all non-major dependencies #7949
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:
^2.1.2
->^2.2.0
^7.17.9
->^7.17.10
^7.17.9
->^7.17.10
^7.17.9
->^7.17.11
^7.17.0
->^7.17.10
^7.22.2
->^7.23.0
^1.20.1
->^1.20.2
^5.20.0
->^5.21.0
^5.20.0
->^5.21.0
^8.7.0
->^8.7.1
^3.22.2
->^3.22.3
^8.13.0
->^8.14.0
^12.4.0
->^12.4.1
6.32.9
->6.32.11
^8.4.12
->^8.4.13
^0.12.0
->^0.13.0
^5.12.1
->^5.13.1
^2.3.1
->^2.4.0
^8.5.0
->^8.6.0
Release Notes
ampproject/remapping
v2.2.0
Compare Source
New Features
TraceMap
presortedDecodedMap
can be returned by the loaderInternal
originalPositionFor
to remove polymorphismFastStringArray
into separate packageGenMapping
into separate packageFull Changelog: ampproject/remapping@v2.1.2...v2.2.0
babel/babel (@babel/core)
v7.17.10
Compare Source
🐛 Bug Fix
babel-cli
,babel-core
,babel-generator
,babel-helper-transform-fixture-test-runner
SourceMapGenerator
for simple map concatenation (@jridgewell)💅 Polish
babel-cli
,babel-core
,babel-generator
,babel-helper-fixtures
,babel-helper-transform-fixture-test-runner
babel-plugin-proposal-pipeline-operator
,babel-traverse
Scope#isPure
) (@JLHwung)🏠 Internal
babel-core
🏃♀️ Performance
babel-cli
,babel-core
,babel-generator
@jridgewell/gen-mapping
for sourcemap generation (@jridgewell)babel/babel (@babel/parser)
v7.17.10
Compare Source
v7.17.10 (2022-04-29)
Thanks @Abreto, @Andoryuuta, @apeltop, @JohnDaly, and @wjw99830 for your first PRs!
🐛 Bug Fix
babel-cli
,babel-core
,babel-generator
,babel-helper-transform-fixture-test-runner
SourceMapGenerator
for simple map concatenation (@jridgewell)💅 Polish
babel-cli
,babel-core
,babel-generator
,babel-helper-fixtures
,babel-helper-transform-fixture-test-runner
babel-plugin-proposal-pipeline-operator
,babel-traverse
Scope#isPure
) (@JLHwung)🏠 Internal
babel-core
🏃♀️ Performance
babel-cli
,babel-core
,babel-generator
@jridgewell/gen-mapping
for sourcemap generation (@jridgewell)Committers: 12
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.21.0
Compare Source
Bug Fixes
Features
no-parameter-properties
(#4622) (88ed9ec)typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.21.0
Compare Source
Note: Version bump only for package @typescript-eslint/parser
acornjs/acorn
v8.7.1
Compare Source
zloirock/core-js
v3.22.3
Compare Source
Array.prototype.includes
broken on sparse arrayseslint/eslint
v8.14.0
Compare Source
Features
ab6363d
feat: Add rule no-constant-binary-expression (#15296) (Jordan Eldredge)Bug Fixes
35fa1dd
fix: allow project paths to have URL-encoded characters (#15795) (Milos Djermanovic)413f1d5
fix: updateastUtils.isDirectiveComment
withglobals
andexported
(#15775) (Milos Djermanovic)Build Related
c2407e8
build: add node v18 (#15791) (唯然)Chores
735458c
chore: add static frontmatter to no-constant-binary-expression docs (#15798) (Milos Djermanovic)db28f2c
chore: Add static frontmatter to docs (#15782) (Nicholas C. Zakas)3bca59e
chore: markdownlint autofix on commit (#15783) (Nicholas C. Zakas)okonet/lint-staged
v12.4.1
Compare Source
Bug Fixes
pnpm/pnpm
v6.32.11
Compare Source
Patch Changes
pnpm publish
should work correctly in a workspace, when the latest npm CLI is installed #4348.node_modules/.ignored
subfolder and a package with that name is already present in `node_modules/.ignored' #4626.Full Changelog: pnpm/pnpm@v6.32.10...v6.32.11
v6.32.10
Compare Source
Patch Changes
Full Changelog: pnpm/pnpm@v6.32.9...v6.32.10
postcss/postcss
v8.4.13
Compare Source
append()
error after using.parent
(by Jordan Pittman).facebook/react
v0.13.0
Compare Source
React Core
Breaking Changes
props
after an element is created is deprecated and will cause warnings in development mode; future versions of React will incorporate performance optimizations assuming that props aren't mutatedstatics
) are no longer autobound to the component classref
resolution order has changed slightly such that a ref to a component is available immediately after itscomponentDidMount
method is called; this change should be observable only if your component calls a parent component's callback within yourcomponentDidMount
, which is an anti-pattern and should be avoided regardlesssetState
in life-cycle methods are now always batched and therefore asynchronous. Previously the first call on the first mount was synchronous.setState
andforceUpdate
on an unmounted component now warns instead of throwing. That avoids a possible race condition with Promises.this._pendingState
andthis._rootNodeID
.New Features
React.findDOMNode(component)
, which should be used in place ofcomponent.getDOMNode()
. The base class for ES6-based components will not havegetDOMNode
. This change will enable some more patterns moving forward.React.cloneElement(el, props)
for making copies of React elements – see the v0.13 RC2 notes for more details.ref
style, allowing a callback to be used in place of a name:<Photo ref={(c) => this._photo = c} />
allows you to reference the component withthis._photo
(as opposed toref="photo"
which givesthis.refs.photo
).this.setState()
can now take a function as the first argument for transactional state updates, such asthis.setState((state, props) => ({count: state.count + 1}));
– this means that you no longer need to usethis._pendingState
, which is now gone.Deprecations
ComponentClass.type
is deprecated. Just useComponentClass
(usually aselement.type === ComponentClass
).createClass
-based components are removed or deprecated from ES6 classes (getDOMNode
,replaceState
,isMounted
,setProps
,replaceProps
).React with Add-Ons
New Features
React.addons.createFragment
was added for adding keys to entire sets of children.Deprecations
React.addons.classSet
is now deprecated. This functionality can be replaced with several freely available modules. classnames is one such module.React.addons.cloneWithProps
can be migrated to useReact.cloneElement
instead – make sure to mergestyle
andclassName
manually if desired.React Tools
Breaking Changes
class
methods are no longer enumerable by default, which requiresObject.defineProperty
; if you support browsers such as IE8, you can pass--target es3
to mirror the old behaviorNew Features
--target
option is available on the jsx command, allowing users to specify and ECMAScript version to target.es5
is the default.es3
restores the previous default behavior. An additional transform is added here to ensure the use of reserved words as properties is safe (egthis.static
will becomethis['static']
for IE8 compatibility).JSXTransformer
Breaking Changes
transform
now containssourceMap
as a JS object already, not an instance ofSourceMapGenerator
.JSX
Breaking Changes
>
or}
when inside an element. Previously it would be treated as a string but now it will be treated as a parse error. Thejsx_orphaned_brackets_transformer
package on npm can be used to find and fix potential issues in your JSX code.terser/terser
v5.13.1
Compare Source
varname=varname
) (closes #1081)var
destructuring (egvar { a, a } = x
) (#1176)v5.13.0
Compare Source
source-map
was updated to 0.8.0-beta.0 (#1164)Microsoft/tslib
v2.4.0
Compare Source
This release includes the
__classPrivateFieldIn
helper as well as an update to__createBinding
to reduce indirection between multiple re-exports.websockets/ws
v8.6.0
Compare Source
Features
Configuration
📅 Schedule: "before 3am on Monday" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 WhiteSource Renovate. View repository job log here.