Skip to content

chore(release): v0.7.0 - #57

Open
github-actions[bot] wants to merge 1 commit into
masterfrom
changeset-release/master
Open

chore(release): v0.7.0#57
github-actions[bot] wants to merge 1 commit into
masterfrom
changeset-release/master

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 3, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

@1c-odata/cli@0.7.0

Minor Changes

  • #126 3146289 Thanks @hacker-cb! - Breaking: the minimum supported Node version is now 24.18.0 (was 22.21.0).

    Node 22 "Jod" has left active LTS and is in maintenance; Node 24 "Krypton" is
    the active LTS line and is supported until 2028-04-30. Installing on Node 22
    will now be refused or warned about by npm/pnpm, depending on your client.

    No source change accompanies this. The library does not yet use any API that
    Node 22 lacks — the floor moves so that the version CI exercises and the version
    the packages advertise are one and the same. Keeping the advertised floor below the tested one meant the
    promise was never actually verified, which is the defect this closes.

    @types/node is pinned to the matching major for the same reason: types
    describing a runtime above the floor let an API that does not exist there
    typecheck green and fail at runtime for anyone who installed at the advertised
    minimum.

    If you are pinned to Node 22, stay on the previous release until you can move —
    v0.x carries no compatibility shims (see STABILITY.md).

Patch Changes

  • Updated dependencies [3146289]:
    • @1c-odata/client@0.7.0
    • @1c-odata/metadata@0.7.0

@1c-odata/client@0.7.0

Minor Changes

  • #126 3146289 Thanks @hacker-cb! - Breaking: the minimum supported Node version is now 24.18.0 (was 22.21.0).

    Node 22 "Jod" has left active LTS and is in maintenance; Node 24 "Krypton" is
    the active LTS line and is supported until 2028-04-30. Installing on Node 22
    will now be refused or warned about by npm/pnpm, depending on your client.

    No source change accompanies this. The library does not yet use any API that
    Node 22 lacks — the floor moves so that the version CI exercises and the version
    the packages advertise are one and the same. Keeping the advertised floor below the tested one meant the
    promise was never actually verified, which is the defect this closes.

    @types/node is pinned to the matching major for the same reason: types
    describing a runtime above the floor let an API that does not exist there
    typecheck green and fail at runtime for anyone who installed at the advertised
    minimum.

    If you are pinned to Node 22, stay on the previous release until you can move —
    v0.x carries no compatibility shims (see STABILITY.md).

@1c-odata/mcp@0.7.0

Minor Changes

  • #56 1a64c54 Thanks @hacker-cb! - Refactor @1c-odata/mcp for multi-tenant reuse (prep for a remote multi-tenant host).

    • New @1c-odata/mcp/internal subpath exposing the reusable building blocks — ConnectionPool, the new ConnectionSource/FileConnectionSource seam, ReadPool, the read-only tool registrators (registerSchemaTools/registerDataTools/registerServerInfoTool), and the response-limit helpers. The connection-management tools stay off this surface (admin-only).
    • ConnectionPool now takes a ConnectionSource (where connections and secrets come from) instead of { dataDir }; the local stdio server injects a FileConnectionSource (config.json + keychain) and is unchanged. The read-only tool registrators now accept a ReadPool.
    • The programmatic building blocks previously reachable from the @1c-odata/mcp root (ConnectionPool, SecretStore, passwordEnvVar, …) moved to @1c-odata/mcp/internal; the root now exposes only the local-server entry (createMcpServer, runServe) and config/data-dir helpers. No CLI, MCP-tool, or on-disk contract changed.
  • #126 3146289 Thanks @hacker-cb! - Breaking: the minimum supported Node version is now 24.18.0 (was 22.21.0).

    Node 22 "Jod" has left active LTS and is in maintenance; Node 24 "Krypton" is
    the active LTS line and is supported until 2028-04-30. Installing on Node 22
    will now be refused or warned about by npm/pnpm, depending on your client.

    No source change accompanies this. The library does not yet use any API that
    Node 22 lacks — the floor moves so that the version CI exercises and the version
    the packages advertise are one and the same. Keeping the advertised floor below the tested one meant the
    promise was never actually verified, which is the defect this closes.

    @types/node is pinned to the matching major for the same reason: types
    describing a runtime above the floor let an API that does not exist there
    typecheck green and fail at runtime for anyone who installed at the advertised
    minimum.

    If you are pinned to Node 22, stay on the previous release until you can move —
    v0.x carries no compatibility shims (see STABILITY.md).

