Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 26, 2020

This PR contains the following updates:

Package Change Age Confidence
chai (source) 4.2.0 -> 6.2.0 age confidence
eslint-plugin-flowtype 4.7.0 -> 8.0.3 age confidence
flow-typed (source) 3.1.0 -> 4.1.1 age confidence
jsdom 16.2.2 -> 27.0.0 age confidence
mocha (source) 7.2.0 -> 11.7.4 age confidence

Release Notes

chaijs/chai (chai)

v6.2.0

Compare Source

What's Changed

Full Changelog: chaijs/chai@v6.1.0...v6.2.0

v6.1.0

Compare Source

What's Changed
  • build(deps-dev): bump tar-fs from 3.0.9 to 3.1.1 by @​dependabot[bot] in #​1706
  • feat: add eventEmitter (#​1693)
    Adds an event emitter for hooking into method/property creation in #​1693

Full Changelog: chaijs/chai@v6.0.2...v6.1.0

v6.0.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v6.0.0...v6.0.1

v6.0.0

Compare Source

BREAKING CHANGES

Chai is now bundled into a single file. The lib/*.js files are no longer present, and so any code that imports those files directly will need to change. The only file that can be imported now is ./index.js.

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v6.0.0

v5.3.3

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v5.3.3

v5.3.2

Compare Source

Reverts the removal of the bundled version of chai in 5.3.1

What's Changed

Full Changelog: chaijs/chai@v5.3.1...v5.3.2

v5.3.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.0...v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.2...v5.3.0

v5.2.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.1...v5.2.2

v5.2.1

Compare Source

What's Changed

Mostly internal changes but @​SuperchupuDev realised the package.json engines field was out of date, so it has been updated to reflect that v5.0.0 onwards only supports Node >=18.

New Contributors

Full Changelog: chaijs/chai@v5.2.0...v5.2.1

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.2...v5.2.0

v5.1.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.1.1...v5.1.2

v5.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.0...v5.1.1

v5.1.0

Compare Source

What's Changed
New Contributors

Full Changelog: chaijs/chai@v5.0.3...v5.1.0

v5.0.3

Compare Source

Fix bad v5.0.2 publish.

Full Changelog: chaijs/chai@v5.0.2...v5.0.3

v5.0.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.0.1...v5.0.2

v5.0.0

Compare Source

BREAKING CHANGES

  • Chai now only supports EcmaScript Modules (ESM). This means your tests will need to either have import {...} from 'chai' or import('chai'). require('chai') will cause failures in nodejs. If you're using ESM and seeing failures, it may be due to a bundler or transpiler which is incorrectly converting import statements into require calls.
  • Dropped support for Internet Explorer.
  • Dropped support for NodeJS < 18.
  • Minimum supported browsers are now Firefox 100, Safari 14.1, Chrome 100, Edge 100. Support for browsers prior to these versions is "best effort" (bug reports on older browsers will be assessed individually and may be marked as wontfix).

What's Changed

New Contributors

Full Changelog: chaijs/chai@4.3.1...v5.0.0

v4.5.0

Compare Source

What's Changed

Full Changelog: chaijs/chai@v4.4.1...v4.5.0

v4.4.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v4.4.0...v4.4.1

v4.4.0

Compare Source

What's Changed

  • Allow deepEqual fonction to be configured globally (4.x.x branch) by @​forty in #​1553

Full Changelog: chaijs/chai@v4.3.10...v4.4.0

v4.3.10

Compare Source

This release simply bumps all dependencies to their latest non-breaking versions.

What's Changed

Full Changelog: chaijs/chai@v4.3.9...v4.3.10

v4.3.9

Compare Source

Upgrade dependencies.

This release upgrades dependencies to address CVE-2023-43646 where a large function name can cause "catastrophic backtracking" (aka ReDOS attack) which can cause the test suite to hang.

Full Changelog: chaijs/chai@v4.3.8...v4.3.9

v4.3.8

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v4.3.7...v4.3.8

v4.3.7

Compare Source

What's Changed

Full Changelog: chaijs/chai@v4.3.6...v4.3.7

v4.3.6

Compare Source

Update loupe to 2.3.1

v4.3.5

Compare Source

v4.3.4

Compare Source

This fixes broken inspect behavior with bigints (#​1321) (#​1383) thanks @​vapier

v4.3.3: / 2021-03-03

Compare Source

This reintroduces Assertion as an export in the mjs file. See #​1378 & #​1375

v4.3.2: / 2021-03-03

Compare Source

This fixes a regression in IE11. See #​1380 & #​1379

v4.3.1: / 2021-03-02

Compare Source

This releases fixed an engine incompatibility with 4.3.0

The 4.x.x series of releases will be compatible with Node 4.0. Please report any errors found in Node 4 as bugs, and they will be fixed.

The 5.x.x series, when released, will drop support for Node 4.0

This fix also ensures pathval is updated to 1.1.1 to fix CVE-2020-7751

v4.3.0: / 2021-02-04

Compare Source

This is a minor release.

Not many changes have got in since the last release but this one contains a very important change (#​1257) which will allow jest users to get better diffs. From this release onwards, jest users will be able to see which operator was used in their diffs. The operator is a property of the AssertionError thrown when assertions fail. This flag indicates what kind of comparison was made.

This is also an important change for plugin maintainers. Plugin maintainers will now have access to the operator flag, which they can have access to through an utilmethod calledgetOperator`.

Thanks to all the amazing people that contributed to this release.

New Features

  • Allow contain.oneOf to take an array of possible values (@​voliva)
  • Adding operator attribute to assertion error (#​1257) (@​rpgeeganage)
  • The closeTo error message will now inform the user when a delta is required (@​eouw0o83hf)

Docs

  • Add contains flag to oneOf documentation (@​voliva)

Tests

Chores

gajus/eslint-plugin-flowtype (eslint-plugin-flowtype)

v8.0.3

Compare Source

Bug Fixes

v8.0.2

Compare Source

Bug Fixes

v8.0.1

Compare Source

Bug Fixes
Reverts
  • Revert "fix: temporarily disable canonical plugin" (e9a334b)

v8.0.0

Compare Source

Bug Fixes
  • temporarily disable canonical plugin (caa6c4a)
  • update dependencies (5e18199)
Features
BREAKING CHANGES
  • drops ESLint v7 support

v7.0.0

Compare Source

Bug Fixes
  • add ESLint v8 compatible built-in rule imports (986a5ac)
Features
BREAKING CHANGES
  • drops Node v10

v6.1.1

Compare Source

Bug Fixes
  • require-exact-types rule should not fix declare class (#​507) (01572d5)

v6.1.0

Compare Source

Features
  • add new rule no-duplicate-type-union-intersection-members (#​503) (1c1c009)

v6.0.1

Compare Source

Bug Fixes

v6.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • potentially breaking dependency updates

v5.10.0

Compare Source

Features
  • add new rule sort-type-union-intersection-members (#​501) (fa4207d)

v5.9.2

Compare Source

Bug Fixes

v5.9.1

Compare Source

Bug Fixes

v5.9.0

Compare Source

Features

v5.8.2

Compare Source

Bug Fixes
  • enforceLineBreak now handles export type correctly (#​488) (c40937a)

v5.8.1

Compare Source

Bug Fixes

v5.8.0

Compare Source

Features

v5.7.2

Compare Source

Bug Fixes
  • object-type-curly-spacing should not trim multi-line expressions (#​481) (d2f6d9b)

v5.7.1

Compare Source

Bug Fixes

v5.7.0

Compare Source

Features

v5.6.0

Compare Source

Features

v5.5.0

Compare Source

Features

v5.4.0

Compare Source

Features

v5.3.1

Compare Source

Bug Fixes
  • object-type-curly-spacing should not throw errors on multiple spaces on option always (#​466) (e1d5d04)

v5.3.0

Compare Source

Features

v5.2.2

Compare Source

Bug Fixes

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features
  • add respect to [@noflow](https://redirect.github.com/noflow) annotation (#​451) (e93f1c0)

v5.1.4

Compare Source

Bug Fixes
  • false positive for optional call expressions in no-unused-expressions (#​448) (a91db33)

v5.1.3

Compare Source

Bug Fixes

v5.1.2

Compare Source

Bug Fixes
  • check type annotation context (1ec503d)

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features

v5.0.3

Compare Source

Bug Fixes

v5.0.2

Compare Source

Bug Fixes

v5.0.1

Compare Source

Bug Fixes
  • require-exact-type must not add exact types for explicitly inexact types (fixes #​444) (4238464)

v5.0.0

Compare Source

Bug Fixes
  • replace annotations when they already exist (353dce4)
  • styles (fc5563d)
  • Use .range instead of .start & .end on node & token (93374cd)
Features
  • remove non-natural, case-sensitive sorting (46c8b4a)
  • Support ESLint 7.x (9adfc6f)
BREAKING CHANGES
    • Breaks compatibility with eslint sorting rule. In practise, there is never a case when someone would want to use the other options, though.
  • Requires Node@^10.12.x || 12.x
  • Requires ESLint@^7.x
flow-typed/flow-typed (flow-typed)

v4.1.1

Compare Source

  • Do not consider config file to be environment libdef file (#​4613) 8922042

v4.1.0

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jun 26, 2020
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 32fedc8 to 10ddf83 Compare June 30, 2020 12:35
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from dc8187a to 54e5945 Compare August 4, 2020 19:30
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 54e5945 to ab12e45 Compare October 30, 2020 00:58
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from ab12e45 to 83174d5 Compare November 28, 2020 17:59
@renovate renovate bot changed the title Update all major dependencies (major) chore(deps): update all major dependencies (major) Mar 17, 2021
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 83174d5 to cc78800 Compare March 17, 2021 16:23
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 8c6efa2 to e4c4ac4 Compare April 12, 2021 22:01
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 5e3a34c to fd86a4c Compare April 23, 2021 16:43
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from fd86a4c to 9ae2113 Compare May 7, 2021 10:26
@renovate
Copy link
Author

renovate bot commented May 7, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock

@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 9ae2113 to c854ea1 Compare June 14, 2021 21:09
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from c854ea1 to f68de4c Compare October 18, 2021 20:46
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from f68de4c to 4181d87 Compare March 7, 2022 10:37
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 4181d87 to f53c52c Compare March 26, 2022 14:54
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from f53c52c to 55399e1 Compare April 24, 2022 19:38
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 55399e1 to 4163f85 Compare May 16, 2022 03:18
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 4163f85 to b45182e Compare June 18, 2022 13:14
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from b45182e to 8a67bac Compare September 25, 2022 12:54
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 8a67bac to 679f00b Compare November 20, 2022 11:04
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 679f00b to 6375905 Compare March 17, 2023 04:06
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 6375905 to 5dc6c92 Compare March 29, 2023 22:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 5dc6c92 to 81ccb65 Compare April 17, 2023 12:40
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 6bb54df to f90cda0 Compare June 3, 2023 00:49
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from d3e1530 to e5be428 Compare October 30, 2024 19:16
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from e5be428 to 769bc93 Compare December 2, 2024 17:25
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 769bc93 to 0d4e04e Compare January 9, 2025 06:19
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 0d4e04e to b9c0750 Compare January 22, 2025 17:32
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from b9c0750 to ac6068a Compare February 14, 2025 18:14
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from ac6068a to f109975 Compare April 13, 2025 10:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 213ac1b to d63ee6b Compare May 1, 2025 18:14
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 7cef429 to 3604f2d Compare May 19, 2025 20:11
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 3604f2d to 3c740d9 Compare May 23, 2025 23:16
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 3c740d9 to 7488662 Compare June 9, 2025 16:12
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 3c3297d to c036ab7 Compare June 24, 2025 20:34
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from c036ab7 to 32a056b Compare July 8, 2025 20:42
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 32a056b to 6aec7db Compare August 10, 2025 15:05
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 053eee5 to 2f9295e Compare August 22, 2025 19:13
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from eafa1e6 to 1881cdf Compare September 1, 2025 19:30
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 1881cdf to a98a69a Compare September 13, 2025 23:06
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 11cbf60 to 6943db2 Compare September 30, 2025 13:10
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 6943db2 to 90037b8 Compare October 2, 2025 01:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants