Commit fb48149
authored
feat(utils,http-utils): trigger release for trace ID propagation (#1154)
## 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#15201 parent c1d878e commit fb48149
File tree
2 files changed
+4
-0
lines changed- packages
2 files changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
| 7 | + | |
6 | 8 | | |
7 | 9 | | |
8 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
5 | 7 | | |
6 | 8 | | |
7 | 9 | | |
| |||
0 commit comments