Skip to content

chore: release main#38

Merged
amondnet merged 1 commit into
mainfrom
release-please--branches--main
Apr 9, 2026
Merged

chore: release main#38
amondnet merged 1 commit into
mainfrom
release-please--branches--main

Conversation

@github-actions

@github-actions github-actions Bot commented Apr 8, 2026

Copy link
Copy Markdown
Contributor

🤖 I have created a release beep boop

ask-plugin: 0.2.2

0.2.2 (2026-04-08)

Features

  • registry: edge cache /api/registry/** via Nitro routeRules (#36) (1c9b7db), closes #34

This PR was generated with Release Please. See documentation.


Summary by cubic

Release ask-plugin v0.2.2 with edge caching for registry API routes to improve performance and reduce origin load. Updates version metadata for the plugin and manifest.

  • New Features
    • Edge cache /api/registry/** via Nitro routeRules to lower latency and cut backend hits.

Written for commit 002d0cc. Summary will update on new commits.

@github-actions
github-actions Bot force-pushed the release-please--branches--main branch from bacadb4 to 002d0cc Compare April 8, 2026 11:53
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Apr 8, 2026

Copy link
Copy Markdown

Deploying ask-registry with  Cloudflare Pages  Cloudflare Pages

Latest commit: 002d0cc
Status: ✅  Deploy successful!
Preview URL: https://0428c89e.ask-registry.pages.dev
Branch Preview URL: https://release-please--branches--ma-vd2h.ask-registry.pages.dev

View logs

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

Auto-approved: Automated release PR that only updates version metadata and the changelog. No source code logic changed.

Architecture diagram
sequenceDiagram
    participant Client as AI Agent / Client
    participant Edge as Edge Network (Nitro Cache)
    participant Origin as Nitro Origin Server
    participant DB as Registry Database

    Note over Client,DB: Request Flow for /api/registry/**

    Client->>Edge: GET /api/registry/entry-name
    
    alt NEW: Edge Cache Hit
        Edge-->>Client: 200 OK (Cached Response)
    else NEW: Edge Cache Miss / Expired
        Edge->>Origin: Forward Request to Origin
        Origin->>DB: Query registry metadata
        DB-->>Origin: Entry details
        Origin->>Origin: Process response
        Origin-->>Edge: Return Data + Cache-Control Headers
        Edge->>Edge: NEW: Cache response based on routeRules
        Edge-->>Client: 200 OK
    end

    Note over Edge,Origin: routeRules applied to /api/registry/** path
Loading

@amondnet
amondnet merged commit dbf6957 into main Apr 9, 2026
2 checks passed
@github-actions

github-actions Bot commented Apr 9, 2026

Copy link
Copy Markdown
Contributor Author

🤖 Created releases:

🌻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat(registry): edge caching for /api/registry/** route

1 participant