-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(repo): Change "@staging" tag to "@canary" * fix(repo): Fix linting of root script files * fix(repo): Fix accounts staging release script name * Update curvy-mails-rhyme.md * chore(*): Update package-lock.json
- Loading branch information
Showing
12 changed files
with
394 additions
and
521 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,6 @@ | ||
--- | ||
'@clerk/clerk-js': patch | ||
'@clerk/shared': patch | ||
--- | ||
|
||
Rename the @staging tag to @canary. Drop support for @next tag. |
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 |
---|---|---|
|
@@ -10,13 +10,13 @@ Every time a PR is merged into `main`, the changesets action parses all changese | |
|
||
To release a new stable version of all Clerk packages, find the "Version Packages" PR, verify the changes, and merge it. | ||
|
||
## Publishing staging package versions (`@staging`) | ||
## Publishing canary package versions (`@canary`) | ||
|
||
An automated staging release will be take place every time a PR gets merged into `main`. | ||
An automated canary release will be take place every time a PR gets merged into `main`. | ||
|
||
- Staging versions use the following format: `@clerk/[email protected]staging.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `staging` is a stable prerelease mame and `commit` is the id of the last commit in the branch. | ||
- Currently, staging version changes are _not_ committed to the repo and no git tags will be generated. Using this strategy, we avoid merge conflicts, allowing us to constantly deploy staging versions without switching the repo to a "prerelease" mode. | ||
- During a staging release, `@clerk/clerk-js` will also be released. If needed, use the `clerkJSVersion` prop to use a specific version, eg: `<ClerkProvider clerkJSVersion='4.1.1-staging.90012' />` | ||
- Staging versions use the following format: `@clerk/[email protected]canary.commit`, where `package` is the package name, `x`,`y`,`z` are the major, minor and patch versions respectively, `canary` is a stable prerelease mame and `commit` is the id of the last commit in the branch. | ||
- Currently, canary version changes are _not_ committed to the repo and no git tags will be generated. Using this strategy, we avoid merge conflicts, allowing us to constantly deploy canary versions without switching the repo to a "prerelease" mode. | ||
- During a canary release, `@clerk/clerk-js` will also be released. If needed, use the `clerkJSVersion` prop to use a specific version, eg: `<ClerkProvider clerkJSVersion='4.1.1-canary.90012' />` | ||
- A package will not be published if it's not affected by a changeset. | ||
|
||
## Publishing snapshot package versions (`@snapshot`) | ||
|
Oops, something went wrong.