This document is a work-in-progress which aims to describe various tips for developing and working with this repository itself. It is not intended as a guide on how to use the project within another project, which should be covered elsewhere in the project's documentation.
For now, this will be a collection of tips and tricks for the maintainers of the project.
Depending on the size of the release, it may be ideal to have a staging PR which gathers the various features we're intending on releasing into the version. This can be a great way for the community to understand the scope of a release and a clear way for maintainers to publicize it and gather feedback.
-
Create a branch off
main
namedrelease-X.Y.Z
, whereX.Y.Z
is the intended release. -
Edit the
CHANGELOG.md
, removing thevNEXT
section entirely. This section will remain onmain
and be resolved during the merge. -
Add a new section for
### vX.Y.Z
with a bullet indicating that something is coming soon:### vX.Y.Z - Nothing yet! Stay tuned.
-
Commit this change so GitHub will allow a PR to be opened against
main
with a notable change. A suggested commit message isPrepare CHANGELOG.md for upcoming vX.Y.Z release.
-
Push the branch to GitHub
-
On GitHub, open a PR from the new release branch which targets
main
. For the title of the PR, use "Release X.Y.Z". For the body, use the contents of the template in the.github/APOLLO_RELEASE_TEMPLATE.md
file in this repository. Adjust the body as you see necessary.
Ensure that the CHANGELOG.md is up to date prior to bumping the version. Additionally, it's best to go ahead and predict what the version is going to be published as in the next step and commit that in the CHANGELOG. This allows the Git tags that will be created in Step 2 to include the changes.
To bump the version, use the release:version-bump
npm script.
Option 1: (Recommended) Bump all packages by the same version bump (e.g. patch, minor, prerelease, etc.).
Note: Be sure to replace
<version-bump>
in the following command with the appropriate version bump keyword
npm run release:version-bump -- <version-bump>
Option 2: Be prompted for each new version.
If no parameters are passed, a prompt will be displayed for each package asking for the new version.
npm run release:version-bump
Immediately after bumping the version, use the release:start-ci-publish
npm script to publish to npm.
Note: By default, publishing will be done to the
latest
tag on npm. To publish on a differentdist-tag
set theAPOLLO_DIST_TAG
environment variable. E.g. To publish to thealpha
tag instead oflatest
, the following command would beAPOLLO_DIST_TAG=alpha npm run release:start-ci-publish
.
npm run release:start-ci-publish
In the event that publishing via CI/CD is not possible, it may be done manually. Publishing manually should be avoided whenever possible.
- Log into
npm
with theapollo-bot
user.
The apollo-bot
user credentials are available to project owners, but generally used by CI/CD.
Logging in with the following command will use a different npm user configuration file at $HOME/.npmrc-apollo-bot
so as not to override personal login credentials which may already be used.
NPM_CONFIG_USERCONFIG="$HOME/.npmrc-apollo-bot" npm login
- Publish using
lerna
and theapollo-bot
credentials.
Note: By default, publishing will be done to the
latest
tag on npm. To publish on a differentdist-tag
include the--dist-tag
option below. E.g. To publish to thealpha
tag instead oflatest
, add--dist-tag=alpha
.
DEBUG=lerna NPM_CONFIG_USERCONFIG="$HOME/.npmrc-apollo-bot" npx lerna publish from-git
While it would be ideal to have this baked into the Git tag, it's not possible to do this in previous steps since we need to reference the commit hash that is created in Step 2's version bumping.
Therefore, after publishing, add an entry to the CHANGELOG that was published which references the "Release" commit in order to provide easier visibility into what was in that that release. It should be in the following format, where COMMIT_HASH
is replaced with the Git reference for the most Release
commmit found in git log
and should immediately follow the ### vX.Y.Z
header of the version just published:
> [See complete versioning details.](https://github.com/apollographql/apollo-server/commit/COMMIT_HASH)
The milestone for the release should be finalized. If it didn't have a concrete version as its name, it should be renamed to the version that was finally released.
Then, any remaining issues or PRs which did not land in this version should be moved to a newly-created milestone which reflects the newly intended release for them.
Finally, close (don't delete) the previous milestone once it is at 100% completion.