Skip to content

chore(deps): bump antelope interface dependencies to latest - #15

Merged
Upd4ting merged 1 commit into
mainfrom
chore/bump-antelope-deps
Jun 16, 2026
Merged

chore(deps): bump antelope interface dependencies to latest#15
Upd4ting merged 1 commit into
mainfrom
chore/bump-antelope-deps

Conversation

@Upd4ting

@Upd4ting Upd4ting commented Jun 16, 2026

Copy link
Copy Markdown
Member

Bump @antelopejs/interface-* (and playground/config) to latest published versions. Interfaces stay in dependencies. Verified: install, build, lint.

Greptile Summary

This PR bumps all @antelopejs/interface-* packages from ^0.0.2 to ^0.0.5 in both the root and playground workspaces, and advances the @antelopejs/api runtime version in the playground config from 1.0.0 to 1.1.1.

  • Peer dependency model change: From 0.0.5, interface-api and interface-auth moved interface-core (and interface-api for interface-auth) from regular to peer dependencies. Both package.json files already list all three packages explicitly, so every peer dep is satisfied and the pnpm lock file resolves them correctly.
  • Lock file: Updated consistently, with the new parenthesized peer-dep identifiers in snapshot keys (@antelopejs/interface-auth@0.0.5(@antelopejs/interface-api@...)), confirming a clean pnpm install was run.
  • No source-code or test changes: Only manifests and the lock file are touched; runtime behavior is unchanged beyond the version upgrades.

Confidence Score: 5/5

Safe to merge — only manifest and lock file changes, no source code touched.

All changes are confined to version numbers in package manifests and the regenerated lock file. The peer dependency model introduced in 0.0.5 is fully satisfied by the packages already listed as dependencies in both workspaces, and the lock file confirms clean resolution with no duplicate or conflicting versions.

No files require special attention.

Important Files Changed

Filename Overview
package.json Bumps @antelopejs/interface-{api,auth,core} from ^0.0.2 to ^0.0.5 in dependencies; all three peer deps introduced in 0.0.5 are satisfied by co-listed packages.
playground/antelope.config.ts Updates @antelopejs/api runtime package version reference from 1.0.0 to 1.1.1; no structural changes.
playground/package.json Mirrors root package.json bump for @antelopejs/interface-{auth,core} from ^0.0.2 to ^0.0.5; consistent with root.
pnpm-lock.yaml Lock file regenerated; interface packages now resolved as peerDependencies (>=0.0.3 <1.0.0) with correct parenthesized snapshot keys — all peer deps satisfied by explicitly listed packages.

Entity Relationship Diagram

%%{init: {'theme': 'neutral'}}%%
erDiagram
    ROOT_PKG {
        string interface-api "^0.0.5 (was 0.0.2)"
        string interface-auth "^0.0.5 (was 0.0.2)"
        string interface-core "^0.0.5 (was 0.0.2)"
    }
    PLAYGROUND_PKG {
        string interface-auth "^0.0.5 (was 0.0.2)"
        string interface-core "^0.0.5 (was 0.0.2)"
    }
    INTERFACE_API_0_0_5 {
        string peerDep "interface-core >=0.0.3 <1.0.0"
    }
    INTERFACE_AUTH_0_0_5 {
        string peerDep1 "interface-api >=0.0.3 <1.0.0"
        string peerDep2 "interface-core >=0.0.3 <1.0.0"
    }
    INTERFACE_CORE_0_0_5 {
        string dep "reflect-metadata 0.2.2"
    }
    ROOT_PKG ||--|| INTERFACE_API_0_0_5 : "depends on"
    ROOT_PKG ||--|| INTERFACE_AUTH_0_0_5 : "depends on"
    ROOT_PKG ||--|| INTERFACE_CORE_0_0_5 : "depends on"
    PLAYGROUND_PKG ||--|| INTERFACE_AUTH_0_0_5 : "depends on"
    PLAYGROUND_PKG ||--|| INTERFACE_CORE_0_0_5 : "depends on"
    INTERFACE_API_0_0_5 ||--|| INTERFACE_CORE_0_0_5 : "peer"
    INTERFACE_AUTH_0_0_5 ||--|| INTERFACE_API_0_0_5 : "peer"
    INTERFACE_AUTH_0_0_5 ||--|| INTERFACE_CORE_0_0_5 : "peer"
Loading
%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%%
erDiagram
    ROOT_PKG {
        string interface-api "^0.0.5 (was 0.0.2)"
        string interface-auth "^0.0.5 (was 0.0.2)"
        string interface-core "^0.0.5 (was 0.0.2)"
    }
    PLAYGROUND_PKG {
        string interface-auth "^0.0.5 (was 0.0.2)"
        string interface-core "^0.0.5 (was 0.0.2)"
    }
    INTERFACE_API_0_0_5 {
        string peerDep "interface-core >=0.0.3 <1.0.0"
    }
    INTERFACE_AUTH_0_0_5 {
        string peerDep1 "interface-api >=0.0.3 <1.0.0"
        string peerDep2 "interface-core >=0.0.3 <1.0.0"
    }
    INTERFACE_CORE_0_0_5 {
        string dep "reflect-metadata 0.2.2"
    }
    ROOT_PKG ||--|| INTERFACE_API_0_0_5 : "depends on"
    ROOT_PKG ||--|| INTERFACE_AUTH_0_0_5 : "depends on"
    ROOT_PKG ||--|| INTERFACE_CORE_0_0_5 : "depends on"
    PLAYGROUND_PKG ||--|| INTERFACE_AUTH_0_0_5 : "depends on"
    PLAYGROUND_PKG ||--|| INTERFACE_CORE_0_0_5 : "depends on"
    INTERFACE_API_0_0_5 ||--|| INTERFACE_CORE_0_0_5 : "peer"
    INTERFACE_AUTH_0_0_5 ||--|| INTERFACE_API_0_0_5 : "peer"
    INTERFACE_AUTH_0_0_5 ||--|| INTERFACE_CORE_0_0_5 : "peer"
Loading

Reviews (1): Last reviewed commit: "chore(deps): bump antelope interface dep..." | Re-trigger Greptile

@Upd4ting
Upd4ting merged commit 5ce069d into main Jun 16, 2026
3 checks passed
@Upd4ting
Upd4ting deleted the chore/bump-antelope-deps branch June 16, 2026 15:32
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