Changes: * Run `pre-release.sh` & `post-release.sh` scripts directly; make them executable * Fix the hashbang to specify the default bash installation; note: `/bin/bash` would be a wrong choice as that would use an ancient 3.x version on macOS * Make sure Bash 5 or newer is used * Run `npm publish --tag beta` when a pre-release is being published * Fix the `repository.url` field in `package.json` as reported by `npm publish` * Fix a few issues reported by shellcheck Closes gh-5697
Releasing jQuery
This document describes the process for releasing a new version of jQuery. It is intended for jQuery team members and collaborators who have been granted permission to release new versions.
Prerequisites
Before you can release a new version of jQuery, you need to have the following tools installed:
Setup
-
Clone the jQuery repo:
git clone git@github.com:jquery/jquery.git cd jquery -
Install the dependencies:
npm install -
Log into npm with a user that has access to the
jquerypackage.npm login
The release script will not run if not logged in.
-
Set
JQUERY_GITHUB_TOKENin the shell environment that will be used to runnpm run release. The token can be created on GitHub and only needs thereposcope. This token is used to publish GitHub release notes and generate a list of contributors for the blog post.export JQUERY_GITHUB_TOKEN=...
The release script will not run without this token.
Release Process
-
Ensure all milestoned issues/PRs are closed, or reassign to a new milestone.
-
Verify all tests are passing in CI.
-
Run any release-only tests, such as those in the
test/integrationfolder. -
Ensure AUTHORS.txt file is up to date (this will be verified by the release script).
- Use
npm run authors:updateto update.
- Use
-
Create draft blog post on blog.jquery.com; save the link before publishing. The link is required to run the release.
- Highlight major changes and reason for release.
- Add HTML from the
changelog.htmlgenerated in the below release script. - Use HTML from the
contributors.htmlgenerated in the below release script in the "Thanks" section.
-
Run a dry run of the release script:
BLOG_URL=https://blog.jquery.com/... npm run release -- -d -
If the dry run is successful, run the release script:
BLOG_URL=https://blog.jquery.com/... npm run releaseThis will run the pre-release script, which includes checking authors, running tests, running the build, and cloning the CDN and jquery-dist repos in the
tmp/folder.It will then walk you through the rest of the release process: creating the tag, publishing to npm, publishing release notes on GitHub, and pushing the updated branch and new tag to the jQuery repo.
Finally, it will run the post-release script, which will ask you to confirm the files prepared in
tmp/release/cdnandtmp/release/distare correct before pushing to the respective repos. It will also prepare a commit for the jQuery repo to remove the release files and update the AUTHORS.txt URL in the package.json. It will ask for confirmation before pushing that commit as well.For a pre-release, run:
BLOG_URL=https://blog.jquery.com/... npm run release -- --preRelease=betapreReleasecan also be set toalphaorrc.Note:
preReleaseBaseis set in the npm script to1to ensure any pre-releases start at.1instead of.0. This does not interfere with stable releases. -
Run the post-release script:
./build/release/post-release.sh $VERSION $BLOG_URLThis will push the release files to the CDN and jquery-dist repos, and push the commit to the jQuery repo to remove the release files and update the AUTHORS.txt URL in the package.json.
-
Once the release is complete, publish the blog post.
Stable releases
Stable releases have a few more steps:
-
Close the milestone matching the current release: https://github.com/jquery/jquery/milestones. Ensure there is a new milestone for the next release.
-
Update jQuery on https://github.com/jquery/jquery-wp-content.
-
Update jQuery on https://github.com/jquery/blog.jquery.com-theme.
-
Update latest jQuery version for healthyweb.org.
-
Update the shipping version on jquery.com home page.
git pull jquery/jquery.com # Edit index.html and download.md git commit npm version patch git push origin main --tags -
Update the version used in jQuery docs demos.
-
Email archives to CDNs.
| CDN | Emails | Include |
|---|---|---|
| hosted-libraries@google | tmp/archives/googlecdn-jquery-*.zip |
|
| Microsoft | damian.edwards@microsoft, Chris.Sfanos@microsoft | tmp/archives/mscdn-jquery-*.zip |
| CDNJS | ryan@ryankirkman, thomasalwyndavis@gmail | Blog post link |