Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump fast-equals from 3.0.3 to 5.0.1 #1442

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2023

Bumps fast-equals from 3.0.3 to 5.0.1.

Release notes

Sourced from fast-equals's releases.

Release 5.0.1

  • Fix references to metaOverride (#100) (19327e5)
  • Bump webpack from 5.75.0 to 5.76.0 (#99) (0698037)
  • Add several tests (#98) (eb76f52)

Release 5.0.0

  • Version 5 (#95) (acd7bcb)
  • Bump http-cache-semantics from 4.1.0 to 4.1.1 (#94) (e6b76c8)
  • Bump json5 from 1.0.1 to 1.0.2 (#92) (9d15c86)
  • Bump vm2 from 3.9.10 to 3.9.11 (#90) (342d9a1)

Release 5.0.0-beta.6

  • update dependencies (b57ae3e)
  • use iterator-based methods for Map / Set comparison (48e6960)
  • improve README documentation, and set fast-deep-equal comparison to be more apples-to-apples (es6 + react) (bb57801)
  • more CHANGELOG tweaks (ef031da)
  • update documentation for constructor equality checks (429170b)
  • add tests to validate TypedArray class differences (c14b38e)
  • clean up recipes with changes (2922af3)
  • renames, better typing, and update README to reflect createCustomEqual options change (3857342)
  • clean up typing (30d8418)
  • might as well do loose null comparson for isTypedArray (058724a)
  • loose comparison to null seems to be faster than ! (1f8aee9)
  • ensure constructors are equal, and fast-path common constructor types (88b408f)

Release 5.0.0-beta.5

  • simplify the description of support in README (dcf9046)
  • update dependencies (74fc440)
  • simplify the areTypedArraysEqual check (319c4d6)

Release 5.0.0-beta.4

  • put strict check after POJO check to fast-path a common use-case (f5425ea)
  • if in strict mode, constructor must match (a0d3e9c)
  • leverage isView instead of tag check (c2815f1)
  • add documentation for areTypedArraysEqual and call it out in CHANGELOG (c760179)
  • remove BigInt64Array / BigUint64Array from type to make it easier for older consumers (but still support it at runtime) (afa2629)
  • add TypedArray support (6ff9a7a)
  • include engines in package.json (1425f2f)

Release 5.0.0-beta.3

  • restore simple config building, and avoid storage of entire options in createCustomEqual (688e933)
  • cleaner custom state usage (469f514)
  • use createCustomEqual for all equality comparator constructions, and support better merging and circular handling (2a9e386)

Release 5.0.0-beta.2

  • eliminate imports to runtime files in index.d.ts, per feedback (9f4878f)

Release 5.0.0-beta.1

  • include index.d.ts fallback location (6dbbd0d)
  • include checking of Symbol keys in the documentation for strict checks (6cfa4cd)

... (truncated)

Changelog

Sourced from fast-equals's changelog.

5.0.1

Bugfixes

  • Fix reference to metaOverride in typings and documentation (holdover from temporary API in v5 beta)

5.0.0

Breaking changes

constructor equality now required

To align with other implementations common in the community, but also to be more functionally correct, the two objects being compared now must have equal constructors.

Map / Set comparisons no longer support IE11

In previous verisons, .forEach() was used to ensure that support for Symbol was not required, as IE11 did not have Symbol and therefore both Map and Set did not have iterator-based methods such as .values() or .entries(). Since IE11 is no longer a supported browser, and support for those methods is present in all browsers and Node for quite a while, the comparison has moved to use these methods. This results in a ~20% performance increase.

createCustomEqual contract has changed

To better facilitate strict comparisons, but also to allow for meta use separate from caching, the contract for createCustomEqual has changed. See the README documentation for more details, but froma high-level:

  • meta is no longer passed through to equality comparators, but rather a general state object which contains meta
  • cache now also lives on the state object, which allows for use of the meta property separate from but in parallel with the circular cache
  • equals is now on state, which prevents the need to pass through the separate isEqual method for the equality comparator

createCustomCircularEqual has been removed

You can create a custom circular equality comparator through createCustomEqual now by providing circular: true to the options.

Custom meta values are no longer passed at callsite

To use meta properties for comparisons, they must be returned in a createState method.

Deep links have changed

If you were deep-linking into a specific asset type (ESM / CJS / UMD), they have changed location.

NOTE: You may no longer need to deep-link, as the build resolution has improved.

Enhancements

New "strict" comparators available

The following new comparators are available:

  • strictDeepEqual
  • strictShallowEqual
  • strictCircularDeepEqual
  • strictCircularShallowEqual

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 27, 2023
@googlemaps-bot googlemaps-bot enabled auto-merge (squash) March 27, 2023 17:57
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from de38c80 to 949ee63 Compare March 27, 2023 18:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 949ee63 to 7347237 Compare March 27, 2023 19:46
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 7347237 to c7c692e Compare March 27, 2023 20:23
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from c7c692e to e39c6a7 Compare April 3, 2023 18:06
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from e39c6a7 to 69f8de7 Compare April 3, 2023 18:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 69f8de7 to 8b3492c Compare April 3, 2023 18:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 8b3492c to 53ba791 Compare April 3, 2023 18:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 53ba791 to c1249be Compare April 3, 2023 18:19
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from c1249be to 2825c09 Compare April 3, 2023 18:22
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 2825c09 to 647474e Compare April 7, 2023 22:20
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 647474e to b846bb9 Compare April 8, 2023 00:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from b846bb9 to 6c5ceb0 Compare April 8, 2023 00:25
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 6c5ceb0 to 223b6e5 Compare April 8, 2023 00:32
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 0a931e1 to 1d323fd Compare April 10, 2023 18:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 1d323fd to 68846b5 Compare April 10, 2023 18:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 68846b5 to 4870ea3 Compare April 10, 2023 18:13
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 4870ea3 to 277ff4b Compare April 10, 2023 18:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 277ff4b to eb7a1b2 Compare April 17, 2023 18:07
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from eb7a1b2 to cf83516 Compare April 17, 2023 18:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from cf83516 to 169e145 Compare April 17, 2023 18:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 169e145 to 4d390ab Compare April 17, 2023 18:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 4d390ab to eb6f6e7 Compare April 17, 2023 18:13
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from eb6f6e7 to 5b858b9 Compare April 20, 2023 21:36
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 5b858b9 to 938fa89 Compare April 20, 2023 21:39
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 938fa89 to 65a9387 Compare April 24, 2023 18:05
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 65a9387 to 90a8b07 Compare April 24, 2023 18:18
Bumps [fast-equals](https://github.com/planttheidea/fast-equals) from 3.0.3 to 5.0.1.
- [Release notes](https://github.com/planttheidea/fast-equals/releases)
- [Changelog](https://github.com/planttheidea/fast-equals/blob/master/CHANGELOG.md)
- [Commits](planttheidea/fast-equals@v3.0.3...v5.0.1)

---
updated-dependencies:
- dependency-name: fast-equals
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/fast-equals-5.0.1 branch from 90a8b07 to 71d47b0 Compare April 25, 2023 07:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants