Skip to content

chore(deps): pin dependencies #509

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ updates:
interval: "weekly"
ignore:
- dependency-name: "@types/vscode"
- dependency-name: "*"
update-types:
- version-update:semver-major
Copy link
Member

@matifali matifali May 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps we should also allow minor updates and reduce the frequency to once a month.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
82 changes: 41 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": "https://github.com/coder/vscode-coder",
"version": "1.9.0",
"engines": {
"vscode": "^1.73.0"
"vscode": "1.73.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure if we should pin VS Code, as it is now on version 1.100. @code-asher can help us here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah if we do this our extension will only run on VS Code 1.73.0.

},
"license": "MIT",
"bugs": {
Expand Down Expand Up @@ -281,51 +281,51 @@
"test:ci": "CI=true yarn test"
},
"devDependencies": {
"@types/eventsource": "^3.0.0",
"@types/glob": "^7.1.3",
"@types/node": "^22.14.1",
"@types/node-forge": "^1.3.11",
"@types/ua-parser-js": "^0.7.39",
"@types/vscode": "^1.73.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^2.21.1",
"bufferutil": "^4.0.9",
"@types/eventsource": "3.0.0",
"@types/glob": "7.1.3",
"@types/node": "22.14.1",
"@types/node-forge": "1.3.11",
"@types/ua-parser-js": "0.7.39",
"@types/vscode": "1.73.0",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.21.0",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "2.21.1",
"bufferutil": "4.0.9",
"coder": "https://github.com/coder/coder#main",
"dayjs": "^1.11.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^5.4.0",
"glob": "^10.4.2",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.4.5",
"utf-8-validate": "^6.0.5",
"vitest": "^0.34.6",
"vscode-test": "^1.5.0",
"webpack": "^5.99.6",
"webpack-cli": "^5.1.4"
"dayjs": "1.11.13",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-md": "1.0.19",
"eslint-plugin-prettier": "5.4.0",
"glob": "10.4.2",
"nyc": "17.1.0",
"prettier": "3.3.3",
"ts-loader": "9.5.1",
"tsc-watch": "6.2.1",
"typescript": "5.4.5",
"utf-8-validate": "6.0.5",
"vitest": "0.34.6",
"vscode-test": "1.5.0",
"webpack": "5.99.6",
"webpack-cli": "5.1.4"
},
"dependencies": {
"axios": "1.8.4",
"date-fns": "^3.6.0",
"eventsource": "^3.0.6",
"date-fns": "3.6.0",
"eventsource": "3.0.6",
"find-process": "https://github.com/coder/find-process#fix/sequoia-compat",
"jsonc-parser": "^3.3.1",
"memfs": "^4.17.1",
"node-forge": "^1.3.1",
"pretty-bytes": "^6.1.1",
"proxy-agent": "^6.4.0",
"semver": "^7.7.1",
"ua-parser-js": "^1.0.38",
"ws": "^8.18.2",
"zod": "^3.24.3"
"jsonc-parser": "3.3.1",
"memfs": "4.17.1",
"node-forge": "1.3.1",
"pretty-bytes": "6.1.1",
"proxy-agent": "6.4.0",
"semver": "7.7.1",
"ua-parser-js": "1.0.38",
"ws": "8.18.2",
"zod": "3.24.3"
},
"resolutions": {
"semver": "7.7.1",
Expand Down
Loading