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

chore(deps): update all dependencies #991

Merged
merged 1 commit into from
Jun 30, 2021
Merged

chore(deps): update all dependencies #991

merged 1 commit into from
Jun 30, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 30, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@testing-library/dom ^7.31.0 -> ^8.0.0 age adoption passing confidence
@testing-library/jest-dom ^5.12.0 -> ^5.14.1 age adoption passing confidence
@testing-library/react ^11.2.7 -> ^12.0.0 age adoption passing confidence
@turf/turf ^6.3.0 -> ^6.4.0 age adoption passing confidence
@types/chai ^4.2.18 -> ^4.2.19 age adoption passing confidence
@​types/mongoose ^5.10.5 -> ^5.11.96 age adoption passing confidence
@types/multer ^1.4.5 -> ^1.4.6 age adoption passing confidence
@types/node ^15.6.1 -> ^15.12.5 age adoption passing confidence
@types/react ^17.0.8 -> ^17.0.11 age adoption passing confidence
@types/react-dom ^17.0.5 -> ^17.0.8 age adoption passing confidence
@types/react-select ^4.0.15 -> ^4.0.16 age adoption passing confidence
@types/sinon ^10.0.1 -> ^10.0.2 age adoption passing confidence
@typescript-eslint/eslint-plugin ^4.26.0 -> ^4.28.1 age adoption passing confidence
@typescript-eslint/parser ^4.26.0 -> ^4.28.1 age adoption passing confidence
ajv (source) ^8.5.0 -> ^8.6.0 age adoption passing confidence
eslint (source) ^7.27.0 -> ^7.29.0 age adoption passing confidence
formik (source) ^2.2.8 -> ^2.2.9 age adoption passing confidence
jest-junit ^12.1.0 -> ^12.2.0 age adoption passing confidence
jss (source) ^10.6.0 -> ^10.7.1 age adoption passing confidence
jss-plugin-extend (source) ^10.6.0 -> ^10.7.1 age adoption passing confidence
mitt ^2.1.0 -> ^3.0.0 age adoption passing confidence
mocha (source) ^8.4.0 -> ^9.0.1 age adoption passing confidence
mongoose (source) ^5.12.12 -> ^5.13.0 age adoption passing confidence
node 14.17.0 -> 14.17.1 age adoption passing confidence
node-sass ^6.0.0 -> ^6.0.1 age adoption passing confidence
nodemon (source) ^2.0.7 -> ^2.0.9 age adoption passing confidence
npm (source) >= 7.15.0 -> >= 7.19.0 age adoption passing confidence
react-virtuoso (source) ^1.8.6 -> ^1.9.3 age adoption passing confidence
ts-node-dev ^1.1.6 -> ^1.1.7 age adoption passing confidence
typescript (source) ^4.3.2 -> ^4.3.4 age adoption passing confidence

Release Notes

testing-library/dom-testing-library

v8.0.0

Compare Source

v7.31.2

Compare Source

Bug Fixes

v7.31.1

Compare Source

Bug Fixes
testing-library/jest-dom

v5.14.1

Compare Source

Bug Fixes

v5.14.0

Compare Source

