Update dependency immutable to ~3.8.3#32
Open
dev-mend-for-github-com[bot] wants to merge 1 commit into
Open
Conversation
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:
~3.7.4→~3.8.3By merging this PR, the below vulnerabilities will be automatically resolved:
Release Notes
immutable-js/immutable-js (immutable)
v3.8.3Compare Source
Fix Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution') in immutable
v3.8.2Compare Source
Released in 2017, still the most commonly used release.
v3.8.1Compare Source
Minor touch ups discovered after the last release, plus a few more bug fixes! Plus, you can now contribute to immutable-js using the latest version of node.
New:
keyOf,findKey,lastKeyOf, andfindLastKeywere moved from KeyedIterable to Iterable, so they may be also used on Lists and Sets. (#740)Fixes:
Symbolkeys or values can now be stringified. (#620)Infinityas a key in a Collection without crashing. (#797)v3.8.0Compare Source
Whoa, a new version of Immutable! The big news is that we now export types for both Flow and TypeScript in the npm module! Also that pesky
lengthwarning has finally been fully removed. There are also a good amount of small bug fixes and performance improvements. Finally, the API docs have been improved greatly! Check it out http://facebook.github.io/immutable-js/docs/.A huge huge thanks to everyone in the community for contributing these improvements. The large majority of work cited below is community contributions.
New:
typingsfor TypeScript use. (#808)lengthproperty of a collection. (88f880f)Map.of()takes key, value interleaved pairs (#727)findEntryandfindLastEntrynow respectnotSetValueargument (#822)Fixes:
Iterable::take(Infinity)takes infinitely instead of 0 (#834)toOrderedMapandtoOrderedSetmethod definitions (#761)Record#setcalls for better performance (#795)Range#toStringpropertly reports step (#759)Set#contains(96b0946)v3.7.6Compare Source
A few minor bug fixes:
lastIndexOfdid not always return the correct value #703mergeDeepnow has more opportunities to for the "return self" optimization, saving memory #690slice(0, NaN)is equivalent to that of JS Array #623And a new API method:
myList.insert()#402v3.7.5Compare Source
Many stability improvements thanks to excellent community submitted fixes.
New:
set(value)#516 to replace the value at the cursor.Fixes: