|
| 1 | +# Release |
| 2 | + |
| 3 | +The Prometheus Go client library does not follow a strict release schedule. Releases are made based on necessity and the current state of the project. |
| 4 | + |
| 5 | +## Branch Management |
| 6 | + |
| 7 | +We use [Semantic Versioning](https://semver.org/). |
| 8 | + |
| 9 | +- Maintain separate `release-<major>.<minor>` branches |
| 10 | +- Branch protection enabled automatically for `release-*` branches |
| 11 | +- Bug fixes go to the latest release branch, then merge to main |
| 12 | +- Features and changes go to main branch |
| 13 | +- Non-latest minor release branches are maintained (e.g. bug and security fixes) on the best-effort basis |
| 14 | + |
| 15 | +## Pre-Release Preparations |
| 16 | + |
| 17 | +1. Review main branch state: |
| 18 | + - Expedite critical bug fixes |
| 19 | + - Don't rush on risky changes, consider them for the next release if not ready |
| 20 | + - Update dependencies via Dependabot PRs or manually if needed |
| 21 | + - Check for security alerts |
| 22 | + |
| 23 | +## Cutting a Minor Release |
| 24 | + |
| 25 | +1. Create release branch: |
| 26 | + |
| 27 | + ```bash |
| 28 | + git checkout -b release-<major>.<minor> main |
| 29 | + git push origin release-<major>.<minor> |
| 30 | + ``` |
| 31 | + |
| 32 | +2. Create a new branch on top of `release-<major>.<minor>`: |
| 33 | + |
| 34 | + ```bash |
| 35 | + git checkout -b <yourname>/cut-<major>.<minor>.0 release-<major>.<minor> |
| 36 | + ``` |
| 37 | + |
| 38 | +3. Update version and documentation: |
| 39 | + - Update `VERSION` file |
| 40 | + - Update `CHANGELOG.md` (user-impacting changes) |
| 41 | + - Each release documents the minimum required Go version |
| 42 | + - Order: [SECURITY], [CHANGE], [FEATURE], [ENHANCEMENT], [BUGFIX] |
| 43 | + - For RCs, append `-rc.0` |
| 44 | + |
| 45 | +4. Create PR and get review |
| 46 | + |
| 47 | +5. After merge, create tags: |
| 48 | + |
| 49 | + ```bash |
| 50 | + tag="v$(< VERSION)" |
| 51 | + git tag -s "${tag}" -m "${tag}" |
| 52 | + git push origin "${tag}" |
| 53 | + ``` |
| 54 | + |
| 55 | +6. For Release Candidates: |
| 56 | + - Create PR against [prometheus/prometheus](https://github.com/prometheus/prometheus) using RC version |
| 57 | + - Create PR against [kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) using RC version |
| 58 | + - Make sure the CI is green for the PRs |
| 59 | + - Allow 1-2 days for downstream testing |
| 60 | + - Fix any issues found before final release |
| 61 | + - Use `-rc.1`, `-rc.2` etc. for additional fixes |
| 62 | + - For RCs, ensure "pre-release" box is checked |
| 63 | + |
| 64 | +7. For Final Release: |
| 65 | + - Wait for CI completion |
| 66 | + - Click "Publish release"! |
| 67 | + |
| 68 | +8. Announce release: |
| 69 | + |
| 70 | + - Slack |
| 71 | + - x.com/BlueSky |
| 72 | + |
| 73 | +9. Merge release branch to main: |
| 74 | + |
| 75 | + ```bash |
| 76 | + git checkout main |
| 77 | + git merge --no-ff release-<major>.<minor> |
| 78 | + ``` |
| 79 | + |
| 80 | +## Cutting a Patch Release |
| 81 | + |
| 82 | +1. Create branch from release branch: |
| 83 | + |
| 84 | + ```bash |
| 85 | + git checkout -b <yourname>/cut-<major>.<minor>.<patch> release-<major>.<minor> |
| 86 | + ``` |
| 87 | + |
| 88 | +2. Apply fixes: |
| 89 | + - Commit the required fixes; avoid refactoring or otherwise risky changes (preferred) |
| 90 | + - Cherry-pick from main if fix was already merged there: `git cherry-pick <commit>` |
| 91 | + |
| 92 | +3. Follow steps 3-9 from minor release process |
| 93 | + |
| 94 | +## Handling Merge Conflicts |
| 95 | + |
| 96 | +If conflicts occur merging to main: |
| 97 | + |
| 98 | +1. Create branch: `<yourname>/resolve-conflicts` |
| 99 | +2. Fix conflicts there |
| 100 | +3. PR into main |
| 101 | +4. Leave release branch unchanged |
| 102 | + |
| 103 | +## Note on Versioning |
| 104 | + |
| 105 | +## Compatibility Guarantees |
| 106 | + |
| 107 | +### Supported Go Versions |
| 108 | + |
| 109 | +- Support provided only for the three most recent major Go releases |
| 110 | +- While the library may work with older Go versions, support and fixes are best-effort for those. |
| 111 | +- Each release documents the minimum required Go version |
| 112 | + |
| 113 | +### API Stability |
| 114 | + |
| 115 | +The Prometheus Go client library aims to maintain backward compatibility within minor versions, similar to [Go 1 compatibility promises](https://golang.org/doc/go1compat): |
| 116 | + |
| 117 | + |
| 118 | +## Minor Version Changes |
| 119 | +- API signatures are `stable` within a **minor** version |
| 120 | +- No breaking changes are introduced |
| 121 | +- Methods may be added, but not removed |
| 122 | + - Arguments may NOT be removed or added (unless varargs) |
| 123 | + - Return types may NOT be changed |
| 124 | +- Types may be modified or relocated |
| 125 | +- Default behaviors might be altered (unfortunately, this has happened in the past) |
| 126 | + |
| 127 | +## Major Version Changes |
| 128 | +- API signatures may change between **major** versions |
| 129 | +- Types may be modified or relocated |
| 130 | +- Default behaviors might be altered |
| 131 | +- Feature removal/deprecation can occur with minor version bump |
| 132 | + |
| 133 | +### Compatibility Testing |
| 134 | + |
| 135 | +Before each release: |
| 136 | + |
| 137 | +1. **Internal Testing**: |
| 138 | + - Full test suite must pass |
| 139 | + - Integration tests with latest Prometheus server |
| 140 | + - (optional) Benchmark comparisons with previous version |
| 141 | + > There is no facility for running benchmarks in CI, so this is best-effort. |
| 142 | +
|
| 143 | +2. **External Validation**: |
| 144 | + |
| 145 | +Test against bigger users, especially looking for broken tests or builds. This will give us awareness of a potential accidental breaking changes, or if there were intentional ones, the potential damage radius of them. |
| 146 | + |
| 147 | + - Testing with [prometheus/prometheus](https://github.com/prometheus/prometheus) `main` branch |
| 148 | + - Testing with [kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) `main` branch |
| 149 | + - Breaking changes must be documented in CHANGELOG.md |
| 150 | + |
| 151 | +### Version Policy |
| 152 | + |
| 153 | +- Bug fixes increment patch version (e.g., v0.9.1) |
| 154 | +- New features increment minor version (e.g., v0.10.0) |
| 155 | +- Breaking changes increment minor version with clear documentation |
| 156 | + |
| 157 | +### Deprecation Policy |
| 158 | + |
| 159 | +1. Features may be deprecated in any minor release |
| 160 | +2. Deprecated features: |
| 161 | + - Will be documented in CHANGELOG.md |
| 162 | + - Will emit warnings when used (when possible) |
| 163 | + |
0 commit comments