Conversation
Reference: core/api/LICENCE. Co-Authored-By: Cladius Maximus <cladius@lethean.io>
…block) - git submodule update on external/* to current dev tips - go.work paths fixed for Phase 1 /go/ subtree layout where stale - go.work go-version bumped 1.26.0 → 1.26.2 to match submodule floor Workspace-mode build (`go build ./...`) is the verification path. Some repos may surface transitive dep issues (api/go.sum checksum drift, etc.) which are separate cascade tickets — not blocking this metadata refresh. Co-Authored-By: Cladius Maximus <cladius@lethean.io>
Wires the cache.Cache surface into Core's service-registration plumbing behind a *core.ServiceRuntime[CacheConfig]. NewService() factory builds the underlying *Cache via the existing New() constructor and returns a *Service ready for c.Service() registration. Action handlers exposed via OnStartup: cache.delete — opts.key cache.delete_many — opts.keys ([]string) cache.path — opts.key → on-disk path cache.invalidate — opts.trigger cache.clear_scope — opts.origin Get/Set/SetBinary/GetBinary stay direct method calls because they need typed `dest any` arguments that don't round-trip through Options cleanly. Triplets + examples included (8 audit findings → 0; verdict COMPLIANT). Co-authored-by: Hephaestus <hephaestus@lthn.ai>
Co-Authored-By: Virgil <virgil@lethean.io> Co-authored-by: Hephaestus <hephaestus@lthn.ai>
Advance external/go workspace submodule to v0.10.4 so dev (GOWORK on) and standalone (GOWORK=off) builds resolve the same core/go. Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Virgil <virgil@lethean.io>
|
Warning Review limit reached
Next review available in: 30 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (8)
Warning Billing warning: we have not been able to collect payment for this subscription for more than 72 hours. Please update the payment method or pay any pending invoices in Billing to avoid service interruption. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|



This pull request introduces a new Core service interface for the
go/cachepackage, allowing cache operations to be registered and used as actions within the Core framework. It also updates dependencies and adds comprehensive tests and examples for the new service. The most important changes are:New Core Service Integration for Cache
service.go: Implements aServicestruct for the cache package, enabling registration of cache operations (delete,delete_many,path,invalidate,clear_scope) as Core actions, along with lifecycle hooks (OnStartup,OnShutdown). This makes cache operations accessible and manageable like other Core services.Testing and Documentation
service_test.go: Provides thorough tests for the new service interface, ensuring correct construction, startup/shutdown lifecycle, and idempotency, following AX-7 compliance patterns.service_example_test.go: Supplies usage examples for constructing and operating the cache service, demonstrating how to register and interact with it in a Core application.Dependency and Configuration Updates
go/go.mod: Bumpeddappco.re/godependency tov0.10.4for compatibility with the new service interface.go.work: Adjusted the path forgo-ioto reflect new module structure.external/goandexternal/go-ioto newer commits, ensuring alignment with the latest upstream changes. [1] [2]Licensing
LICENCE: Includes the full text of the European Union Public Licence v. 1.2 (EUPL), clarifying the licensing terms for the project.