chore(deps): update all non-major dependencies#7949
Merged
Conversation
398e997 to
3016a88
Compare
bluwy
previously approved these changes
Apr 30, 2022
3016a88 to
771832b
Compare
771832b to
3864ba2
Compare
bluwy
approved these changes
May 2, 2022
Member
bluwy
left a comment
There was a problem hiding this comment.
There's a v0 minor bump for react-refresh but it seems that there's only whitespace changes. Not sure what's going on there.
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:
^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.16.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.0Release Notes
ampproject/remapping
v2.2.0Compare Source
New Features
TraceMappresortedDecodedMapcan be returned by the loaderInternal
originalPositionForto remove polymorphismFastStringArrayinto separate packageGenMappinginto separate packageFull Changelog: ampproject/remapping@v2.1.2...v2.2.0
babel/babel (@babel/core)
v7.17.10Compare Source
🐛 Bug Fix
babel-cli,babel-core,babel-generator,babel-helper-transform-fixture-test-runnerSourceMapGeneratorfor simple map concatenation (@jridgewell)💅 Polish
babel-cli,babel-core,babel-generator,babel-helper-fixtures,babel-helper-transform-fixture-test-runnerbabel-plugin-proposal-pipeline-operator,babel-traverseScope#isPure) (@JLHwung)🏠 Internal
babel-core🏃♀️ Performance
babel-cli,babel-core,babel-generator@jridgewell/gen-mappingfor sourcemap generation (@jridgewell)babel/babel (@babel/parser)
v7.17.10Compare 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-runnerSourceMapGeneratorfor simple map concatenation (@jridgewell)💅 Polish
babel-cli,babel-core,babel-generator,babel-helper-fixtures,babel-helper-transform-fixture-test-runnerbabel-plugin-proposal-pipeline-operator,babel-traverseScope#isPure) (@JLHwung)🏠 Internal
babel-core🏃♀️ Performance
babel-cli,babel-core,babel-generator@jridgewell/gen-mappingfor sourcemap generation (@jridgewell)Committers: 12
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.21.0Compare Source
Bug Fixes
Features
no-parameter-properties(#4622) (88ed9ec)typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.21.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
acornjs/acorn
v8.7.1Compare Source
zloirock/core-js
v3.22.3Compare Source
Array.prototype.includesbroken on sparse arrayseslint/eslint
v8.14.0Compare Source
Features
ab6363dfeat: Add rule no-constant-binary-expression (#15296) (Jordan Eldredge)Bug Fixes
35fa1ddfix: allow project paths to have URL-encoded characters (#15795) (Milos Djermanovic)413f1d5fix: updateastUtils.isDirectiveCommentwithglobalsandexported(#15775) (Milos Djermanovic)Build Related
c2407e8build: add node v18 (#15791) (唯然)Chores
735458cchore: add static frontmatter to no-constant-binary-expression docs (#15798) (Milos Djermanovic)db28f2cchore: Add static frontmatter to docs (#15782) (Nicholas C. Zakas)3bca59echore: markdownlint autofix on commit (#15783) (Nicholas C. Zakas)okonet/lint-staged
v12.4.1Compare Source
Bug Fixes
pnpm/pnpm
v6.32.11Compare Source
Patch Changes
pnpm publishshould work correctly in a workspace, when the latest npm CLI is installed #4348.node_modules/.ignoredsubfolder 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.10Compare Source
Patch Changes
Full Changelog: pnpm/pnpm@v6.32.9...v6.32.10
postcss/postcss
v8.4.13Compare Source
append()error after using.parent(by Jordan Pittman).facebook/react
v0.13.0Compare Source
React Core
Breaking Changes
propsafter 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 classrefresolution order has changed slightly such that a ref to a component is available immediately after itscomponentDidMountmethod 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 regardlesssetStatein life-cycle methods are now always batched and therefore asynchronous. Previously the first call on the first mount was synchronous.setStateandforceUpdateon an unmounted component now warns instead of throwing. That avoids a possible race condition with Promises.this._pendingStateandthis._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.refstyle, 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.typeis 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.createFragmentwas added for adding keys to entire sets of children.Deprecations
React.addons.classSetis now deprecated. This functionality can be replaced with several freely available modules. classnames is one such module.React.addons.cloneWithPropscan be migrated to useReact.cloneElementinstead – make sure to mergestyleandclassNamemanually if desired.React Tools
Breaking Changes
classmethods are no longer enumerable by default, which requiresObject.defineProperty; if you support browsers such as IE8, you can pass--target es3to mirror the old behaviorNew Features
--targetoption is available on the jsx command, allowing users to specify and ECMAScript version to target.es5is the default.es3restores the previous default behavior. An additional transform is added here to ensure the use of reserved words as properties is safe (egthis.staticwill becomethis['static']for IE8 compatibility).JSXTransformer
Breaking Changes
transformnow containssourceMapas 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_transformerpackage on npm can be used to find and fix potential issues in your JSX code.terser/terser
v5.13.1Compare Source
varname=varname) (closes #1081)vardestructuring (egvar { a, a } = x) (#1176)v5.13.0Compare Source
source-mapwas updated to 0.8.0-beta.0 (#1164)Microsoft/tslib
v2.4.0Compare Source
This release includes the
__classPrivateFieldInhelper as well as an update to__createBindingto reduce indirection between multiple re-exports.websockets/ws
v8.6.0Compare 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.