Skip to content

chore: bump semantic-release to 19.0 #753

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

Merged
merged 1 commit into from
Feb 18, 2022
Merged
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ checkout step for each job: &addWorkspace
default config for js: &js_defaults
<<: *defaults
docker:
- image: circleci/node:12
- image: circleci/node:14

default config for macOS: &macos_defaults
<<: *defaults
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
"@babel/preset-env": "^7.1.6",
"@expo/webpack-config": "^0.16.0",
"@react-native-community/eslint-config": "^3.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/react": "^17.0.0",
"@types/react-native": "^0.64.0",
"concurrently": "^6.4.0",
Expand All @@ -91,9 +91,12 @@
"react-native-web": "^0.17.0",
"react-native-windows": "^0.64.0",
"react-test-renderer": "17.0.1",
"semantic-release": "^17.4.6",
"semantic-release": "^19.0.0",
"typescript": "^4.5.0"
},
"resolutions": {
"npm/chalk": "^4.1.2"
Copy link
Member

Choose a reason for hiding this comment

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

is it dependency of semantic-release?

Copy link
Member Author

Choose a reason for hiding this comment

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

I had this issue in another repo where the latest version of semantic-release bumped npm, which has a dependency on chalk@*, and because chalk@5 is ESM only, the pipeline failed because npm can't import it.

},
"jest": {
"preset": "react-native",
"setupFiles": [
Expand Down
Loading