-
Notifications
You must be signed in to change notification settings - Fork 15
feat: release for trace ID propagation (PR #1097) #1152
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
Merged
Merged
Conversation
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
iuliag
approved these changes
Nov 20, 2025
HollywoodTonight
added a commit
to adobe/spacecat-audit-worker
that referenced
this pull request
Nov 20, 2025
Replace gitpkg temporary dependency with official release version. Update to @adobe/spacecat-shared-utils@^1.76.0 which includes: - Enhanced logWrapper with automatic trace ID inclusion - SQS message trace ID propagation - HTTP header trace ID support Note: package-lock.json will be updated once 1.76.0 is published. Depends on: adobe/spacecat-shared#1152
HollywoodTonight
added a commit
that referenced
this pull request
Nov 20, 2025
This commit triggers the release for trace ID propagation feature from PR #1097. Changes include: - Enhanced logWrapper to automatically include traceId in log messages - SQS message trace ID propagation via sendMessage/sqsEventAdapter - HTTP header trace ID extraction via x-trace-id header - New addTraceIdHeader utility function This enables end-to-end distributed tracing across SpaceCat services. Related: #1097, #1152
HollywoodTonight
added a commit
that referenced
this pull request
Nov 20, 2025
## Problem PR #1152 was merged with a proper `feat:` commit message, but semantic-release did not trigger a release. This happened because: - **Empty commits are ignored by `semantic-release-monorepo`** - The monorepo plugin filters commits to only include those that modify files within each package directory - Since #1152 was an empty commit with no file changes, it wasn't associated with any package - Result: Both `spacecat-shared-utils` and `spacecat-shared-http-utils` were not released despite having new features from #1097 ## Solution This PR adds documentation updates to both affected packages: - **`spacecat-shared-utils`**: Added release note for trace ID propagation - **`spacecat-shared-http-utils`**: Added release note for trace ID extraction The commit includes: - Proper `feat(utils,http-utils):` prefix following conventional commits - Actual file modifications in both package directories - Will be correctly recognized by `semantic-release-monorepo` ## Changes from PR #1097 The original trace ID propagation feature includes: - Enhanced `logWrapper` to automatically include `traceId` in log messages - SQS message trace ID propagation via `sendMessage()`/`sqsEventAdapter()` - HTTP header trace ID extraction via `x-trace-id` header - New `addTraceIdHeader()` utility function This enables end-to-end distributed tracing across SpaceCat services. ## Expected Releases Once merged, semantic-release will publish: - `@adobe/[email protected]` (currently 1.75.0) - `@adobe/[email protected]` (currently 1.18.2) ## Related - Implements: #1097 - Supersedes: #1152 - Needed for: adobe/spacecat-audit-worker#1520
solaris007
pushed a commit
that referenced
this pull request
Nov 20, 2025
# [@adobe/spacecat-shared-http-utils-v1.19.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.18.2...@adobe/spacecat-shared-http-utils-v1.19.0) (2025-11-20) ### Features * **utils,http-utils:** trigger release for trace ID propagation ([#1154](#1154)) ([fb48149](fb48149)), closes [#1152](#1152) [#1152](#1152) [#1097](#1097) [#1097](#1097) [#1097](#1097) [#1152](#1152) [adobe/spacecat-audit-worker#1520](adobe/spacecat-audit-worker#1520)
solaris007
pushed a commit
that referenced
this pull request
Nov 20, 2025
# [@adobe/spacecat-shared-utils-v1.76.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.75.0...@adobe/spacecat-shared-utils-v1.76.0) (2025-11-20) ### Features * **utils,http-utils:** trigger release for trace ID propagation ([#1154](#1154)) ([fb48149](fb48149)), closes [#1152](#1152) [#1152](#1152) [#1097](#1097) [#1097](#1097) [#1097](#1097) [#1152](#1152) [adobe/spacecat-audit-worker#1520](adobe/spacecat-audit-worker#1520)
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.
This PR triggers the semantic-release for the trace ID propagation feature that was merged in #1097 but didn't get released due to incorrect commit message format.
Changes
feat:prefix to trigger releaseRelated
Once merged, this will release:
@adobe/[email protected](currently 1.75.0)@adobe/[email protected](currently 1.18.2)