From 266652465b6b94a986556c3646ee4cba59b565c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 09:45:07 +0000 Subject: [PATCH 01/12] chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /vscode Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- vscode/package-lock.json | 10 +++++----- vscode/package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/vscode/package-lock.json b/vscode/package-lock.json index 1895c60e8a..dda1c96a70 100644 --- a/vscode/package-lock.json +++ b/vscode/package-lock.json @@ -19,7 +19,7 @@ "eslint": "^9.39.4", "glob": "^13.0.6", "typemoq": "^2.1.0", - "typescript": "^5.9.3" + "typescript": "^6.0.3" } }, "microsoft-kiota": { @@ -9577,9 +9577,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -10239,7 +10239,7 @@ "webpack-cli": "^7.0.2" }, "engines": { - "vscode": "^1.115.0" + "vscode": "^1.116.0" } }, "packages/microsoft-kiota/node_modules/@types/sinon": { diff --git a/vscode/package.json b/vscode/package.json index 41be9e56e4..10feaecc95 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -30,7 +30,7 @@ "eslint": "^9.39.4", "glob": "^13.0.6", "typemoq": "^2.1.0", - "typescript": "^5.9.3" + "typescript": "^6.0.3" }, "workspaces": [ "packages/npm-package", From acfd6710eede5f08d2335613a803df3dcc64ea94 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 11:21:34 +0000 Subject: [PATCH 02/12] fix: update moduleResolution to non-deprecated values for TypeScript 6.0 Agent-Logs-Url: https://github.com/microsoft/kiota/sessions/6736e036-77ef-4e65-aaa2-e7e857dc2bdd Co-authored-by: baywet <7905502+baywet@users.noreply.github.com> --- vscode/packages/microsoft-kiota/tsconfig.json | 3 ++- vscode/packages/npm-package/tsconfig.cjs.json | 3 ++- vscode/packages/npm-package/tsconfig.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/vscode/packages/microsoft-kiota/tsconfig.json b/vscode/packages/microsoft-kiota/tsconfig.json index a0617281cc..0acb90f2ba 100644 --- a/vscode/packages/microsoft-kiota/tsconfig.json +++ b/vscode/packages/microsoft-kiota/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "forceConsistentCasingInFileNames": true, - "module": "CommonJS", + "module": "Node16", "target": "ES2020", "lib": [ "ES2020" @@ -14,6 +14,7 @@ "types": [ "node", ], + "moduleResolution": "node16", "skipLibCheck": true, "paths": { "glob": [ diff --git a/vscode/packages/npm-package/tsconfig.cjs.json b/vscode/packages/npm-package/tsconfig.cjs.json index cc9752b01d..95d153c77c 100644 --- a/vscode/packages/npm-package/tsconfig.cjs.json +++ b/vscode/packages/npm-package/tsconfig.cjs.json @@ -2,7 +2,8 @@ "extends": "./tsconfig.json", "compilerOptions": { "outDir": "./dist/cjs", - "module": "CommonJS", + "module": "Node16", + "moduleResolution": "node16", "declaration": true, "declarationDir": "./dist/cjs/types" } diff --git a/vscode/packages/npm-package/tsconfig.json b/vscode/packages/npm-package/tsconfig.json index 9f89f94649..30f92e7930 100644 --- a/vscode/packages/npm-package/tsconfig.json +++ b/vscode/packages/npm-package/tsconfig.json @@ -9,7 +9,7 @@ "node", "jest" ], - "moduleResolution": "node", + "moduleResolution": "bundler", "target": "ESNext", "lib": [ "ESNext" From dc5adca265c0ec489409deb423a49d7e1fb53ed0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 12:29:45 +0000 Subject: [PATCH 03/12] fix: add rootDir to microsoft-kiota tsconfig.json to resolve TS5011 Agent-Logs-Url: https://github.com/microsoft/kiota/sessions/c618249e-678b-4d84-8280-278511fcbda7 Co-authored-by: baywet <7905502+baywet@users.noreply.github.com> --- vscode/packages/microsoft-kiota/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/vscode/packages/microsoft-kiota/tsconfig.json b/vscode/packages/microsoft-kiota/tsconfig.json index 0acb90f2ba..8456b03cd0 100644 --- a/vscode/packages/microsoft-kiota/tsconfig.json +++ b/vscode/packages/microsoft-kiota/tsconfig.json @@ -15,6 +15,7 @@ "node", ], "moduleResolution": "node16", + "rootDir": "./src", "skipLibCheck": true, "paths": { "glob": [ From 68d2da553e59e9e1dc080e4a573fdb4a0a7f1bf1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 08:40:03 +0000 Subject: [PATCH 04/12] chore(deps): bump the kiota-dependencies group across 2 directories with 1 update Bumps the kiota-dependencies group with 1 update in the /it/go directory: [github.com/microsoft/kiota-http-go](https://github.com/microsoft/kiota-http-go). Bumps the kiota-dependencies group with 1 update in the /it/go/basic directory: [github.com/microsoft/kiota-http-go](https://github.com/microsoft/kiota-http-go). Updates `github.com/microsoft/kiota-http-go` from 1.5.5 to 1.5.6 - [Release notes](https://github.com/microsoft/kiota-http-go/releases) - [Changelog](https://github.com/microsoft/kiota-http-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-http-go/compare/v1.5.5...v1.5.6) Updates `github.com/microsoft/kiota-http-go` from 1.5.5 to 1.5.6 - [Release notes](https://github.com/microsoft/kiota-http-go/releases) - [Changelog](https://github.com/microsoft/kiota-http-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-http-go/compare/v1.5.5...v1.5.6) Updates `github.com/microsoft/kiota-http-go` from 1.5.5 to 1.5.6 - [Release notes](https://github.com/microsoft/kiota-http-go/releases) - [Changelog](https://github.com/microsoft/kiota-http-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-http-go/compare/v1.5.5...v1.5.6) Updates `github.com/microsoft/kiota-http-go` from 1.5.5 to 1.5.6 - [Release notes](https://github.com/microsoft/kiota-http-go/releases) - [Changelog](https://github.com/microsoft/kiota-http-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-http-go/compare/v1.5.5...v1.5.6) --- updated-dependencies: - dependency-name: github.com/microsoft/kiota-http-go dependency-version: 1.5.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: github.com/microsoft/kiota-http-go dependency-version: 1.5.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- it/go/basic/go.mod | 12 ++++-------- it/go/basic/go.sum | 24 ++++++++---------------- it/go/go.mod | 8 ++++---- it/go/go.sum | 16 ++++++++-------- 4 files changed, 24 insertions(+), 36 deletions(-) diff --git a/it/go/basic/go.mod b/it/go/basic/go.mod index 09a2dc99ef..3afbf9567d 100644 --- a/it/go/basic/go.mod +++ b/it/go/basic/go.mod @@ -4,11 +4,7 @@ go 1.25.0 require ( github.com/microsoft/kiota-abstractions-go v1.9.4 - github.com/microsoft/kiota-http-go v1.5.5 - github.com/microsoft/kiota-serialization-form-go v1.1.3 - github.com/microsoft/kiota-serialization-json-go v1.1.2 - github.com/microsoft/kiota-serialization-multipart-go v1.1.2 - github.com/microsoft/kiota-serialization-text-go v1.1.3 + github.com/microsoft/kiota-http-go v1.5.6 ) require ( @@ -18,7 +14,7 @@ require ( github.com/google/uuid v1.6.0 // indirect github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.8 // indirect go.opentelemetry.io/auto/sdk v1.2.1 // indirect - go.opentelemetry.io/otel v1.42.0 // indirect - go.opentelemetry.io/otel/metric v1.42.0 // indirect - go.opentelemetry.io/otel/trace v1.42.0 // indirect + go.opentelemetry.io/otel v1.43.0 // indirect + go.opentelemetry.io/otel/metric v1.43.0 // indirect + go.opentelemetry.io/otel/trace v1.43.0 // indirect ) diff --git a/it/go/basic/go.sum b/it/go/basic/go.sum index c34451e73d..7c5e2b7680 100644 --- a/it/go/basic/go.sum +++ b/it/go/basic/go.sum @@ -13,16 +13,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/microsoft/kiota-abstractions-go v1.9.4 h1:VI3UVzSCQHHhRswe3jyaAQHUQWIFhUMp0z5mtZbTbcs= github.com/microsoft/kiota-abstractions-go v1.9.4/go.mod h1:f06pl3qSyvUHEfVNkiRpXPkafx7khZqQEb71hN/pmuU= -github.com/microsoft/kiota-http-go v1.5.5 h1:K+jC3lq0kejeUETmh/C7TSIV+vdLuw1LT7NPPoNCxAE= -github.com/microsoft/kiota-http-go v1.5.5/go.mod h1:L+5Ri+SzwELnUcNA0cpbFKp/pBbvypLh3Cd1PR6sjx0= -github.com/microsoft/kiota-serialization-form-go v1.1.3 h1:eUY8eHXPFe4ma8cAdx0ya3g4NPlZgbPT+GlFC3xcgGY= -github.com/microsoft/kiota-serialization-form-go v1.1.3/go.mod h1:RMO99zyik+NvZjdVcIeyu6ikyfuKhQtzq2RK0fWJJio= -github.com/microsoft/kiota-serialization-json-go v1.1.2 h1:eJrPWeQ665nbjO0gsHWJ0Bw6V/ZHHU1OfFPaYfRG39k= -github.com/microsoft/kiota-serialization-json-go v1.1.2/go.mod h1:deaGt7fjZarywyp7TOTiRsjfYiyWxwJJPQZytXwYQn8= -github.com/microsoft/kiota-serialization-multipart-go v1.1.2 h1:1pUyA1QgIeKslQwbk7/ox1TehjlCUUT3r1f8cNlkvn4= -github.com/microsoft/kiota-serialization-multipart-go v1.1.2/go.mod h1:j2K7ZyYErloDu7Kuuk993DsvfoP7LPWvAo7rfDpdPio= -github.com/microsoft/kiota-serialization-text-go v1.1.3 h1:8z7Cebn0YAAr++xswVgfdxZjnAZ4GOB9O7XP4+r5r/M= -github.com/microsoft/kiota-serialization-text-go v1.1.3/go.mod h1:NDSvz4A3QalGMjNboKKQI9wR+8k+ih8UuagNmzIRgTQ= +github.com/microsoft/kiota-http-go v1.5.6 h1:KBdk7sxWYXZnRRExLjIcNt4I7LoOfh/XQJWWid4zBKE= +github.com/microsoft/kiota-http-go v1.5.6/go.mod h1:bpJkXfBAcnmiXRg03GXdnb/vF3Sqk3+EgLvXXjmzzQM= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.8 h1:gMBdYMTHt2mmTdXW8YfvRjRUZ0GhyGV+IqSH9H15bGw= @@ -31,11 +23,11 @@ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= -go.opentelemetry.io/otel v1.42.0 h1:lSQGzTgVR3+sgJDAU/7/ZMjN9Z+vUip7leaqBKy4sho= -go.opentelemetry.io/otel v1.42.0/go.mod h1:lJNsdRMxCUIWuMlVJWzecSMuNjE7dOYyWlqOXWkdqCc= -go.opentelemetry.io/otel/metric v1.42.0 h1:2jXG+3oZLNXEPfNmnpxKDeZsFI5o4J+nz6xUlaFdF/4= -go.opentelemetry.io/otel/metric v1.42.0/go.mod h1:RlUN/7vTU7Ao/diDkEpQpnz3/92J9ko05BIwxYa2SSI= -go.opentelemetry.io/otel/trace v1.42.0 h1:OUCgIPt+mzOnaUTpOQcBiM/PLQ/Op7oq6g4LenLmOYY= -go.opentelemetry.io/otel/trace v1.42.0/go.mod h1:f3K9S+IFqnumBkKhRJMeaZeNk9epyhnCmQh/EysQCdc= +go.opentelemetry.io/otel v1.43.0 h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I= +go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0= +go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM= +go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY= +go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A= +go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/it/go/go.mod b/it/go/go.mod index e22db9d0f9..74c4dd86ac 100644 --- a/it/go/go.mod +++ b/it/go/go.mod @@ -6,7 +6,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1 github.com/microsoft/kiota-abstractions-go v1.9.4 github.com/microsoft/kiota-authentication-azure-go v1.3.1 - github.com/microsoft/kiota-http-go v1.5.5 + github.com/microsoft/kiota-http-go v1.5.6 github.com/microsoft/kiota-serialization-form-go v1.1.3 github.com/microsoft/kiota-serialization-json-go v1.1.2 github.com/microsoft/kiota-serialization-multipart-go v1.1.2 @@ -26,9 +26,9 @@ require ( github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.8 // indirect go.opentelemetry.io/auto/sdk v1.2.1 // indirect - go.opentelemetry.io/otel v1.42.0 // indirect - go.opentelemetry.io/otel/metric v1.42.0 // indirect - go.opentelemetry.io/otel/trace v1.42.0 // indirect + go.opentelemetry.io/otel v1.43.0 // indirect + go.opentelemetry.io/otel/metric v1.43.0 // indirect + go.opentelemetry.io/otel/trace v1.43.0 // indirect golang.org/x/crypto v0.49.0 // indirect golang.org/x/net v0.52.0 // indirect golang.org/x/sys v0.42.0 // indirect diff --git a/it/go/go.sum b/it/go/go.sum index 50d3cf3378..fca0d33675 100644 --- a/it/go/go.sum +++ b/it/go/go.sum @@ -33,8 +33,8 @@ github.com/microsoft/kiota-abstractions-go v1.9.4 h1:VI3UVzSCQHHhRswe3jyaAQHUQWI github.com/microsoft/kiota-abstractions-go v1.9.4/go.mod h1:f06pl3qSyvUHEfVNkiRpXPkafx7khZqQEb71hN/pmuU= github.com/microsoft/kiota-authentication-azure-go v1.3.1 h1:AGta92S6IL1E6ZMDb8YYB7NVNTIFUakbtLKUdY5RTuw= github.com/microsoft/kiota-authentication-azure-go v1.3.1/go.mod h1:26zylt2/KfKwEWZSnwHaMxaArpbyN/CuzkbotdYXF0g= -github.com/microsoft/kiota-http-go v1.5.5 h1:K+jC3lq0kejeUETmh/C7TSIV+vdLuw1LT7NPPoNCxAE= -github.com/microsoft/kiota-http-go v1.5.5/go.mod h1:L+5Ri+SzwELnUcNA0cpbFKp/pBbvypLh3Cd1PR6sjx0= +github.com/microsoft/kiota-http-go v1.5.6 h1:KBdk7sxWYXZnRRExLjIcNt4I7LoOfh/XQJWWid4zBKE= +github.com/microsoft/kiota-http-go v1.5.6/go.mod h1:bpJkXfBAcnmiXRg03GXdnb/vF3Sqk3+EgLvXXjmzzQM= github.com/microsoft/kiota-serialization-form-go v1.1.3 h1:eUY8eHXPFe4ma8cAdx0ya3g4NPlZgbPT+GlFC3xcgGY= github.com/microsoft/kiota-serialization-form-go v1.1.3/go.mod h1:RMO99zyik+NvZjdVcIeyu6ikyfuKhQtzq2RK0fWJJio= github.com/microsoft/kiota-serialization-json-go v1.1.2 h1:eJrPWeQ665nbjO0gsHWJ0Bw6V/ZHHU1OfFPaYfRG39k= @@ -53,12 +53,12 @@ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= -go.opentelemetry.io/otel v1.42.0 h1:lSQGzTgVR3+sgJDAU/7/ZMjN9Z+vUip7leaqBKy4sho= -go.opentelemetry.io/otel v1.42.0/go.mod h1:lJNsdRMxCUIWuMlVJWzecSMuNjE7dOYyWlqOXWkdqCc= -go.opentelemetry.io/otel/metric v1.42.0 h1:2jXG+3oZLNXEPfNmnpxKDeZsFI5o4J+nz6xUlaFdF/4= -go.opentelemetry.io/otel/metric v1.42.0/go.mod h1:RlUN/7vTU7Ao/diDkEpQpnz3/92J9ko05BIwxYa2SSI= -go.opentelemetry.io/otel/trace v1.42.0 h1:OUCgIPt+mzOnaUTpOQcBiM/PLQ/Op7oq6g4LenLmOYY= -go.opentelemetry.io/otel/trace v1.42.0/go.mod h1:f3K9S+IFqnumBkKhRJMeaZeNk9epyhnCmQh/EysQCdc= +go.opentelemetry.io/otel v1.43.0 h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I= +go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0= +go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM= +go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY= +go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A= +go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0= golang.org/x/crypto v0.49.0 h1:+Ng2ULVvLHnJ/ZFEq4KdcDd/cfjrrjjNSXNzxg0Y4U4= golang.org/x/crypto v0.49.0/go.mod h1:ErX4dUh2UM+CFYiXZRTcMpEcN8b/1gxEuv3nODoYtCA= golang.org/x/net v0.52.0 h1:He/TN1l0e4mmR3QqHMT2Xab3Aj3L9qjbhRm78/6jrW0= From 881e44205df79956e6fb928b8b18d93c7d927783 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 13:01:30 +0000 Subject: [PATCH 05/12] build(deps): bump vscode-jsonrpc from 8.2.1 to 9.0.0 in /vscode Bumps [vscode-jsonrpc](https://github.com/Microsoft/vscode-languageserver-node/tree/HEAD/jsonrpc) from 8.2.1 to 9.0.0. - [Release notes](https://github.com/Microsoft/vscode-languageserver-node/releases) - [Commits](https://github.com/Microsoft/vscode-languageserver-node/commits/release/client/9.0.0/jsonrpc) --- updated-dependencies: - dependency-name: vscode-jsonrpc dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- vscode/package-lock.json | 9 +++++---- vscode/packages/npm-package/package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/vscode/package-lock.json b/vscode/package-lock.json index 769dcb196f..c056c03787 100644 --- a/vscode/package-lock.json +++ b/vscode/package-lock.json @@ -7407,9 +7407,10 @@ } }, "node_modules/vscode-jsonrpc": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz", - "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-9.0.0.tgz", + "integrity": "sha512-+VvMmQPJhtvJ+8O+zu2JKIRiLxXF8NW7krWgyMGeOHrp4Cn23T5hc0v2LknNeopDOB70wghHAds7mKtcZ0I4Sg==", + "license": "MIT", "engines": { "node": ">=14.0.0" } @@ -7920,7 +7921,7 @@ "adm-zip": "^0.5.17", "original-fs": "^1.2.0", "uuid": "^14.0.1", - "vscode-jsonrpc": "^8.2.1" + "vscode-jsonrpc": "^9.0.0" }, "devDependencies": { "@types/adm-zip": "^0.5.8", diff --git a/vscode/packages/npm-package/package.json b/vscode/packages/npm-package/package.json index 8030baa49b..78687ce9aa 100644 --- a/vscode/packages/npm-package/package.json +++ b/vscode/packages/npm-package/package.json @@ -61,7 +61,7 @@ "adm-zip": "^0.5.17", "original-fs": "^1.2.0", "uuid": "^14.0.1", - "vscode-jsonrpc": "^8.2.1" + "vscode-jsonrpc": "^9.0.0" }, "devDependencies": { "@types/adm-zip": "^0.5.8", From df701522bdeb0d9565cc27ac127563250e280dd7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 08:32:19 +0000 Subject: [PATCH 06/12] build(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sonarcloud.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 7166fe3bd8..5712e80dfa 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -48,7 +48,7 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Cache SonarCloud packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar From 4e2b90ab382a73f3c7943df0f16d709c4a7ac452 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 10:58:01 +0000 Subject: [PATCH 07/12] build(deps-dev): bump mypy from 1.19.1 to 2.1.0 in /it/python Bumps [mypy](https://github.com/python/mypy) from 1.19.1 to 2.1.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.19.1...v2.1.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 2.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 273778cb27..8b68e630ac 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -30,7 +30,7 @@ lazy-object-proxy==1.12.0 ; python_version >= '3.7' mccabe==0.7.0 ; python_version >= '3.6' -mypy==1.19.1 +mypy==2.1.0 mypy-extensions==1.1.0 ; python_version >= '3.5' From 718bffe6f634901fd778f73995485de6851364aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:09:01 +0000 Subject: [PATCH 08/12] build(deps-dev): bump requests from 2.32.5 to 2.34.2 in /it/python Bumps [requests](https://github.com/psf/requests) from 2.32.5 to 2.34.2. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.32.5...v2.34.2) --- updated-dependencies: - dependency-name: requests dependency-version: 2.34.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 273778cb27..fbba636b1e 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -46,7 +46,7 @@ pytest==9.1.1 pytest-asyncio==1.4.0 -requests==2.32.5 ; python_version >= '3.7' +requests==2.34.2 ; python_version >= '3.7' toml==0.10.2 From e2f10affa364d3a42f82af7d2e65450ac5be7fd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:09:04 +0000 Subject: [PATCH 09/12] build(deps-dev): bump anyio from 4.12.1 to 4.14.0 in /it/python Bumps [anyio](https://github.com/agronholm/anyio) from 4.12.1 to 4.14.0. - [Release notes](https://github.com/agronholm/anyio/releases) - [Commits](https://github.com/agronholm/anyio/compare/4.12.1...4.14.0) --- updated-dependencies: - dependency-name: anyio dependency-version: 4.14.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 273778cb27..e152cd37a7 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -70,7 +70,7 @@ aiohttp==3.14.1 ; python_version >= '3.6' aiosignal==1.4.0 ; python_version >= '3.7' -anyio==4.12.1 ; python_version >= '3.7' +anyio==4.14.0 ; python_version >= '3.7' async-timeout==5.0.1 ; python_version >= '3.6' From ea0d7275a155dd7c780a0a02647628ce4b9a37e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:09:09 +0000 Subject: [PATCH 10/12] build(deps-dev): bump pycparser from 2.23 to 3.0 in /it/python Bumps [pycparser](https://github.com/eliben/pycparser) from 2.23 to 3.0. - [Release notes](https://github.com/eliben/pycparser/releases) - [Commits](https://github.com/eliben/pycparser/compare/release_v2.23...release_v3.00) --- updated-dependencies: - dependency-name: pycparser dependency-version: '3.0' dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 273778cb27..b0d5d04d8d 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -120,7 +120,7 @@ multidict==6.7.1 ; python_version >= '3.7' portalocker==3.1.1 ; python_version >= '3.5' and platform_system == 'Windows' -pycparser==2.23 +pycparser==3.0 pyjwt[crypto]==2.13.0 ; python_version >= '3.7' From 19a5a9778ad38355199b7c7d98d6050c69ec3b81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:09:10 +0000 Subject: [PATCH 11/12] build(deps-dev): bump zipp from 3.23.1 to 4.1.0 in /it/python Bumps [zipp](https://github.com/jaraco/zipp) from 3.23.1 to 4.1.0. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst) - [Commits](https://github.com/jaraco/zipp/compare/v3.23.1...v4.1.0) --- updated-dependencies: - dependency-name: zipp dependency-version: 4.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 273778cb27..13e32c5e71 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -64,7 +64,7 @@ wrapt==2.2.2 ; python_version < '3.11' yapf==0.43.0 -zipp==3.23.1 ; python_version >= '3.7' +zipp==4.1.0 ; python_version >= '3.7' aiohttp==3.14.1 ; python_version >= '3.6' From 276b573ad71ec8f2e17df7fe7739a8fac9046d18 Mon Sep 17 00:00:00 2001 From: "Peter Ombwa (from Dev Box)" Date: Wed, 24 Jun 2026 11:20:29 -0700 Subject: [PATCH 12/12] fix(deps): pin astroid to 4.0.4 for pylint 4.0.6 compatibility astroid 4.1.2 conflicts with pylint 4.0.6 (requires astroid>=4.0.2,<=4.1.dev0), breaking the IT pip install step. Pin to the latest compatible 4.0.x release. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- it/python/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it/python/requirements-dev.txt b/it/python/requirements-dev.txt index 987e55d2f8..718320d1cb 100644 --- a/it/python/requirements-dev.txt +++ b/it/python/requirements-dev.txt @@ -1,6 +1,6 @@ -i https://pypi.org/simple -astroid==4.1.2 ; python_full_version >= '3.7.2' +astroid==4.0.4 ; python_full_version >= '3.7.2' certifi==2026.6.17 ; python_version >= '3.6'