-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: alias deprecated field to deprecation info struct #371
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #371 +/- ##
=======================================
Coverage ? 76.46%
=======================================
Files ? 32
Lines ? 6726
Branches ? 0
=======================================
Hits ? 5143
Misses ? 1176
Partials ? 407 ☔ View full report in Codecov by Sentry. |
Why do we keep |
e869fe1
to
7bad12d
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release-1.x release-1.x
# Navigate to the new working tree
cd .worktrees/backport-release-1.x
# Create a new branch
git switch --create backport-371-to-release-1.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e961be9615452fc63c4c71e6561d4e86f8e8e95a
# Push it to GitHub
git push --set-upstream origin backport-371-to-release-1.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release-1.x Then, create a pull request where the |
We cannot back port this change because the goverter change was not implemented in v1, please ignore this warning. |
🤖 I have created a release *beep* *boop* --- ## [2.6.0](v2.5.1...v2.6.0) (2024-01-09) ### Features * alias deprecated field to deprecation info struct ([#371](#371)) ([e961be9](e961be9)) * **instrumentation:** allow passing in any prometheus.Registerer ([#369](#369)) ([0821c07](0821c07)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Try to mitigate the removal of the deprecated field from the API, by linking the
deprecated
field value to the deprecation info object.