| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Unless there are no changes, we create releases for google-cloud-cpp at the beginning of each month, usually on the first business day. We also create releases if there is a major announcement or change to the status of one of the libraries (like reaching the "Alpha" or "Beta" milestone).
The intended audience of this document are developers in the google-cloud-cpp project that need to create a new release. We expect the reader to be familiar the project itself, git, GitHub, and semantic versioning.
To create a new release you need to perform some maintenance tasks, these are enumerated below.
Before beginning the release process, verify all CI builds are passing on the main branch. This is displayed in the GitHub page for the project.
Set the pre-release version (PROJECT_VERSION_PRE_RELEASE) to the empty string.
set(PROJECT_VERSION_PRE_RELEASE "")
To update the CHANGELOG.md file, first change the "TBD" placeholder in the latest release header to the current YYYY-MM.
Then run the script
release/changes.shto output a summary of the potentially interesting changes since the previous release. Paste that output below the release header updated above, and manually tweak as needed.
In general, do not create the release branch before this PR is merged. We want to create the release from a stable point in the default branch (main), and we want this point to include the updated release notes and API baselines. There may be exceptions to this guideline, you are encouraged to use your own judgment.
We next need to create the release tag, the release branch, and create the release in the GitHub UI. We use a script (release/release.sh) to automate said steps.
No PR is needed for this step.
First run the following command -- which will NOT make any changes to the repo -- and verify that the output and version numbers look correct.
release/release.sh googleapis/google-cloud-cppIf the output from the previous command looks OK, rerun the command with the -f flag, which will make the changes and push them to the remote repo.
release/release.sh -f googleapis/google-cloud-cppNOTE: This script can be run from any directory. It operates only on the specified repo.
Review the new release in the GitHub web UI (the link to the pre-release will be output from the release.sh script that was run in the previous step). If everything looks OK:
The publish-docs build should start automatically when you create the release branch. This build will upload the docs for the new release to the following URLs:
It can take up to an hour after the build finishes for the new docs to show up at the above URLs. You can watch the status of the build at https://console.cloud.google.com/cloud-build/builds;region=us-east1?project=cloud-cpp-testing-resources&query=tags%3D%22publish-docs%22
Working in your fork of google-cloud-cpp: bump the version numbers to the next version, i.e., one version past the release you just did above. Then send the PR for review against main. You need to:
NOTE: The Renovate bot will automatically update the Bazel deps in the quickstart WORKSPACE.bazel files after it sees the new release published. Watch for this PR to come through, kick off the builds, approve, and merge it.
We use the GitHub Branch Settings to protect the release branches against accidental mistakes. From time to time changes in the release branch naming conventions may require you to change these settings. Please note that we use more strict settings for release branches than for main, in particular:
We require at least one review, but stale reviews are dismissed.
The Require status checks to pass before merging option is set. This prevents merges into the release branches that break the build.
The Include administrators checkbox is turned on, we want to stop ourselves from making mistakes.
Turn on the Restrict who can push to matching branches. Only Google team members should be pushing to release branches.
Nudge coryan@ to update our vcpkg port. These updates are not difficult, but contributing to this repository requires SVP approval. If you want, you can seek approval to make such updates yourself, just keep in mind that this may take several weeks.
In your development fork:
git branch chore-prepare-for-${PATCH}-release upstream/${BRANCH}
git checkout chore-prepare-for-${PATCH}-releasegit commit -m"chore: prepare for ${PATCH}"ci/cloudbuild/convert-to-branch-triggers.shfor trigger in $(git ls-files -- ci/cloudbuild/triggers/*.yaml ); do
ci/cloudbuild/trigger.sh --import "${trigger}";
donegit commit -m"Updated GCB triggers" cici/cloudbuild/build.sh -t check-api-prgit commit -m"Update API/ABI baseline" cigit push --set-upstream origin "$(git branch --show-current)"git fetch upstream
git branch my-patch upstream/v1.17.x
git checkout my-patch| Back | FazBrowse Home | New Git URL |