Skip to content

chore: prep CI release changelogs#1618

Merged
ponderingdemocritus merged 1 commit into
masterfrom
ponderingdemocritus/update-changelogs
Mar 21, 2026
Merged

chore: prep CI release changelogs#1618
ponderingdemocritus merged 1 commit into
masterfrom
ponderingdemocritus/update-changelogs

Conversation

@ponderingdemocritus

Copy link
Copy Markdown
Contributor

Summary

  • add missing changesets for the post-2.5.0 SDK work (AxLLM removal, SIWX, MPP, catalog, examples, and CLI landing page updates)
  • run Changesets versioning to regenerate package versions and package changelogs for the upcoming CI release
  • clean up the generated top-level changelog entries and add initial changelogs for the new @lucid-agents/mpp and @lucid-agents/catalog packages

Testing

  • not run (release metadata only)

@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
lucid-agents 3cf691a Commit Preview URL

Branch Preview URL
Mar 21 2026, 08:39 PM

@greptile-apps

greptile-apps Bot commented Mar 21, 2026

Copy link
Copy Markdown

Greptile Summary

This PR is a release-metadata-only change that prepares the CI release pipeline for the post-2.5.0 wave of SDK work. It deletes the consumed tender-eggs-divide.md changeset, regenerates all package versions and changelogs via changeset version, and hand-crafts initial changelogs for the new @lucid-agents/mpp and @lucid-agents/catalog packages.

Key observations:

  • Fixed release group (core, identity, payments, cli, api-sdk) correctly advances from 2.5.03.0.0, driven by the AxLLM removal breaking change.
  • Adapter packages (hono@0.10.0, express@0.6.0, tanstack@0.8.0, http@1.11.0) receive minor bumps for SIWX and MPP additions — semantically correct.
  • Dependency-only packages (a2a, analytics, ap2, scheduler, wallet) get patch bumps for the types@1.8.0 update — correct.
  • New packages @lucid-agents/mpp@0.2.0 and @lucid-agents/catalog@0.2.0 have accurate initial changelogs; entries lack commit hashes because they were written manually rather than from a dedicated changeset file, but this is cosmetically only.
  • api-sdk has a long history of empty version headers (pre-existing, not introduced here) which reduces the changelog's usefulness for consumers of that package — worth a follow-up cleanup but not a blocker.
  • No source code is modified; all changes are metadata only.

Confidence Score: 5/5

  • Safe to merge — this is a metadata-only PR with no source code changes.
  • All version bumps are internally consistent, the fixed release group advances uniformly to 3.0.0, and new package changelogs are accurate. The only cosmetic gaps (missing commit hashes in manually-written entries, empty historical headers in api-sdk) are pre-existing or carry no runtime risk.
  • No files require special attention; the pre-existing empty version headers in packages/api-sdk/CHANGELOG.md are worth a future cleanup pass but do not block this release.

Important Files Changed

Filename Overview
.changeset/tender-eggs-divide.md Changeset file consumed by the versioning run — correctly deleted after generating the 3.0.0 major bump for cli, core, and payments.
packages/core/CHANGELOG.md Correct 3.0.0 major entry for AxLLM removal with dependency updates to payments@3.0.0, types@1.8.0, and a2a@0.6.3. No SIWX/MPP entries here, which is expected since those live in http/adapters rather than core.
packages/identity/CHANGELOG.md 3.0.0 entry correctly reflects a version-only bump for the fixed release group; identity itself has no new breaking changes in this cycle.
packages/api-sdk/CHANGELOG.md 3.0.0 added with "version bump only" note; many historical entries (2.5.0 through 2.1.0) remain empty — pre-existing pattern from the auto-generated SDK, not introduced by this PR.
packages/payments/CHANGELOG.md 3.0.0 entry documents both the AxLLM major removal (from changeset) and the manually-added SIWX minor changes; dependency chain to types@1.8.0 is correct.
packages/mpp/CHANGELOG.md Initial 0.2.0 changelog for the new MPP package; change entries lack commit hashes (manually written, no dedicated changeset file) but content is accurate.
packages/catalog/CHANGELOG.md Initial 0.2.0 changelog for the new catalog package; same manually-written pattern as mpp, no commit hash attached.
packages/hono/CHANGELOG.md 0.10.0 entry correctly captures both SIWX and MPP minor changes plus all updated fixed-group dependencies.
packages/types/CHANGELOG.md 1.8.0 minor bump documents SIWX and MPP type additions; no dependency changes needed since types is a leaf package.
packages/cli/CHANGELOG.md 3.0.0 entry correctly records the AxLLM removal as a Major Change and CLI landing-page refresh as a Patch Change; historical entries also received blank-line formatting fixes.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    CS[".changeset/tender-eggs-divide.md\n(deleted — consumed)"]

    subgraph fixed ["Fixed Release Group  2.5.0 → 3.0.0"]
        CORE["@lucid-agents/core@3.0.0\nAxLLM removal (major)"]
        PAY["@lucid-agents/payments@3.0.0\nAxLLM removal + SIWX (minor)"]
        CLI["@lucid-agents/cli@3.0.0\nAxLLM removal + landing page (patch)"]
        IDEN["@lucid-agents/identity@3.0.0\nVersion-bump only"]
        APISDK["@lucid-agents/api-sdk@3.0.0\nVersion-bump only"]
    end

    subgraph minor ["Minor Bumps"]
        TYPES["@lucid-agents/types@1.8.0\nSIWX + MPP types"]
        HTTP["@lucid-agents/http@1.11.0\nSIWX support"]
        HONO["@lucid-agents/hono@0.10.0\nSIWX + MPP middleware"]
        EXPRESS["@lucid-agents/express@0.6.0\nSIWX + MPP middleware"]
        TANSTACK["@lucid-agents/tanstack@0.8.0\nSIWX support"]
        MPP["@lucid-agents/mpp@0.2.0\n(new) MPP package"]
        CATALOG["@lucid-agents/catalog@0.2.0\n(new) Catalog package"]
        EXAMPLES["@lucid-agents/examples@0.4.0\nKitchen-sink + MPP examples"]
    end

    subgraph patch ["Patch Bumps"]
        A2A["@lucid-agents/a2a@0.6.3"]
        ANALYTICS["@lucid-agents/analytics@0.3.3"]
        AP2["@lucid-agents/ap2@0.4.3"]
        SCHEDULER["@lucid-agents/scheduler@0.2.3"]
        WALLET["@lucid-agents/wallet@0.6.3"]
    end

    CS -->|"major: cli, core, payments"| fixed
    TYPES --> patch
    TYPES --> HONO
    TYPES --> EXPRESS
    TYPES --> HTTP
    TYPES --> TANSTACK
    CORE --> HONO
    CORE --> EXPRESS
    CORE --> TANSTACK
    PAY --> HONO
    PAY --> EXPRESS
    PAY --> TANSTACK
    MPP --> HONO
    MPP --> EXPRESS
    fixed --> EXAMPLES
    minor --> EXAMPLES
    patch --> EXAMPLES
Loading

Last reviewed commit: "chore: prep CI relea..."

@ponderingdemocritus ponderingdemocritus merged commit 8caa928 into master Mar 21, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant