Merged
Conversation
jaydeluca
reviewed
Feb 19, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the release workflow to properly track and use the prior version during post-release updates, and cleans up malformed API diff files that were incorrectly generated in previous releases. The changes enable the automated apidiff generation to correctly compare the current release against the prior release version.
Changes:
- Add
prior-versionoutput to the release workflow to track the previous release version - Clean up incorrectly formatted API diff files (with
vs_/pattern) from releases 1.51.0, 1.52.0, and 1.53.0 - Add properly formatted API diff files showing comparisons between sequential versions
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/release.yml | Adds prior-version output to track previous version for apidiff generation; contains a critical typo on line 267 |
| docs/apidiffs/1.53.0_vs_1.52.0/opentelemetry-aws-xray.txt | Adds correctly formatted apidiff file showing no changes between versions |
| docs/apidiffs/1.53.0_vs_/opentelemetry-aws-xray.txt | Removes malformed apidiff file with incomplete version comparison |
| docs/apidiffs/1.52.0_vs_1.51.0/opentelemetry-aws-xray.txt | Adds correctly formatted apidiff file showing no changes between versions |
| docs/apidiffs/1.52.0_vs_/opentelemetry-aws-xray.txt | Removes malformed apidiff file with incomplete version comparison |
| docs/apidiffs/1.51.0_vs_1.50.0/opentelemetry-aws-xray.txt | Cleans up malformed entries and keeps only the actual API changes from 1.51.0 |
jaydeluca
approved these changes
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
And fix up apidiffs from past post-release updates.
Supersedes #2638