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-dev): bump @metamask/auto-changelog from 3.4.4 to 4.0.0 #2993

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ module.exports = {
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
plugins: ['prettier-plugin-packagejson'],
};
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint:dependencies": "yarn workspaces foreach --all --parallel --verbose run lint:dependencies && yarn dedupe --check",
"lint:eslint": "eslint . --cache --ext js,cjs,mjs,jsx,ts,mts,cts,tsx",
"lint:fix": "yarn workspaces foreach --all --parallel run lint:eslint --fix && yarn lint:misc --write && yarn lint:tsconfig && yarn constraints --fix && yarn dedupe",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' '**/*.html'",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' '**/*.html'",
"lint:tsconfig": "node scripts/verify-tsconfig.mjs",
"prepare-preview-builds": "./scripts/prepare-preview-builds.sh",
"publish-previews": "yarn workspaces foreach --all --parallel --verbose run publish:preview",
Expand Down Expand Up @@ -77,7 +77,7 @@
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/create-release-branch": "^3.0.1",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
Expand All @@ -95,12 +95,12 @@
"chromedriver": "^131.0.5",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"execa": "^5.1.1",
"favicons": "^7.1.2",
Expand All @@ -110,7 +110,7 @@
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"minimatch": "^7.4.1",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"rimraf": "^4.1.2",
"semver": "^7.5.4",
Expand Down
1 change: 1 addition & 0 deletions packages/create-snap/.depcheckrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
18 changes: 9 additions & 9 deletions packages/create-snap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"publish:package": "../../scripts/publish-package.sh",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test": "node --experimental-vm-modules $(yarn bin jest) --reporters=jest-silent-reporter",
Copy link
Member

Choose a reason for hiding this comment

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

Prettier v3's main entry point (which we use for resolveConfig) uses dynamic imports, so we need to either:

  • Run Jest with --experimental-vm-modules, or
  • Reimplement the config resolution logic ourselves.

"test:clean": "node --experimental-vm-modules $(yarn bin jest) --clearCache",
"test:post": "jest-it-up",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
"test:verbose": "node --experimental-vm-modules $(yarn bin jest) --verbose",
"test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
},
"dependencies": {
"@metamask/snaps-utils": "workspace:^",
Expand All @@ -66,7 +66,7 @@
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -82,18 +82,18 @@
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.2",
"jest-it-up": "^2.0.0",
"jest-silent-reporter": "^0.6.0",
"memfs": "^3.4.13",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"ts-node": "^10.9.1",
"tsc-watch": "^4.5.0",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/.depcheckrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
10 changes: 5 additions & 5 deletions packages/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!packages/**\" --ignore-path ../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!packages/**\" --ignore-path ../../.gitignore",
"since-latest-release": "../../scripts/since-latest-release.sh",
"start": "yarn workspaces foreach --worktree --parallel --verbose --interlaced --no-private --jobs unlimited run start",
"start:test": "yarn start",
Expand All @@ -45,7 +45,7 @@
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -54,15 +54,15 @@
"@typescript-eslint/parser": "^6.21.0",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest-silent-reporter": "^0.6.0",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/bip32/.depcheckrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
18 changes: 9 additions & 9 deletions packages/examples/packages/bip32/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
"test": "node --experimental-vm-modules $(yarn bin jest) --reporters=jest-silent-reporter",
"test:clean": "node --experimental-vm-modules $(yarn bin jest) --clearCache",
"test:verbose": "node --experimental-vm-modules $(yarn bin jest) --verbose",
"test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
},
"dependencies": {
"@metamask/key-tree": "^10.0.2",
Expand All @@ -52,7 +52,7 @@
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -66,16 +66,16 @@
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/bip44/.depcheckrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
18 changes: 9 additions & 9 deletions packages/examples/packages/bip44/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
"test": "node --experimental-vm-modules $(yarn bin jest) --reporters=jest-silent-reporter",
"test:clean": "node --experimental-vm-modules $(yarn bin jest) --clearCache",
"test:verbose": "node --experimental-vm-modules $(yarn bin jest) --verbose",
"test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
},
"dependencies": {
"@metamask/key-tree": "^10.0.2",
Expand All @@ -51,7 +51,7 @@
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -65,16 +65,16 @@
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
18 changes: 9 additions & 9 deletions packages/examples/packages/browserify-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
"test": "node --experimental-vm-modules $(yarn bin jest) --reporters=jest-silent-reporter",
"test:clean": "node --experimental-vm-modules $(yarn bin jest) --clearCache",
"test:verbose": "node --experimental-vm-modules $(yarn bin jest) --verbose",
"test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
},
"dependencies": {
"@metamask/snaps-sdk": "workspace:^"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -63,16 +63,16 @@
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/browserify/.depcheckrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
18 changes: 9 additions & 9 deletions packages/examples/packages/browserify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
"test": "node --experimental-vm-modules $(yarn bin jest) --reporters=jest-silent-reporter",
"test:clean": "node --experimental-vm-modules $(yarn bin jest) --clearCache",
"test:verbose": "node --experimental-vm-modules $(yarn bin jest) --verbose",
"test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
},
"dependencies": {
"@metamask/snaps-sdk": "workspace:^"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
Expand All @@ -62,16 +62,16 @@
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^2.8.8",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.2",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/*",
"eslint-config-*",
"eslint-plugin-*",
"jest",
"jest-silent-reporter",
"prettier-plugin-packagejson",
"ts-node",
Expand Down
Loading
Loading