Skip to content

Commit 3268cb2

Browse files
authored
cre cli 1.0.4 (#3361)
1 parent a0334e7 commit 3268cb2

File tree

9 files changed

+127
-57
lines changed

9 files changed

+127
-57
lines changed

public/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,13 @@
392392
"title": "Added support to Data Feeds",
393393
"topic": "Data Feeds"
394394
},
395+
{
396+
"category": "release",
397+
"date": "2026-01-09",
398+
"description": "CRE CLI version 1.0.4 is now available with various small improvements and bug fixes.\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.",
399+
"title": "CRE CLI v1.0.4",
400+
"topic": "CRE"
401+
},
395402
{
396403
"category": "release",
397404
"date": "2026-01-07",
@@ -846,6 +853,13 @@
846853
"title": "CCIP Expands to Tempo Testnet",
847854
"topic": "CCIP"
848855
},
856+
{
857+
"category": "release",
858+
"date": "2025-12-12",
859+
"description": "CRE CLI version 1.0.3 is now available with various small improvements and bug fixes.\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.",
860+
"title": "CRE CLI v1.0.3",
861+
"topic": "CRE"
862+
},
849863
{
850864
"category": "release",
851865
"date": "2025-12-11",

src/components/DownloadButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const DownloadButton = () => {
1515
}
1616

1717
const handleClick = () => {
18-
window.open("https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.2", "_blank", "noopener,noreferrer")
18+
window.open("https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.4", "_blank", "noopener,noreferrer")
1919
}
2020

2121
const handleMouseOver = (e) => {

src/content/cre/getting-started/cli-installation/macos-linux.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
import { Aside, CopyText, PageTabs } from "@components"
1212
import { DownloadButton } from "~/components/DownloadButton.tsx"
1313

14-
This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.2**.
14+
This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.4**.
1515

1616
<PageTabs
1717
pages={[
@@ -66,7 +66,7 @@ After the script completes, verify the installation:
6666
cre version
6767
```
6868

69-
**Expected output:** `cre version v1.0.2`
69+
**Expected output:** `cre version v1.0.4`
7070

7171
<Aside type="note" title="macOS Gatekeeper">
7272
If you see warnings about "unrecognized developer/source" on macOS, run:{" "}
@@ -115,10 +115,10 @@ Compare the output with the official checksum below:
115115

116116
| <div style="width: 200px;">File</div> | SHA-256 Checksum |
117117
| ------------------------------------- | ----------------------------------------------------------------------------------------- |
118-
| `cre_darwin_amd64.zip` | <CopyText text="482e53d3a5f8471034d30c935196d2dca2ab09a5fe1ab2083ad336172565291b" code /> |
119-
| `cre_darwin_arm64.zip` | <CopyText text="92b0409801dd4e44f90a85331615f3e4b8cf1fe9f90a8eab3ad8bb3458b4b6cf" code /> |
120-
| `cre_linux_amd64.tar.gz` | <CopyText text="d3a8b9b999b4b8bf73b2235d27386acf4efbc8f05d86d9e6066abda23ee9ce9b" code /> |
121-
| `cre_linux_arm64.tar.gz` | <CopyText text="f52d618727ccc8fb6ab4b1f9418b09424c8505428131a49c01bb33ca2bc86fe3" code /> |
118+
| `cre_darwin_amd64.zip` | <CopyText text="87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1" code /> |
119+
| `cre_darwin_arm64.zip` | <CopyText text="e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c" code /> |
120+
| `cre_linux_amd64.tar.gz` | <CopyText text="58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913" code /> |
121+
| `cre_linux_arm64.tar.gz` | <CopyText text="9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51" code /> |
122122

123123
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
124124

@@ -143,7 +143,7 @@ If the checksum doesn't match, do not proceed with installation. Contact your Ch
143143
1. **Rename the extracted binary to `cre`**
144144

145145
```bash
146-
mv cre_v1.0.2_darwin_arm64 cre
146+
mv cre_v1.0.4_darwin_arm64 cre
147147
```
148148

149149
1. **Make it executable**:
@@ -216,7 +216,7 @@ cre version
216216

217217
**Expected output:**
218218

219-
You should see version information: `cre version v1.0.2`.
219+
You should see version information: `cre version v1.0.4`.
220220

221221
**If it doesn't work:**
222222

src/content/cre/getting-started/cli-installation/windows.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
import { Aside, CopyText, PageTabs } from "@components"
1212
import { DownloadButton } from "~/components/DownloadButton.tsx"
1313

14-
This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.2**.
14+
This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.4**.
1515

1616
<PageTabs
1717
pages={[
@@ -65,7 +65,7 @@ After the script completes, **open a new PowerShell window** and verify the inst
6565
cre version
6666
```
6767

68-
**Expected output:** `cre version v1.0.2`
68+
**Expected output:** `cre version v1.0.4`
6969

7070
### Manual installation
7171

@@ -97,7 +97,7 @@ Compare the `Hash` value in the output with the official checksum below:
9797

9898
| <div style="width: 200px;">File</div> | SHA-256 Checksum |
9999
| ------------------------------------- | ----------------------------------------------------------------------------------------- |
100-
| `cre_windows_amd64.zip` | <CopyText text="60fe65b74619c4164c0a9d6442611bf8537a04a6daf1ed3ecefc608cbbffdb01" code /> |
100+
| `cre_windows_amd64.zip` | <CopyText text="372d16566479ff6bbfe9eb1d5cebe0e1e2a3c67062c6f0439fc96c735ddeaa18" code /> |
101101

102102
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
103103

@@ -106,7 +106,7 @@ If the checksum doesn't match, do not proceed with installation. Contact your Ch
106106
1. Navigate to the directory where you downloaded the archive.
107107
1. Right-click the `.zip` file and select **Extract All...**.
108108
1. Choose a permanent location for the extracted folder (e.g., `C:\Program Files\cre-cli`).
109-
1. Inside the extracted folder, rename the file `cre_v1.0.2_windows_amd64.exe` to `cre.exe`.
109+
1. Inside the extracted folder, rename the file `cre_v1.0.4_windows_amd64.exe` to `cre.exe`.
110110

111111
#### 3. Add the CLI to your PATH
112112

@@ -131,7 +131,7 @@ Open a new **PowerShell** or **Command Prompt** window and run:
131131
cre version
132132
```
133133

134-
You should see version information: `cre version v1.0.2`.
134+
You should see version information: `cre version v1.0.4`.
135135

136136
## Next steps
137137

src/content/cre/llms-full-go.txt

Lines changed: 38 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,29 @@ Last Updated: 2025-11-20
446446

447447
This page provides detailed release notes for CRE. It includes information on new features, significant changes, and known limitations.
448448

449+
## CLI v1.0.4 - January 9, 2026
450+
451+
**<a href="https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.4" target="_blank">CRE CLI version 1.0.4</a> is now available.** This release includes various small improvements and bug fixes.
452+
453+
**How to update:**
454+
455+
- **Automatic update**: When you run any CRE command, the CLI will automatically detect if a newer version is available and prompt you to update. Simply run `cre update` to install the latest version.
456+
- **Fresh installation**: If you're installing the CLI for the first time, follow the [CLI Installation guide](/cre/getting-started/cli-installation).
457+
458+
## CLI v1.0.3 - December 12, 2025
459+
460+
**<a href="https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.3" target="_blank">CRE CLI version 1.0.3</a> is now available.** This release includes various small improvements and bug fixes.
461+
462+
**How to update:**
463+
464+
- **Automatic update**: When you run any CRE command, the CLI will automatically detect if a newer version is available and prompt you to update. Simply run `cre update` to install the latest version.
465+
- **Fresh installation**: If you're installing the CLI for the first time, follow the [CLI Installation guide](/cre/getting-started/cli-installation).
466+
449467
## CLI v1.0.2 - November 20, 2025
450468

451469
**<a href="https://github.com/smartcontractkit/cre-cli/releases/tag/v1.0.2" target="_blank">CRE CLI version 1.0.2</a> is now available.** This release includes various improvements based on user feedback.
452470

453-
### How to update
471+
**How to update:**
454472

455473
- **Automatic update**: When you run any CRE command, the CLI will automatically detect if a newer version is available and prompt you to update. Simply run `cre update` to install the latest version.
456474
- **Fresh installation**: If you're installing the CLI for the first time, follow the [CLI Installation guide](/cre/getting-started/cli-installation).
@@ -532,7 +550,7 @@ These guides explain how to install the Chainlink Developer Platform CLI (also r
532550
Source: https://docs.chain.link/cre/getting-started/cli-installation/macos-linux
533551
Last Updated: 2025-11-20
534552

535-
This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.2**.
553+
This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is **v1.0.4**.
536554

537555
## Installation
538556

@@ -563,7 +581,7 @@ After the script completes, verify the installation:
563581
cre version
564582
```
565583

566-
**Expected output:** `cre version v1.0.2`
584+
**Expected output:** `cre version v1.0.4`
567585

568586
<Aside type="note" title="macOS Gatekeeper">
569587
If you see warnings about "unrecognized developer/source" on macOS, run:{" "}
@@ -606,10 +624,10 @@ Compare the output with the official checksum below:
606624

607625
| File | SHA-256 Checksum |
608626
| ------------------------ | ---------------------------------------------------------------- |
609-
| `cre_darwin_amd64.zip` | 482e53d3a5f8471034d30c935196d2dca2ab09a5fe1ab2083ad336172565291b |
610-
| `cre_darwin_arm64.zip` | 92b0409801dd4e44f90a85331615f3e4b8cf1fe9f90a8eab3ad8bb3458b4b6cf |
611-
| `cre_linux_amd64.tar.gz` | d3a8b9b999b4b8bf73b2235d27386acf4efbc8f05d86d9e6066abda23ee9ce9b |
612-
| `cre_linux_arm64.tar.gz` | f52d618727ccc8fb6ab4b1f9418b09424c8505428131a49c01bb33ca2bc86fe3 |
627+
| `cre_darwin_amd64.zip` | 87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1 |
628+
| `cre_darwin_arm64.zip` | e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c |
629+
| `cre_linux_amd64.tar.gz` | 58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913 |
630+
| `cre_linux_arm64.tar.gz` | 9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51 |
613631

614632
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
615633

@@ -634,7 +652,7 @@ If the checksum doesn't match, do not proceed with installation. Contact your Ch
634652
3. **Rename the extracted binary to `cre`**
635653

636654
```bash
637-
mv cre_v1.0.2_darwin_arm64 cre
655+
mv cre_v1.0.4_darwin_arm64 cre
638656
```
639657

640658
4. **Make it executable**:
@@ -707,7 +725,7 @@ cre version
707725

708726
**Expected output:**
709727

710-
You should see version information: `cre version v1.0.2`.
728+
You should see version information: `cre version v1.0.4`.
711729

712730
**If it doesn't work:**
713731

@@ -746,7 +764,7 @@ Once you're authenticated, you're ready to build your first workflow:
746764
Source: https://docs.chain.link/cre/getting-started/cli-installation/windows
747765
Last Updated: 2025-11-20
748766

749-
This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.2**.
767+
This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is **v1.0.4**.
750768

751769
## Installation
752770

@@ -776,7 +794,7 @@ After the script completes, **open a new PowerShell window** and verify the inst
776794
cre version
777795
```
778796

779-
**Expected output:** `cre version v1.0.2`
797+
**Expected output:** `cre version v1.0.4`
780798

781799
### Manual installation
782800

@@ -804,7 +822,7 @@ Compare the `Hash` value in the output with the official checksum below:
804822

805823
| File | SHA-256 Checksum |
806824
| ----------------------- | ---------------------------------------------------------------- |
807-
| `cre_windows_amd64.zip` | 60fe65b74619c4164c0a9d6442611bf8537a04a6daf1ed3ecefc608cbbffdb01 |
825+
| `cre_windows_amd64.zip` | 372d16566479ff6bbfe9eb1d5cebe0e1e2a3c67062c6f0439fc96c735ddeaa18 |
808826

809827
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
810828

@@ -813,7 +831,7 @@ If the checksum doesn't match, do not proceed with installation. Contact your Ch
813831
1. Navigate to the directory where you downloaded the archive.
814832
2. Right-click the `.zip` file and select **Extract All...**.
815833
3. Choose a permanent location for the extracted folder (e.g., `C:\Program Files\cre-cli`).
816-
4. Inside the extracted folder, rename the file `cre_v1.0.2_windows_amd64.exe` to `cre.exe`.
834+
4. Inside the extracted folder, rename the file `cre_v1.0.4_windows_amd64.exe` to `cre.exe`.
817835

818836
#### 3. Add the CLI to your PATH
819837

@@ -838,7 +856,7 @@ Open a new **PowerShell** or **Command Prompt** window and run:
838856
cre version
839857
```
840858

841-
You should see version information: `cre version v1.0.2`.
859+
You should see version information: `cre version v1.0.4`.
842860

843861
## Next steps
844862

@@ -7587,8 +7605,8 @@ See the [repository README](https://github.com/smartcontractkit/cre-gcp-predicti
75877605
Source: https://docs.chain.link/cre/reference/cli
75887606
Last Updated: 2025-11-20
75897607

7590-
<Aside type="note" title="Required CLI Version: v1.0.2">
7591-
To ensure compatibility with the guides and examples in this documentation, please use version `v1.0.2` of the CRE
7608+
<Aside type="note" title="Required CLI Version: v1.0.4">
7609+
To ensure compatibility with the guides and examples in this documentation, please use version `v1.0.4` of the CRE
75927610
CLI. You can check your installed version by running `cre version`. Refer to the [CLI
75937611
Installation](/cre/getting-started/cli-installation/macos-linux) guide for more information.
75947612
</Aside>
@@ -8480,12 +8498,12 @@ cre version
84808498
**Example output:**
84818499

84828500
```bash
8483-
cre version v1.0.2
8501+
cre version v1.0.4
84848502
```
84858503

84868504

84878505
<Aside type="note" title="Version compatibility">
8488-
Always check that your CLI version matches the version recommended in the documentation. The current recommended version is **v1.0.2**. See the [CLI Installation guide](/cre/getting-started/cli-installation) for more information.
8506+
Always check that your CLI version matches the version recommended in the documentation. The current recommended version is **v1.0.4**. See the [CLI Installation guide](/cre/getting-started/cli-installation) for more information.
84898507
</Aside>
84908508

84918509
## Learn more
@@ -9612,7 +9630,8 @@ import {ReceiverTemplate} from "./ReceiverTemplate.sol";
96129630
* @title CalculatorConsumer (Testing Version)
96139631
* @notice This contract receives reports from a CRE workflow and stores the results of a calculation onchain.
96149632
* @dev Inherits from ReceiverTemplate which provides security checks. The forwarder address must be
9615-
* configured at deployment. Additional security checks (workflowId, workflowName, author) can be enabled via setter functions.
9633+
* configured at deployment. Additional security checks (workflowId, workflowName, author) can be enabled via setter
9634+
* functions.
96169635
*/
96179636
contract CalculatorConsumer is ReceiverTemplate {
96189637
// Struct to hold the data sent in a report from the workflow

0 commit comments

Comments
 (0)