Features
  • toHaveAccessibleName and toHaveAccessibleDescription (#​377) (87ffd2a)

v5.13.0

Compare Source

Features
testing-library/react-testing-library

v12.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • Bump @testing-library/dom to 8.0.0. Please check out the @testing-library/dom@8.0.0 release page for a detailed list of breaking changes.
  • node 10 is no longer supported. It reached its end-of-life on 30.04.2021.
Turfjs/turf

v6.4.0

Compare Source

🏅 New Features/Enhancements

🐛 Bug Fixes

📖 Documentation

🔔 Misc

typescript-eslint/typescript-eslint

v4.28.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v4.28.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v4.27.0

Compare Source

Bug Fixes
  • typescript-estree: allow providing more one than one existing program in config (#​3508) (4f1806e)
Features
  • allow user to provide TS program instance in parser options (#​3484) (e855b18)

4.26.1 (2021-06-07)

Note: Version bump only for package @​typescript-eslint/parser

v4.26.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

ajv-validator/ajv

v8.6.0

Compare Source

Track evaluated properties with patternProperties that have always valid schemas (e.g., true) (@​P0lip, #​1626)
Option int32range to disable number range checking for int32 and uint32 type in JTD schemas

eslint/eslint

v7.29.0

Compare Source

v7.28.0

Compare Source

formium/formik

v2.2.9

Compare Source

Patch Changes
jest-community/jest-junit

v12.2.0

Compare Source

Bump uuid to the latest version

cssinjs/jss

v10.7.1

Compare Source

Bug fixes
  • [jss] Fixes regression from previous release where useStyles() without arguments would throw an error

v10.7.0

Compare Source

Improvements
  • [jss][ts] Improved style type 1521
  • [react-jss] Refactored JssProvider to function component 1513
  • [react-jss] Refactored WithStyles to function component 1508
developit/mitt

v3.0.0

Compare Source

Mitt 3.0 adds a couple nice new features.

1. Remove all handlers of a type:

Calling .off("type") with no handler argument now removes all listeners of that type (#​123, #​124, #​129 - thanks @​sealice!).

2. New, stronger typing:

It's now possible to define explicit types for events and their arguments (#​114, thanks @​iyegoroff & @​deskoh):

import mitt from 'mitt';
const events = mitt<{ foo: string }>();
events.on('foo', e => {});  // `e` is inferred to be of type string!
events.emit('foo', 42);  // TypeError: got a number, expected a string
3. Package Exports:

As of 3.0.0, the mitt package now uses Package Exports. This shouldn't change usage or anything, it just means you're more likely to end up using the ES Module version of Mitt when running in Node.

mochajs/mocha

v9.0.1

Compare Source

🔩 Other

We added a separate browser bundle mocha-es2018.js in javascript ES2018, as we skipped the transpilation down to ES5. This is an experimental step towards freezing Mocha's support of IE11.

v9.0.0

Compare Source

💥 Breaking Changes

Mocha is going ESM-first! This means that it will now use ESM import(test_file) to load the test files, instead of the CommonJS require(test_file). This is not a problem, as import can also load most files that require does. In the rare cases where this fails, it will fallback to require(...). This ESM-first approach is the next step in Mocha's ESM migration, and allows ESM loaders to load and transform the test file.

🎉 Enhancements

🐛 Fixes

🔩 Other

Automattic/mongoose

v5.13.0

Compare Source

===================

  • feat(query): add sanitizeProjection option to opt in to automatically sanitizing untrusted query projections #​10243
  • feat(model): add bulkSave() function that saves multiple docs in 1 bulkWrite() #​9727 #​9673 AbdelrahmanHafez
  • feat(document): allow passing a list of virtuals or pathsToSkip to apply in toObject() and toJSON() #​10120
  • fix(model): make Model.validate use object under validation as context by default #​10360 AbdelrahmanHafez
  • feat(document): add support for pathsToSkip in validate and validateSync #​10375 AbdelrahmanHafez
  • feat(model): add diffIndexes() function that calculates what indexes syncIndexes() will create/drop without actually executing any changes #​10362 IslandRhythms
  • feat(document): avoid using sessions that have ended, so you can use documents that were loaded in the session after calling endSession() #​10306

v5.12.15

Compare Source

====================

v5.12.14

Compare Source

====================

  • fix(schema): check that schema type is an object when setting isUnderneathDocArray #​10361 vmo-khanus
  • fix(document): avoid infinite recursion when setting single nested subdoc to array #​10351
  • fix(populate): allow populating nested path in schema using Model.populate() #​10335
  • fix(drivers): emit operation-start/operation-end events to allow inspecting when operations start and end
  • fix(index.d.ts): improve typings for virtuals #​10350 thiagokisaki
  • fix(index.d.ts): correct constructor type for Document #​10328
  • fix(index.d.ts): add ValidationError as a possible type for ValidationError#errors #​10320 IslandRhythms
  • fix: remove unnecessary async devDependency that's causing npm audit warnings #​10281
  • docs(typescript): add schemas guide #​10308
  • docs(model): add options parameter description to Model.exists() #​10336 Aminoiz

v5.12.13

Compare Source

====================

  • perf(document): avoid creating nested paths when running $getAllSubdocs() #​10275
  • fix: make returnDocument option work with findOneAndUpdate() #​10232 #​10231 cnwangjie
  • fix(document): correctly reset subdocument when resetting a map subdocument underneath a single nested subdoc after save #​10295
  • perf(query): avoid setting non-null sessions to avoid overhead from $getAllSubdocs() #​10275
  • perf(document): pre split schematype paths when compiling schema to avoid extra overhead of splitting when hydrating documents #​10275
  • perf(schema): pre-calculate mapPaths to avoid looping over every path for each path when initing doc #​10275
  • fix(index.d.ts): drill down into nested arrays when creating LeanDocument type #​10293
nodejs/node

v14.17.1

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: "before 3am on the first day of the month" in timezone Asia/Singapore.

🚦 Automerge: Enabled.

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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot merged commit 64fd816 into master Jun 30, 2021
@renovate renovate bot deleted the renovate/all branch June 30, 2021 16:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant