|
| 1 | +# Releasing jQuery |
| 2 | + |
| 3 | +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. |
| 4 | + |
| 5 | +## Prerequisites |
| 6 | + |
| 7 | +Before you can release a new version of jQuery, you need to have the following tools installed: |
| 8 | + |
| 9 | +- [Node.js](https://nodejs.org/) (latest LTS version) |
| 10 | +- [npm](https://www.npmjs.com/) (comes with Node.js) |
| 11 | +- [git](https://git-scm.com/) |
| 12 | + |
| 13 | +## Setup |
| 14 | + |
| 15 | +1. Clone the jQuery repo: |
| 16 | + |
| 17 | + ```sh |
| 18 | + git clone [email protected]:jquery/jquery.git |
| 19 | + cd jquery |
| 20 | + ``` |
| 21 | + |
| 22 | +1. Install the dependencies: |
| 23 | + |
| 24 | + ```sh |
| 25 | + npm install |
| 26 | + ``` |
| 27 | + |
| 28 | +1. Log into npm with a user that has access to the `jquery` package. |
| 29 | + |
| 30 | + ```sh |
| 31 | + npm login |
| 32 | + ``` |
| 33 | + |
| 34 | +The release script will not run if not logged in. |
| 35 | + |
| 36 | +1. Set `JQUERY_GITHUB_TOKEN` in the shell environment that will be used to run `npm run release`. The token can be [created on GitHub](https://github.com/settings/tokens/new?scopes=repo&description=release-it) and only needs the `repo` scope. This token is used to publish GitHub release notes and generate a list of contributors for the blog post. |
| 37 | + |
| 38 | + ```sh |
| 39 | + export JQUERY_GITHUB_TOKEN=... |
| 40 | + ``` |
| 41 | + |
| 42 | +The release script will not run without this token. |
| 43 | + |
| 44 | +## Release Process |
| 45 | + |
| 46 | +1. Ensure all milestoned issues/PRs are closed, or reassign to a new milestone. |
| 47 | +1. Verify all tests are passing in [CI](https://github.com/jquery/jquery/actions). |
| 48 | +1. Run any release-only tests, such as those in the [`test/integration`](../../test/integration/) folder. |
| 49 | +1. Ensure AUTHORS.txt file is up to date (this will be verified by the release script). |
| 50 | + |
| 51 | + - Use `npm run authors:update` to update. |
| 52 | + |
| 53 | +1. Create draft blog post on blog.jquery.com; save the link before publishing. The link is required to run the release. |
| 54 | + |
| 55 | + - Highlight major changes and reason for release. |
| 56 | + - Add contributor list generated in the below release script. |
| 57 | + - Add HTML from the `changelog.html` generated in the below release script. |
| 58 | + - Use HTML from the `contributors.html` generated in the below release script in the "Thanks" section. |
| 59 | + |
| 60 | +1. Run a dry run of the release script: |
| 61 | + |
| 62 | + ```sh |
| 63 | + BLOG_URL=https://blog.jquery.com/... npm run release -- -d |
| 64 | + ``` |
| 65 | + |
| 66 | +1. If the dry run is successful, run the release script: |
| 67 | + |
| 68 | + ```sh |
| 69 | + BLOG_URL=https://blog.jquery.com/... npm run release |
| 70 | + ``` |
| 71 | + |
| 72 | + This 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. |
| 73 | + |
| 74 | + 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. |
| 75 | + |
| 76 | + Finally, it will run the post-release script, which will ask you to confirm the files prepared in `tmp/release/cdn` and `tmp/release/dist` are 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. |
| 77 | + |
| 78 | + For a pre-release, run: |
| 79 | + |
| 80 | + ```sh |
| 81 | + BLOG_URL=https://blog.jquery.com/... npm run release -- --preRelease=beta |
| 82 | + ``` |
| 83 | + |
| 84 | + `preRelease` can also be set to `alpha` or `rc`. |
| 85 | + |
| 86 | + **Note**: `preReleaseBase` is set in the npm script to `1` to ensure any pre-releases start at `.1` instead of `.0`. This does not interfere with stable releases. |
| 87 | + |
| 88 | +1. Once the release is complete, publish the blog post. |
| 89 | + |
| 90 | +## Stable releases |
| 91 | + |
| 92 | +Stable releases have a few more steps: |
| 93 | + |
| 94 | +1. Close the milestone matching the current release: https://github.com/jquery/jquery/milestones. Ensure there is a new milestone for the next release. |
| 95 | +1. Update jQuery on https://github.com/jquery/jquery-wp-content. |
| 96 | +1. Update jQuery on https://github.com/jquery/blog.jquery.com-theme. |
| 97 | +1. Update latest jQuery version for [healthyweb.org](https://github.com/jquery/healthyweb.org/blob/main/wrangler.toml). |
| 98 | +1. Update the shipping version on [jquery.com home page](https://github.com/jquery/jquery.com). |
| 99 | + |
| 100 | + ```sh |
| 101 | + git pull jquery/jquery.com |
| 102 | + # Edit index.html and download.md |
| 103 | + git commit |
| 104 | + npm version patch |
| 105 | + git push origin main --tags |
| 106 | + ``` |
| 107 | + |
| 108 | +1. Update the version used in [jQuery docs demos](https://github.com/jquery/api.jquery.com/blob/main/entries2html.xsl). |
| 109 | + |
| 110 | +1. Email archives to CDNs. |
| 111 | + |
| 112 | +| CDN | Emails | Include | |
| 113 | +| --- | ------ | ------- | |
| 114 | +| Google | hosted-libraries@google | `tmp/archives/googlecdn-jquery-*.zip` | |
| 115 | +| Microsoft | damian.edwards@microsoft, Chris.Sfanos@microsoft | `tmp/archives/mscdn-jquery-*.zip` | |
| 116 | +| CDNJS | ryan@ryankirkman, thomasalwyndavis@gmail | Blog post link | |
0 commit comments