forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release @keystone/* packages (つ^◡^)つ (keystonejs#1813)
- Loading branch information
1 parent
4bd01e8
commit c7ba40e
Showing
341 changed files
with
1,026 additions
and
1,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
'@keystone/api-tests': major | ||
'@keystone/benchmarks': major | ||
'@keystone/demo-project-blog': major | ||
'@keystone/demo-project-meetup': major | ||
'@keystone/demo-project-todo': major | ||
'@keystone/access-control': major | ||
'@keystone/adapter-knex': major | ||
'@keystone/adapter-mongoose': major | ||
'@keystone/apollo-helpers': major | ||
'@keystone/app-admin-ui': major | ||
'@keystone/app-graphql-playground': major | ||
'@keystone/app-graphql': major | ||
'@keystone/app-next': major | ||
'@keystone/app-nuxt': major | ||
'@keystone/app-schema-router': major | ||
'@keystone/app-static': major | ||
'@keystone/auth-passport': major | ||
'@keystone/auth-password': major | ||
'@keystone/build-field-types': major | ||
'@keystone/email': major | ||
'@keystone/field-content': major | ||
'@keystone/field-views-loader': major | ||
'@keystone/fields-auto-increment': major | ||
'@keystone/fields-datetime-utc': major | ||
'@keystone/fields-markdown': major | ||
'@keystone/fields-mongoid': major | ||
'@keystone/fields-wysiwyg-tinymce': major | ||
'@keystone/fields': major | ||
'@keystone/file-adapters': major | ||
'@keystone/keystone': major | ||
'@keystone/list-plugins': major | ||
'@keystone/logger': major | ||
'@keystone/mongo-join-builder': major | ||
'@keystone/oembed-adapters': major | ||
'@keystone/session': major | ||
'@keystone/test-utils': major | ||
'@keystone/utils': major | ||
'@keystone/cypress-project-access-control': major | ||
'@keystone/cypress-project-basic': major | ||
'@keystone/cypress-project-client-validation': major | ||
'@keystone/cypress-project-login': major | ||
'@keystone/cypress-project-social-login': major | ||
'@keystone/website': major | ||
'@keystone/example-projects-blank': major | ||
'@keystone/example-projects-nuxt': major | ||
'@keystone/example-projects-starter': major | ||
'@keystone/example-projects-todo': major | ||
'create-keystone-app': minor | ||
--- | ||
|
||
- This is the first release of `@keystone/*` packages (previously `@keystone-alpha/*`). | ||
- All packages in the `@keystone-alpha` namespace are now available in the `@keystone` namespace, starting at version `5.0.0`. | ||
- To upgrade your project you must update any `@keystone-alpha/*` dependencies in `package.json` to point to `"@keystone/*": "^5.0.0"` and update any `require`/`import` statements in your code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,8 +61,8 @@ An example, if you generate a changeset that includes `adapter-mongoose` as a pa | |
|
||
```md | ||
--- | ||
'@keystone-alpha/adapter-mongoose': patch | ||
'@keystone-alpha/keystone': minor | ||
'@keystone/adapter-mongoose': patch | ||
'@keystone/keystone': minor | ||
--- | ||
|
||
A very useful description of the changes should be here. | ||
|
@@ -181,11 +181,11 @@ Now, for each release we want to backport to, we follow this process: | |
|
||
1. Checkout the tag of the release | ||
|
||
Let's say the package being patched is `@keystone-alpha/keystone`, then we | ||
Let's say the package being patched is `@keystone/keystone`, then we | ||
want to run: | ||
|
||
```sh | ||
git checkout -b backport-keystone-14.0.1 @keystone-alpha/[email protected] | ||
git checkout -b backport-keystone-14.0.1 @keystone/[email protected] | ||
``` | ||
|
||
2. Cherry pick the commit across. | ||
|
@@ -228,7 +228,7 @@ Now, for each release we want to backport to, we follow this process: | |
|
||
```sh | ||
(\ | ||
export PACKAGE_NAME=@keystone-alpha/keystone && \ | ||
export PACKAGE_NAME=@keystone/keystone && \ | ||
export OTP_CODE= && \ | ||
cd packages/keystone && \ | ||
yarn publish --tag=backport --otp=$OTP_CODE && \ | ||
|
Oops, something went wrong.