From 7526ef692c64dfa03f7c11fed3d1a3bc5b36fb5a Mon Sep 17 00:00:00 2001 From: Bernard Arhia Date: Sat, 23 Mar 2024 02:35:57 +0000 Subject: [PATCH 01/13] --- Removed unused hook from doc --- docs/middleware.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/middleware.md b/docs/middleware.md index f7c8c0bb4ff..41440c9a6bc 100644 --- a/docs/middleware.md +++ b/docs/middleware.md @@ -52,7 +52,6 @@ In query middleware functions, `this` refers to the query. * [findOneAndUpdate](api/query.html#query_Query-findOneAndUpdate) * [remove](api/model.html#model_Model-remove) * [replaceOne](api/query.html#query_Query-replaceOne) -* [update](api/query.html#query_Query-update) * [updateOne](api/query.html#query_Query-updateOne) * [updateMany](api/query.html#query_Query-updateMany) * [validate](validation.html#update-validators) @@ -539,15 +538,14 @@ also define a post `update()` hook that will catch MongoDB duplicate key errors. ```javascript -// The same E11000 error can occur when you call `update()` -// This function **must** take 3 parameters. If you use the -// `passRawResult` function, this function **must** take 4 -// parameters -schema.post('update', function(error, res, next) { +// The same E11000 error can occur when you call `updateOne()` +// This function **must** take 4 parameters. + +schema.post('updateOne', function(passRawResult, error, res, next) { if (error.name === 'MongoServerError' && error.code === 11000) { next(new Error('There was a duplicate key error')); } else { - next(); // The `update()` call will still error out. + next(); // The `updateOne()` call will still error out. } }); @@ -555,7 +553,7 @@ const people = [{ name: 'Axl Rose' }, { name: 'Slash' }]; await Person.create(people); // Throws "There was a duplicate key error" -await Person.update({ name: 'Slash' }, { $set: { name: 'Axl Rose' } }); +await Person.updateOne({ name: 'Slash' }, { $set: { name: 'Axl Rose' } }); ``` Error handling middleware can transform an error, but it can't remove the From 0d20b1d787829c49e38369ff4abec56b290cf578 Mon Sep 17 00:00:00 2001 From: hasezoey Date: Sat, 23 Mar 2024 13:37:08 +0100 Subject: [PATCH 02/13] fix(types/query): bring "getFilter" and "getQuery" in-line with "find" and other types change "DocType" -> "RawDocType" --- types/query.d.ts | 4 ++-- types/schemaoptions.d.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/types/query.d.ts b/types/query.d.ts index 9f404e996c0..16f86cde2a0 100644 --- a/types/query.d.ts +++ b/types/query.d.ts @@ -493,7 +493,7 @@ declare module 'mongoose' { get(path: string): any; /** Returns the current query filter (also known as conditions) as a POJO. */ - getFilter(): FilterQuery; + getFilter(): FilterQuery; /** Gets query options. */ getOptions(): QueryOptions; @@ -502,7 +502,7 @@ declare module 'mongoose' { getPopulatedPaths(): Array; /** Returns the current query filter. Equivalent to `getFilter()`. */ - getQuery(): FilterQuery; + getQuery(): FilterQuery; /** Returns the current update operations as a JSON object. */ getUpdate(): UpdateQuery | UpdateWithAggregationPipeline | null; diff --git a/types/schemaoptions.d.ts b/types/schemaoptions.d.ts index 32a9e909e38..31795187cf0 100644 --- a/types/schemaoptions.d.ts +++ b/types/schemaoptions.d.ts @@ -234,7 +234,7 @@ declare module 'mongoose' { query?: IfEquals< QueryHelpers, {}, - Record>(this: T, ...args: any) => T>, + Record>(this: T, ...args: any) => T>, QueryHelpers > From 55fde0e706beaefde2bcb448250ebf4bb11b0bd1 Mon Sep 17 00:00:00 2001 From: Mike Noseworthy Date: Sun, 24 Mar 2024 22:43:05 -0230 Subject: [PATCH 03/13] types(schema): re-export the defintion for `SearchIndexDescription` Make a `mongoose` copy of `SearchIndexDescription` from `mongodb` and re-export it for use in `typegoose`. --- types/index.d.ts | 2 +- types/indexes.d.ts | 2 ++ types/models.d.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index b3baf6c8a3e..dc969e483f3 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -279,7 +279,7 @@ declare module 'mongoose' { * * @remarks Search indexes are only supported when used against a 7.0+ Mongo Atlas cluster. */ - searchIndex(description: mongodb.SearchIndexDescription): this; + searchIndex(description: SearchIndexDescription): this; /** * Returns a list of indexes that this schema declares, via `schema.index()` diff --git a/types/indexes.d.ts b/types/indexes.d.ts index 3c5172352aa..f0891f081eb 100644 --- a/types/indexes.d.ts +++ b/types/indexes.d.ts @@ -86,4 +86,6 @@ declare module 'mongoose' { expires?: number | string; weights?: Record; } + + type SearchIndexDescription = mongodb.SearchIndexDescription; } diff --git a/types/models.d.ts b/types/models.d.ts index 7291e5ca79f..a56f1ee92e4 100644 --- a/types/models.d.ts +++ b/types/models.d.ts @@ -327,7 +327,7 @@ declare module 'mongoose' { * Create an [Atlas search index](https://www.mongodb.com/docs/atlas/atlas-search/create-index/). * This function only works when connected to MongoDB Atlas. */ - createSearchIndex(description: mongodb.SearchIndexDescription): Promise; + createSearchIndex(description: SearchIndexDescription): Promise; /** Connection the model uses. */ db: Connection; From 3178bbb64e83cd14418a6a868e02703ef0b8f188 Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Thu, 28 Mar 2024 14:15:28 -0400 Subject: [PATCH 04/13] chore: release 8.2.4 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6b8afa365..9f4783a393f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +8.2.4 / 2024-03-28 +================== + * types(query): bring "getFilter" and "getQuery" in-line with "find" and other types #14463 [noseworthy](https://github.com/noseworthy) + * types(schema): re-export the defintion for SearchIndexDescription #14464 + * docs: removed unused hook from docs #14461 [bernardarhia](https://github.com/bernardarhia) + 8.2.3 / 2024-03-21 ================== * fix(schema): avoid returning string 'nested' as schematype #14453 #14443 #14435 diff --git a/package.json b/package.json index 6665e4a30a5..53c54792d4d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mongoose", "description": "Mongoose MongoDB ODM", - "version": "8.2.3", + "version": "8.2.4", "author": "Guillermo Rauch ", "keywords": [ "mongodb", From 43e8782ec607aa6c22308aba621a39da502827e9 Mon Sep 17 00:00:00 2001 From: stayweek Date: Mon, 1 Apr 2024 14:43:01 +0800 Subject: [PATCH 05/13] chore: fix typos in comment Signed-off-by: stayweek --- docs/source/api.js | 4 ++-- test/document.test.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/api.js b/docs/source/api.js index 092f93668c2..e398164056a 100644 --- a/docs/source/api.js +++ b/docs/source/api.js @@ -310,7 +310,7 @@ function processFile(props) { ctx.type = 'function'; ctx.isStatic = true; ctx.name = tag.string; - // extra parameter to make function definitions independant of where "@function" is defined + // extra parameter to make function definitions independent of where "@function" is defined // like "@static" could have overwritten "ctx.string" again if defined after "@function" ctx.isFunction = true; break; @@ -352,7 +352,7 @@ function processFile(props) { case 'event': case 'param': ctx[tag.type] = (ctx[tag.type] || []); - // the following is required, because in newer "dox" version "null" is not included in "types" anymore, but a seperate property + // the following is required, because in newer "dox" version "null" is not included in "types" anymore, but a separate property if (tag.nullable) { tag.types.push('null'); } diff --git a/test/document.test.js b/test/document.test.js index 73361a49574..bcd64b6d030 100644 --- a/test/document.test.js +++ b/test/document.test.js @@ -805,7 +805,7 @@ describe('document', function() { assert.deepStrictEqual(myModel.toObject().foo, {}); }); - it('should propogate toObject to implicitly created schemas (gh-13599) (gh-13325)', async function() { + it('should propagate toObject to implicitly created schemas (gh-13599) (gh-13325)', async function() { const transformCalls = []; const userSchema = Schema({ firstName: String, @@ -1017,7 +1017,7 @@ describe('document', function() { assert.equal(foundAlicJson.friends, undefined); assert.equal(foundAlicJson.name, 'Alic'); }); - it('should propogate toJSON to implicitly created schemas (gh-13599) (gh-13325)', async function() { + it('should propagate toJSON to implicitly created schemas (gh-13599) (gh-13325)', async function() { const transformCalls = []; const userSchema = Schema({ firstName: String, From dcf394d21f82ccd2844674903fb1ca1833839d9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:41:14 +0000 Subject: [PATCH 06/13] chore(deps): bump actions/checkout from 4.1.1 to 4.1.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/documentation.yml | 4 ++-- .github/workflows/test.yml | 10 +++++----- .github/workflows/tidelift-alignment.yml | 2 +- .github/workflows/tsd.yml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index eb32422b89b..cd542950b49 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-20.04 name: Benchmark TypeScript Types steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 with: fetch-depth: 0 - name: Setup node diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 78bf9c9c140..234108b30be 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index f20394fdb22..9329c6c2b02 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest name: Lint Markdown files steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-20.04 name: Test Generating Docs steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - run: git fetch --depth=1 --tags # download all tags for documentation - name: Setup node diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d8858be7e8..c5be0645cab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest name: Lint JS-Files steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -58,7 +58,7 @@ jobs: MONGOMS_PREFER_GLOBAL_PATH: 1 FORCE_COLOR: true steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -94,7 +94,7 @@ jobs: MONGOMS_PREFER_GLOBAL_PATH: 1 FORCE_COLOR: true steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: @@ -122,7 +122,7 @@ jobs: env: FORCE_COLOR: true steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: @@ -139,6 +139,6 @@ jobs: contents: read steps: - name: Check out repo - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Dependency review uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/tidelift-alignment.yml b/.github/workflows/tidelift-alignment.yml index e2498c40e08..e2baae64c52 100644 --- a/.github/workflows/tidelift-alignment.yml +++ b/.github/workflows/tidelift-alignment.yml @@ -15,7 +15,7 @@ jobs: if: github.repository == 'Automattic/mongoose' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: diff --git a/.github/workflows/tsd.yml b/.github/workflows/tsd.yml index 1eb30cf6862..6cd4afafe59 100644 --- a/.github/workflows/tsd.yml +++ b/.github/workflows/tsd.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest name: Lint TS-Files steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest name: Test Typescript Types steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 From df52b124cd8b625e7bc055d9021fcf984aa37a97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:41:40 +0000 Subject: [PATCH 07/13] chore(deps-dev): bump eslint-plugin-markdown from 3.0.1 to 4.0.1 Bumps [eslint-plugin-markdown](https://github.com/eslint/eslint-plugin-markdown) from 3.0.1 to 4.0.1. - [Release notes](https://github.com/eslint/eslint-plugin-markdown/releases) - [Changelog](https://github.com/eslint/eslint-plugin-markdown/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint-plugin-markdown/compare/v3.0.1...v4.0.1) --- updated-dependencies: - dependency-name: eslint-plugin-markdown dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53c54792d4d..4050fa7777c 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "dotenv": "16.4.5", "dox": "1.0.0", "eslint": "8.57.0", - "eslint-plugin-markdown": "^3.0.1", + "eslint-plugin-markdown": "^4.0.1", "eslint-plugin-mocha-no-only": "1.1.1", "express": "^4.18.1", "fs-extra": "~11.2.0", From f3dc007afff5ed33aae1b34d96153d47e97744b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:45:05 +0000 Subject: [PATCH 08/13] chore(deps-dev): bump webpack from 5.90.3 to 5.91.0 Bumps [webpack](https://github.com/webpack/webpack) from 5.90.3 to 5.91.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.90.3...v5.91.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53c54792d4d..1722c4eaff0 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,7 @@ "tsd": "0.30.7", "typescript": "5.3.3", "uuid": "9.0.1", - "webpack": "5.90.3" + "webpack": "5.91.0" }, "directories": { "lib": "./lib/mongoose" From faca5ad81d40bf96449751442ec124aa3830036c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:45:24 +0000 Subject: [PATCH 09/13] chore(deps-dev): bump mocha from 10.3.0 to 10.4.0 Bumps [mocha](https://github.com/mochajs/mocha) from 10.3.0 to 10.4.0. - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v10.3.0...v10.4.0) --- updated-dependencies: - dependency-name: mocha dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53c54792d4d..a0dbe8f7e8b 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "markdownlint-cli2": "^0.12.1", "marked": "4.3.0", "mkdirp": "^3.0.1", - "mocha": "10.3.0", + "mocha": "10.4.0", "moment": "2.x", "mongodb-memory-server": "8.15.1", "ncp": "^2.0.0", From ebf2a481be64d7215fb0f4f184dec5e703cb097e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:46:31 +0000 Subject: [PATCH 10/13] chore(deps-dev): bump @babel/core from 7.24.0 to 7.24.3 Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.24.0 to 7.24.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.3/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53c54792d4d..0ac1941663e 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "sift": "16.0.1" }, "devDependencies": { - "@babel/core": "7.24.0", + "@babel/core": "7.24.3", "@babel/preset-env": "7.24.0", "@typescript-eslint/eslint-plugin": "^6.2.1", "@typescript-eslint/parser": "^6.2.1", From 9b8f1302b1b5c2c335514be53d73e29ab5333d28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:51:00 +0000 Subject: [PATCH 11/13] chore(deps-dev): bump @babel/preset-env from 7.24.0 to 7.24.3 Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.24.0 to 7.24.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.3/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0ac1941663e..d466492e6b5 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ }, "devDependencies": { "@babel/core": "7.24.3", - "@babel/preset-env": "7.24.0", + "@babel/preset-env": "7.24.3", "@typescript-eslint/eslint-plugin": "^6.2.1", "@typescript-eslint/parser": "^6.2.1", "acquit": "1.3.0", From 4d92575664481df5f0c06e9a5f2cbaae89b5d174 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 12:26:10 +0000 Subject: [PATCH 12/13] chore(deps-dev): bump typescript from 5.3.3 to 5.4.3 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.3...v5.4.3) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ed99aca7719..be55a98664a 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "sinon": "17.0.1", "stream-browserify": "3.0.0", "tsd": "0.30.7", - "typescript": "5.3.3", + "typescript": "5.4.3", "uuid": "9.0.1", "webpack": "5.91.0" }, From a718e3d426b462b7fdd9fec9f33eaf52d330147f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 12:30:36 +0000 Subject: [PATCH 13/13] chore(deps-dev): bump tsd from 0.30.7 to 0.31.0 Bumps [tsd](https://github.com/tsdjs/tsd) from 0.30.7 to 0.31.0. - [Release notes](https://github.com/tsdjs/tsd/releases) - [Commits](https://github.com/tsdjs/tsd/compare/v0.30.7...v0.31.0) --- updated-dependencies: - dependency-name: tsd dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6fc84dcd740..3a44e6d1962 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "q": "1.5.1", "sinon": "17.0.1", "stream-browserify": "3.0.0", - "tsd": "0.30.7", + "tsd": "0.31.0", "typescript": "5.4.3", "uuid": "9.0.1", "webpack": "5.91.0"