Skip to content

Commit

Permalink
chore(fixtures): use canary instead of latest (#10842)
Browse files Browse the repository at this point in the history
Follow up to #10832. Use `canary` instead of `latest` because we still
get security alerts until our merged changes are released. Moving to
`canary` will mean that these will be dismissed more quickly.
  • Loading branch information
Josh-Walker-GM authored Jun 18, 2024
1 parent d3babb5 commit 471fedb
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions __fixtures__/empty-project/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"dependencies": {
"@redwoodjs/api": "latest",
"@redwoodjs/graphql-server": "latest"
"@redwoodjs/api": "canary",
"@redwoodjs/graphql-server": "canary"
}
}
2 changes: 1 addition & 1 deletion __fixtures__/empty-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
]
},
"devDependencies": {
"@redwoodjs/core": "latest"
"@redwoodjs/core": "canary"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config",
Expand Down
6 changes: 3 additions & 3 deletions __fixtures__/empty-project/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
]
},
"dependencies": {
"@redwoodjs/forms": "latest",
"@redwoodjs/router": "latest",
"@redwoodjs/web": "latest",
"@redwoodjs/forms": "canary",
"@redwoodjs/router": "canary",
"@redwoodjs/web": "canary",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "api",
"version": "0.0.0",
"dependencies": {
"@redwoodjs/api": "latest"
"@redwoodjs/api": "canary"
}
}
2 changes: 1 addition & 1 deletion __fixtures__/example-todo-main-with-errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"web"
],
"devDependencies": {
"@redwoodjs/core": "latest"
"@redwoodjs/core": "canary"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
Expand Down
4 changes: 2 additions & 2 deletions __fixtures__/example-todo-main-with-errors/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"name": "web",
"version": "0.0.0",
"dependencies": {
"@redwoodjs/router": "latest",
"@redwoodjs/web": "latest",
"@redwoodjs/router": "canary",
"@redwoodjs/web": "canary",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
Expand Down
2 changes: 1 addition & 1 deletion __fixtures__/example-todo-main/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "api",
"version": "0.0.0",
"dependencies": {
"@redwoodjs/api": "latest"
"@redwoodjs/api": "canary"
}
}
2 changes: 1 addition & 1 deletion __fixtures__/example-todo-main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"../../packages/*"
],
"devDependencies": {
"@redwoodjs/core": "latest"
"@redwoodjs/core": "canary"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
Expand Down
4 changes: 2 additions & 2 deletions __fixtures__/example-todo-main/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"name": "web",
"version": "0.0.0",
"dependencies": {
"@redwoodjs/router": "latest",
"@redwoodjs/web": "latest",
"@redwoodjs/router": "canary",
"@redwoodjs/web": "canary",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down

0 comments on commit 471fedb

Please sign in to comment.