diff --git a/public/changelog.json b/public/changelog.json index 582dad3cec6..bddb1452307 100644 --- a/public/changelog.json +++ b/public/changelog.json @@ -423,6 +423,13 @@ "title": "Cross-chain token (CCT) standard: Added support for new tokens", "topic": "CCIP" }, + { + "category": "release", + "date": "2026-05-28", + "description": "CRE CLI version 1.17.0 is now available. This release includes bug fixes and reliability improvements for platform clients, secrets operations, and workflow deploy and delete.\n\nUpdate your CLI by running `cre update` when prompted, or follow the [CLI Installation guide](https://docs.chain.link/cre/getting-started/cli-installation) for fresh installations.\n\n[See all changes on GitHub](https://github.com/smartcontractkit/cre-cli/compare/v1.16.0...v1.17.0)", + "title": "CRE CLI v1.17.0 — Bug Fixes and Reliability", + "topic": "CRE" + }, { "category": "integration", "date": "2026-05-24", diff --git a/src/config/versions/index.ts b/src/config/versions/index.ts index a9beb29f7fa..b8c66311b93 100644 --- a/src/config/versions/index.ts +++ b/src/config/versions/index.ts @@ -77,9 +77,21 @@ export const VERSIONS = { }, // CRE CLI Versions — update LATEST here for each new release "cre-cli": { - LATEST: "v1.16.0", - ALL: ["v1.16.0", "v1.15.0", "v1.14.0", "v1.13.0", "v1.12.0", "v1.11.0", "v1.10.0", "v1.9.0", "v1.8.0"] as const, + LATEST: "v1.17.0", + ALL: [ + "v1.17.0", + "v1.16.0", + "v1.15.0", + "v1.14.0", + "v1.13.0", + "v1.12.0", + "v1.11.0", + "v1.10.0", + "v1.9.0", + "v1.8.0", + ] as const, RELEASE_DATES: { + "v1.17.0": "2026-05-28T00:00:00Z", "v1.16.0": "2026-05-22T00:00:00Z", "v1.15.0": "2026-05-14T00:00:00Z", "v1.14.0": "2026-05-08T00:00:00Z", diff --git a/src/content/cre/guides/operations/deploying-to-private-registry-go.mdx b/src/content/cre/guides/operations/deploying-to-private-registry-go.mdx index 2e0115530c2..687186666a3 100644 --- a/src/content/cre/guides/operations/deploying-to-private-registry-go.mdx +++ b/src/content/cre/guides/operations/deploying-to-private-registry-go.mdx @@ -24,7 +24,7 @@ import { Aside } from "@components" The **private registry** is a Chainlink-hosted, offchain workflow registry. All lifecycle operations (deploy, activate, pause, delete, update) are authorized by your CRE login session — not a linked wallet key. There are no Ethereum Mainnet transactions and no gas fees for registry management. -This is the default registry for new projects initialized with `cre init`. For a comparison of both registry options, see [Deploying Workflows](/cre/guides/operations/deploying-workflows). +For a comparison of both registry options, see [Deploying Workflows](/cre/guides/operations/deploying-workflows). {/* prettier-ignore */}