react-permissible icon indicating copy to clipboard operation
react-permissible copied to clipboard

[renovate] Update NPM dependencies

Open renovate[bot] opened this issue 3 years ago • 0 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@brainhubeu/react-permissible ^1.9.13 -> ^1.9.16 age adoption passing confidence
@types/react (source) ^16.9.41 -> ^16.14.60 age adoption passing confidence
@types/react-dom (source) ^16.9.8 -> ^16.9.24 age adoption passing confidence
autoprefixer ^9.8.4 -> ^9.8.8 age adoption passing confidence
babel-loader ^8.1.0 -> ^8.3.0 age adoption passing confidence
chai (source) ^4.2.0 -> ^4.4.1 age adoption passing confidence
chai-as-promised ^7.1.1 -> ^7.1.2 age adoption passing confidence
chalk ^4.1.0 -> ^4.1.2 age adoption passing confidence
coveralls ^3.1.0 -> ^3.1.1 age adoption passing confidence
enzyme-adapter-react-16 (source) ^1.15.2 -> ^1.15.8 age adoption passing confidence
eslint (source) ^7.3.1 -> ^7.32.0 age adoption passing confidence
eslint-config-brainhub ^1.13.0 -> ^1.14.0 age adoption passing confidence
html-webpack-plugin ^4.3.0 -> ^4.5.2 age adoption passing confidence
husky ^4.2.5 -> ^4.3.8 age adoption passing confidence
jsdom ^16.2.2 -> ^16.7.0 age adoption passing confidence
mocha (source) ^8.0.1 -> ^8.4.0 age adoption passing confidence
npm (source) >=6.14.5 -> >=6.14.18 age adoption passing confidence
prop-types (source) ^15.7.2 -> ^15.8.1 age adoption passing confidence
react (source) ^16.13.1 -> ^16.14.0 age adoption passing confidence
react-dom (source) ^16.13.1 -> ^16.14.0 age adoption passing confidence
react-test-renderer (source) ^16.13.1 -> ^16.14.0 age adoption passing confidence
sinon (source) ^9.0.2 -> ^9.2.4 age adoption passing confidence
sinon-chai ^3.5.0 -> ^3.7.0 age adoption passing confidence
typescript (source) ^3.9.6 -> ^3.9.10 age adoption passing confidence
webpack ^4.43.0 -> ^4.47.0 age adoption passing confidence

Release Notes

brainhubeu/react-permissible (@​brainhubeu/react-permissible)

v1.9.16

Compare Source

v1.9.15

Compare Source

postcss/autoprefixer (autoprefixer)

v9.8.8

Compare Source

  • Replaced nanocolors with picocolors.
  • Reduced package size.

v9.8.7

Compare Source

  • Replaced colorette with nanocolors.
  • Reduced package size.

v9.8.6

Compare Source

  • Fixed env option.

v9.8.5

Compare Source

  • Improved Grid Layout warnings (by Daniel Tonon).
  • Fixed align-self and justify-self with display: flex (by Daniel Tonon).
babel/babel-loader (babel-loader)

v8.3.0

Compare Source

New features

Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.5...v8.3.0

v8.2.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.4...v8.2.5

v8.2.4

Compare Source

What's Changed

Thanks @​loveDstyle, @​stianjensen and @​pathmapper for your first PRs!

v8.2.3: 8.2.3

Compare Source

This release fixes compatibility with Node.js 17

Thanks @​Reptarsrage!

v8.2.2

Compare Source

v8.2.1: 8.2.1

Compare Source

v8.2.0: 8.2.0

Compare Source

chaijs/chai (chai)

v4.4.1

Compare Source

What's Changed

Full Changelog: https://github.com/chaijs/chai/compare/v4.4.0...v4.4.1

v4.4.0

Compare Source

What's Changed

Full Changelog: https://github.com/chaijs/chai/compare/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: https://github.com/chaijs/chai/compare/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: https://github.com/chaijs/chai/compare/v4.3.8...v4.3.9

v4.3.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai/compare/v4.3.7...v4.3.8

v4.3.7

Compare Source

What's Changed

Full Changelog: https://github.com/chaijs/chai/compare/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 https://github.com/chaijs/chai/pull/1378 & https://github.com/chaijs/chai/issues/1375

v4.3.2: / 2021-03-03

Compare Source

This fixes a regression in IE11. See https://github.com/chaijs/chai/pull/1380 & https://github.com/chaijs/chai/issues/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

domenic/chai-as-promised (chai-as-promised)

v7.1.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai-as-promised/compare/v7.1.1...v7.1.2

chalk/chalk (chalk)

v4.1.2

Compare Source

  • Readme updates

v4.1.1

Compare Source

  • Readme updates https://github.com/chalk/chalk/commit/89e9e3a5b0601f4eda4c3a92acd887ec836d0175
nickmerwin/node-coveralls (coveralls)

v3.1.1: Maintenance / Security updates

Compare Source

  • swapped exec for execFile. Credit: Adar Zandberg from the CxSCA AppSec team at Checkmarx.
  • updated devDependencies
  • merged Dependabot PRs
enzymejs/enzyme (enzyme-adapter-react-16)

v1.15.8

Compare Source

v1.15.7

Compare Source

v1.15.6

Compare Source

v1.15.5

Compare Source

v1.15.4

Compare Source

v1.15.3

Compare Source

eslint/eslint (eslint)

v7.32.0

Compare Source

v7.31.0

Compare Source

v7.30.0

Compare Source

v7.29.0

Compare Source

v7.28.0

Compare Source

v7.27.0

Compare Source

  • 2c0868c Chore: merge all html formatter files into html.js (#​14612) (Milos Djermanovic)
  • 9e9b5e0 Update: no-unused-vars false negative with comma operator (fixes #​14325) (#​14354) (Nitin Kumar)
  • afe9569 Chore: use includes instead of indexOf (#​14607) (Mikhail Bodrov)
  • c0f418e Chore: Remove lodash (#​14287) (Stephen Wade)
  • 52655dd Update: no-restricted-imports custom message for patterns (fixes #​11843) (#​14580) (Alex Holden)
  • 967b1c4 Chore: Fix typo in large.js (#​14589) (Ikko Ashimine)
  • 2466a05 Sponsors: Sync README with website (ESLint Jenkins)
  • fe29f18 Sponsors: Sync README with website (ESLint Jenkins)
  • 086c1d6 Chore: add more test cases for no-sequences (#​14579) (Nitin Kumar)
  • 6a2ced8 Docs: Update README team and sponsors (ESLint Jenkins)

v7.26.0

Compare Source

  • aaf65e6 Upgrade: eslintrc for ModuleResolver fix (#​14577) (Brandon Mills)
  • ae6dbd1 Fix: track variables, not names in require-atomic-updates (fixes #​14208) (#​14282) (Patrick Ahmetovic)
  • 6a86e50 Chore: remove loose-parser tests (fixes #​14315) (#​14569) (Milos Djermanovic)
  • ee3a3ea Fix: create .eslintrc.cjs for module type (#​14304) (Nitin Kumar)
  • 6791dec Docs: fix example for require-atomic-updates (#​14562) (Milos Djermanovic)
  • 388eb7e Sponsors: Sync README with website (ESLint Jenkins)
  • f071d1e Update: Add automated suggestion to radix rule for parsing decimals (#​14291) (Bryan Mishkin)
  • 0b6a3f3 New: Include XO style guide in eslint --init (#​14193) (Federico Brigante)

v7.25.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Aug 01 '20 01:08 renovate[bot]