Versions in this module Expand all Collapse all v0 v0.1.19 Jan 23, 2026 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.18 Dec 30, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.17 Dec 16, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.16 Dec 5, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.15 Nov 28, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.14 Nov 17, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.13 Nov 10, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken Changes in this version + type BlobMemoryCache struct + func NewBlobMemoryCache(config BlobMemoryCacheConfig, stats tally.Scope) *BlobMemoryCache + func (c *BlobMemoryCache) Add(entry *MemoryEntry) bool + func (c *BlobMemoryCache) Get(name string) *MemoryEntry + func (c *BlobMemoryCache) GetExpiredEntries(now time.Time, ttl time.Duration) []string + func (c *BlobMemoryCache) ListNames() []string + func (c *BlobMemoryCache) NumEntries() int + func (c *BlobMemoryCache) ReleaseReservation(size uint64) + func (c *BlobMemoryCache) Remove(name string) + func (c *BlobMemoryCache) RemoveBatch(names []string) + func (c *BlobMemoryCache) TotalBytes() uint64 + func (c *BlobMemoryCache) TryReserve(size uint64) bool + type BlobMemoryCacheConfig struct + MaxSize uint64 + type MemoryEntry struct + CreatedAt time.Time + Data []byte + MetaInfo *core.MetaInfo + Name string + func (m *MemoryEntry) Size() uint64 v0.1.12 Oct 20, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.11 Oct 10, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.10 Sep 23, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken v0.1.9 Sep 5, 2025 GO-2023-1505 GO-2023-1505: Arbitrary file read vulnerability in github.com/uber/kraken Changes in this version + type LRUCache struct + func NewLRUCache(maxSize int, ttl time.Duration) *LRUCache + func (c *LRUCache) Add(key string) + func (c *LRUCache) Clear() + func (c *LRUCache) Delete(key string) + func (c *LRUCache) Has(key string) bool + func (c *LRUCache) Size() int