Patch Changes

  • #58 bf78afc Thanks @hacker-cb! - Prep @1c-odata/mcp/internal for a DB-backed multi-tenant host. Additive only — no CLI, MCP-tool, on-disk, or local stdio behavior changed.

    • SecretSource gains a 'db' variant so a DB-backed ConnectionSource can report the real password origin in list_connections. SecretStore itself never returns it (file/keychain/env only).
    • @1c-odata/mcp/internal now re-exports verifyConnectivity — the standalone $metadata reachability probe (no dataDir dependency), reused by a remote host to verify a base before saving it. The connection-management functions (upsertConnection/removeConnection/updateConnectionCredentials/setConnectionLabel) stay private — they are bound to the file-backed config.
  • #162 4c57cdb Thanks @hacker-cb! - @1c-odata/mcp/internal re-exports for alternate hosts:

    • assertValidConnectionName / isValidConnectionName, so a DB-backed admin
      write path enforces the same ASCII connection-name rule as the file-backed
      store.
    • InvalidArgumentError (from @1c-odata/client), so a scoping wrapper throws
      the pool's canonical not-found error without a new dependency — an ungranted
      base is then byte-identical to a missing one.
  • Updated dependencies [3146289]:

    • @1c-odata/client@0.7.0
    • @1c-odata/metadata@0.7.0

@1c-odata/metadata@0.7.0

Minor Changes

  • #126 3146289 Thanks @hacker-cb! - Breaking: the minimum supported Node version is now 24.18.0 (was 22.21.0).

    Node 22 "Jod" has left active LTS and is in maintenance; Node 24 "Krypton" is
    the active LTS line and is supported until 2028-04-30. Installing on Node 22
    will now be refused or warned about by npm/pnpm, depending on your client.

    No source change accompanies this. The library does not yet use any API that
    Node 22 lacks — the floor moves so that the version CI exercises and the version
    the packages advertise are one and the same. Keeping the advertised floor below the tested one meant the
    promise was never actually verified, which is the defect this closes.

    @types/node is pinned to the matching major for the same reason: types
    describing a runtime above the floor let an API that does not exist there
    typecheck green and fail at runtime for anyone who installed at the advertised
    minimum.

    If you are pinned to Node 22, stay on the previous release until you can move —
    v0.x carries no compatibility shims (see STABILITY.md).

Patch Changes

  • Updated dependencies [3146289]:
    • @1c-odata/client@0.7.0

@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 3, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 3, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 4ce41a4 to a1f2fa8 Compare July 3, 2026 10:58
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 3, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 3, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from a1f2fa8 to dc9465d Compare July 3, 2026 16:00
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 3, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 17, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from dc9465d to 7df7cd7 Compare July 17, 2026 18:52
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 17, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 7df7cd7 to 211b094 Compare July 18, 2026 10:47
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 211b094 to d625093 Compare July 18, 2026 11:47
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from d625093 to a71b331 Compare July 18, 2026 12:53
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from a71b331 to dd95d86 Compare July 18, 2026 13:30
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from dd95d86 to 5c1d325 Compare July 18, 2026 13:45
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 5c1d325 to 2e27ca8 Compare July 18, 2026 13:59
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 2e27ca8 to 0b70784 Compare July 18, 2026 14:10
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 3f32ac3 to 722fab5 Compare July 18, 2026 14:42
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 722fab5 to 406bf35 Compare July 18, 2026 16:53
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 406bf35 to 48cf567 Compare July 18, 2026 17:11
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 48cf567 to 67f1b13 Compare July 18, 2026 17:47
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 18, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 67f1b13 to 96292b7 Compare July 18, 2026 18:39
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 18, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 22, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 96292b7 to 91fdba0 Compare July 22, 2026 18:02
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 22, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Jul 31, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 91fdba0 to 7dd14c7 Compare July 31, 2026 14:53
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Jul 31, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Sep 1, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 7dd14c7 to 6fc3e30 Compare September 1, 2026 05:58
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Sep 1, 2026
@github-actions github-actions Bot changed the title chore(release): v0.7.0 chore: release packages Sep 1, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/master branch from 6fc3e30 to df53a7c Compare September 1, 2026 07:55
@github-actions github-actions Bot changed the title chore: release packages chore(release): v0.7.0 Sep 1, 2026
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.

0 participants