Skip to content

Commit

Permalink
chore: release 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Aug 25, 2021
1 parent f9bf537 commit c23a76e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 19 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
6.0.1 / 2021-08-25
==================
* fix(aggregate): allow calling Model.aggregate() with options #10604 [amitbeck](https://github.com/amitbeck)
* fix(index.d.ts): add instance, options, schema properties to SchemaType class #10609
* fix(index.d.ts): allow querying array of strings by string #10605
* fix(index.d.ts): allow using type: SchemaDefinitionProperty in schema definitions #10605
* fix(index.d.ts): remove strictQuery option #10598 [thiagokisaki](https://github.com/thiagokisaki)
* docs: add link to migration guide in changelog #10600 [AbdelrahmanHafez](https://github.com/AbdelrahmanHafez)
* docs: fix docs build for v5.x docs #10607
* docs(query): add note about strict option to setOptions() #10602

6.0.0 / 2021-08-24
==================
* Follow the [migration guide](https://mongoosejs.com/docs/migrating_to_6.html) to get a list of all breaking changes in v6.0.
Expand Down
40 changes: 21 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "6.0.0",
"version": "6.0.1",
"author": "Guillermo Rauch <guillermo@learnboost.com>",
"keywords": [
"mongodb",
Expand Down Expand Up @@ -105,24 +105,26 @@
"extends": [
"eslint:recommended"
],
"overrides": [{
"files": [
"**/*.{ts,tsx}"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
"overrides": [
{
"files": [
"**/*.{ts,tsx}"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
}],
],
"plugins": [
"mocha-no-only"
],
Expand Down Expand Up @@ -246,4 +248,4 @@
"type": "opencollective",
"url": "https://opencollective.com/mongoose"
}
}
}

0 comments on commit c23a76e

Please sign in to comment.