Update sigstore/cosign-installer action to v4.1.1#4420
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4420 +/- ##
==========================================
- Coverage 69.49% 69.47% -0.02%
==========================================
Files 486 486
Lines 50017 50017
==========================================
- Hits 34758 34750 -8
- Misses 12576 12580 +4
- Partials 2683 2687 +4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
JAORMX
approved these changes
Mar 30, 2026
yrobla
pushed a commit
that referenced
this pull request
Mar 31, 2026
Introduce DataStorage, a key-value metadata store separate from the existing Session-based Storage interface. Unlike Storage, DataStorage never round-trips live session objects — it stores only serialisable map[string]string metadata. This separation avoids the type-assertion bug where a Redis round-trip deserialises a MultiSession as a plain *StreamableSession, losing all backend connections and routing state. Two implementations are provided: - LocalSessionDataStorage: in-memory sync.Map with TTL-based eviction and a background cleanup goroutine. - RedisSessionDataStorage: Redis/Valkey-backed with sliding-window TTL via GETEX on every Load, and atomic SET NX for StoreIfAbsent. Both pass a shared contract test suite covering Store/Load round-trips, upsert, nil metadata, empty-ID errors, Exists (without TTL refresh), StoreIfAbsent atomicity, Delete idempotency, and TTL behaviour. Related-to: #4420
yrobla
added a commit
that referenced
this pull request
Apr 1, 2026
* Add DataStorage interface and implementations Introduce DataStorage, a key-value metadata store separate from the existing Session-based Storage interface. Unlike Storage, DataStorage never round-trips live session objects — it stores only serialisable map[string]string metadata. This separation avoids the type-assertion bug where a Redis round-trip deserialises a MultiSession as a plain *StreamableSession, losing all backend connections and routing state. Two implementations are provided: - LocalSessionDataStorage: in-memory sync.Map with TTL-based eviction and a background cleanup goroutine. - RedisSessionDataStorage: Redis/Valkey-backed with sliding-window TTL via GETEX on every Load, and atomic SET NX for StoreIfAbsent. Both pass a shared contract test suite covering Store/Load round-trips, upsert, nil metadata, empty-ID errors, Exists (without TTL refresh), StoreIfAbsent atomicity, Delete idempotency, and TTL behaviour. Related-to: #4420 * changes from review --------- Co-authored-by: taskbot <taskbot@users.noreply.github.com>
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.
This PR contains the following updates:
v4.1.0→v4.1.1Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
sigstore/cosign-installer (sigstore/cosign-installer)
v4.1.1Compare Source
What's Changed
Full Changelog: sigstore/cosign-installer@v4.1.0...v4.1.1
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.