fix(deps): update all non-major dependencies #900
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.14.5
->^7.15.8
^7.15.5
->^7.15.8
^7.15.0
->^7.15.8
^7.15.6
->^7.15.8
^1.6.8
->^1.6.9
^1.6.1
->^1.6.2
^6.3.9
->^6.3.10
^6.3.9
->^6.3.10
^0.0.158
->^0.0.159
^14.17.20
->^14.17.21
^7.1.18
->^7.1.19
^5.1.16
->^5.1.17
^5.3.0
->^5.3.1
^5.1.14
->^5.1.15
^4.3.0
->^4.3.1
^6.3.0
->^6.4.0
^15.1.0
->^15.1.2
^6.3.3
->^6.3.4
^4.0.0-rc.15
->^4.0.0
^27.2.4
->^27.2.5
^3.1.28
->^3.1.29
^8.2.1
->^8.3.0
^5.0.0
->^5.1.0
^7.3.1
->^7.4.0
^5.56.1
->^5.58.1
^4.8.0
->^4.9.0
Release Notes
babel/babel
v7.15.8
Compare Source
👓 Spec Compliance
babel-helper-module-transforms
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
babel-parser
🐛 Bug Fix
babel-generator
babel-generator
,babel-parser
,babel-plugin-proposal-pipeline-operator
babel-plugin-transform-typescript
💅 Polish
babel-core
babel-node
🏠 Internal
🏃♀️ Performance
babel-code-frame
chakra-ui/chakra-ui
v1.6.9
Compare Source
Patch Changes
[
21531b59d
,b769e88f9
,eafb21e18
,b769e88f9
,6f99723f8
]:reduxjs/redux-toolkit
v1.6.2
Compare Source
This release fixes several small issues with RTK Query, as well as a regression in the
createAsyncThunk
types and an issue with sourcemap URLs.Changelog
RTK Query Fixes
The
isLoading
flag should only ever betrue
on the first run of a hook, but would sometimes briefly flip totrue
on later calls. That should now stay the correct value.fetchBaseQuery
should now work properly when used in conjunction withnode-fetch
.The
BaseQueryApi
object now correctly includes theextra
argument that was provided when configuring the thunk middleware, if any.Other Fixes
Sourcemap URLs should now be correct, especially for the CommonJS build artifacts.
createAsyncThunk
's types have been updated to correctly infer return values when working with enums.Lots of assorted docs tweaks and updates!
What's Changed
createAsyncThunk
union return values fall back to allowing only single member by @phryneas in https://github.com/reduxjs/redux-toolkit/pull/1449fetchBaseQuery
for usage withnode-fetch
by @phryneas in https://github.com/reduxjs/redux-toolkit/pull/1473true
" #1519 by @phryneas in https://github.com/reduxjs/redux-toolkit/pull/1520Full Changelog: reduxjs/redux-toolkit@v1.6.1...v1.6.2
storybookjs/storybook
v6.3.10
Compare Source
Bug Fixes
webpack-contrib/css-loader
v6.4.0
Compare Source
Features
Bug Fixes
electron/electron
v15.1.2
Compare Source
Release Notes for v15.1.2
Fixes
WebContents::MessageTo
when a render frame has been destroyed. #31334Other Changes
1251688
. #31297v15.1.1
Compare Source
Release Notes for v15.1.1
Fixes
TypeStrong/fork-ts-checker-webpack-plugin
v6.3.4
Compare Source
Bug Fixes
immutable-js/immutable-js
v4.0.0
Compare Source
This release brings new functionality and many fixes.
Key changes
merge
andmergeDeep
has changedIterable
is renamed to CollectionDiff of changed API (click to expand)
mergeDeep()
Replace incompatible collections when merging nested data (#1840)
Concat Lists when merging deeply (#1344)
Seq
Remove IteratorSequence. Do not attempt to detect iterators in
Seq()
. (#1589)Remove
Seq.of()
(#1311, #1310)isImmutable()
isImmutable()
now returns true for collections currently within awithMutations()
call. (#1374)toArray()
KeyedCollection.toArray() returns array of tuples. (#1340)
concat()
list.concat()
now has a slightly more efficient implementation andmap.concat()
is an alias formap.merge()
. (#1373)Collection, formerly
Iterable
Iterable
class has been renamed toCollection
, andisIterable()
has been renamed toisCollection()
.Aliases with the existing names exist to make transitioning code easier.
Record
isCollection(myRecord)
returnsfalse
instead oftrue
.map
,filter
,forEach
) no longer exist on Records.delete()
andclear()
no longer exist on Records.Other breaking changes
Potentially Breaking: Improve hash speed and avoid collision for common values (#1629)
Node buffers no longer considered value-equal (#1437)
Plain Objects and Arrays are no longer considered opaque values (#1369)
The "predicate" functions,
isCollection
,isKeyed
,isIndexed
,isAssociative
have been moved fromIterable.
to the top level exports.The
toJSON()
method performs a shallow conversion (previously it was an alias fortoJS()
, which remains a deep conversion).Some minor implementation details have changed, which may require updates to libraries which deeply integrate with Immutable.js's private APIs.
The Cursor API is officially deprecated. Use immutable-cursor instead.
Potentially Breaking: [TypeScript] Remove
Iterable<T>
as tuple from Map constructor types (#1626)New
taking advantage of the latest features from both tools.
Add "sideEffects: false" to package.json (#1661)
Use ES standard for iterator method reuse (#1867)
Generalize
fromJS()
andSeq()
to support Sets (#1865)Top level predicate functions (#1600)
Improve performance of toJS (#1581)
Added optional
notSetValue
infirst()
andlast()
(#1556)Make
isArrayLike
check more precise to avoid false positives (#1520)map()
for List, Map, and Set returns itself for no-ops (#1455) (5726bd1
)Hash functions as objects, allowing functions as values in collections (#1485)
Functional API for
get()
,set()
, and more which support both Immutable.js collections and plain Objects and Arrays (#1369)Relicensed as MIT (#1320)
Support for Transducers! (ee9c68f1)
Add new method,
zipAll()
(#1195)Bundle and distribute an "es module" so Webpack and Rollup can use tree-shaking for smaller builds (#1204)
Warn instead of throw when
getIn()
has a bad path (668f2236)A new predicate function
isValueObject()
helps to detect objects which implementequals()
andhashCode()
,and type definitions now define the interface
ValueObject
which you can implement in your own code to create objects whichbehave as values and can be keys in Maps or entries in Sets.
Using
fromJS()
with a "reviver" function now provides access to the key path to each translated value. (#1118)Fixed
Fix issue with IE11 and missing Symbol.iterator (#1850)
Fix ordered set with map (#1663)
Do not modify iter during List.map and Map.map (#1649)
Fix ordered map delete all (#1777)
Hash symbols as objects (#1753)
Fix returning a Record in merge() when Record is empty (#1785)
Fix for RC~12: Records from different factories aren't equal (#1734)
"too much recursion" error when creating a Record type from an instance of another Record (#1690)
Fix glob for npm format script on Windows (#18)
Remove deprecated cursor API (#13)
Add missing es exports (#1740)
Support nulls in genTypeDefData.js (#185)
Support isPlainObj in IE11 and other esoteric parameters f3a6d5ce
Set.map
produces valid underlying map (#1606)Support isPlainObj with
constructor
key (#1627)groupBy
no longer returns a mutable Map instance (#1602)Fix issue where refs can recursively collide, corrupting
.size
(#1598)Throw error in
mergeWith()
method if missing the requiredmerger
function (#1543)Update
isPlainObj()
to workaround Safari bug and allow cross-realm values (#1557)Fix missing "& T" to some methods in RecordInstance (#1464)
Make notSetValue optional for typed Records (#1461) (
a1029bb
)Export type of RecordInstance (#1434)
Fix Record
size
check in merge() (#1521)Fix Map#concat being not defined (#1402)
getIn()
no longer throws when encountering a missing path (#1361)Do not throw from hasIn (#1319)
Long hash codes no longer cause an infinite loop (#1175)
slice()
which should return an empty set could return a full set or vice versa (#1245, #1287)Ensure empty slices do not throw when iterated (#1220)
Error during equals check on Record with undefined or null (#1208)
Fix size of count() after filtering or flattening (#1171)
facebook/jest
v27.2.5
Compare Source
Features
[jest-config]
Warn when multiple Jest configs are located (#11922)Fixes
[expect]
Pass matcher context to asymmetric matchers (#11926 & #11930)[expect]
Improve TypeScript types (#11931)[expect]
Improve typings oftoThrow()
andtoThrowError()
matchers (#11929)[jest-cli]
Improve--help
printout by removing defunct--browser
option (#11914)[jest-haste-map]
Use distinct cache paths for different values ofcomputeDependencies
(#11916)[@jest/reporters]
Do not bufferconsole.log
s when using verbose reporter (#11054)Chore & Maintenance
[expect]
Export default matchers (#11932)[@jest/types]
Mark deprecated configuration options as@deprecated
(#11913)Performance
ai/nanoid
v3.1.29
Compare Source
sindresorhus/open
v8.3.0
Compare Source
openApp
method (#263)1acc682
JedWatson/react-select
v5.1.0
Compare Source
Minor Changes
8b38d49b #4807 Thanks @hcharley! - Export AsyncCreatableProps from creatable entrypoint
46eeda1a #4801 Thanks @Methuselah96! - Export more types from main entry point
Patch Changes
fdd01e66 #4833 Thanks @ebonow! - Value container display property should be grid when isMulti and has no value so the Placeholder component is positioned correctly with the Input
0937604f #4823 Thanks @mikunpham! - Fix the issue where input contents are moved to the left due to multiple space characters.
ec80b577 #4803 Thanks @Methuselah96! - Import CSSObject from @emotion/react instead of @emotion/serialize
reactivex/rxjs
v7.4.0
Compare Source
Features
7.3.1 (2021-10-01)
Bug Fixes
webpack/webpack
v5.58.1
Compare Source
Bugfixes
.webpack[]
suffix to not execute rulesv5.58.0
Compare Source
Features
diagnostics_channel
to node builtinsPerformance
v5.57.1
Compare Source
Bugfix
v5.57.0
Compare Source
Performance
Bugfixes
webpack/webpack-cli
v4.9.0
Compare Source
Bug Fixes
undefined
and empty configuration export (#2930) (9b9040e)Features
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.
👻 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.