Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
85fb7f7
feat: Add Mock Data Feeds contracts
andrejrakic Jun 8, 2024
d79388c
feat: Add MockOffchainAggregator contract that expose minAnswer and m…
andrejrakic Jun 8, 2024
0f5e71f
chore: Forge install @chainlink/[email protected]
andrejrakic Jun 8, 2024
2bb3a03
feat: Add mock data feeds smoke test
andrejrakic Jun 8, 2024
f1e3c14
chore: List upcoming release in Changelog
andrejrakic Jun 8, 2024
8235aaf
feat: Add unit tests for mock data feeds contracts
andrejrakic Jun 23, 2024
c5780d3
feat: Add smoke test for mock data feeds using Hardhat
andrejrakic Jun 23, 2024
3318bab
feat: Add forking test example and prepare for beta release
andrejrakic Jun 24, 2024
eae01b6
Merge branch 'main' into develop
andrejrakic Aug 13, 2024
54ff7b0
Support for CCIP v1.5 and preparing for 0.2.2-beta release (#19)
andrejrakic Sep 12, 2024
32543f6
chore: Add CCIP v1.5 config details to Register for all available tes…
andrejrakic Oct 4, 2024
e601b3b
fix: Use the latest version of EVM2EVMOffRamp contract in the switchC…
andrejrakic Oct 10, 2024
be7007e
chore: Prepare repo for the 0.2.2 release
andrejrakic Oct 15, 2024
ffcb38e
Merge branch 'main' into develop
andrejrakic Nov 14, 2024
2d294dc
Merge branch 'main' into develop
andrejrakic Dec 10, 2024
a9d3fff
Support for Chainlink Data Streams (#25)
andrejrakic Dec 10, 2024
6620d59
chore: Include JavaScript Data Strems scripts into package.json
andrejrakic Dec 10, 2024
d43f3e4
Update README to include installation instructions for Foundry (solde…
EmanHerawy Jan 28, 2025
1243ad3
Data Streams fixes - v0.2.4-beta.0 release candidate (#34)
andrejrakic Feb 23, 2025
649b3b9
Fix year in CHANGELOG (#35)
andrejrakic Feb 23, 2025
eb2fca7
fix: Fix incorrect import path (#36)
andrejrakic Feb 23, 2025
08f53fc
chore: Prepare for 0.2.4 release
andrejrakic Mar 25, 2025
bf41d58
Merge branch 'main' into develop
andrejrakic May 9, 2025
b429481
Add support for CCIP v1.6 (#38)
andrejrakic May 14, 2025
46faf3a
fix: Update npm authentication token in publish workflows
andrejrakic May 16, 2025
9fbeafb
chore: Prepare for v0.2.5-beta.0 release, bump @chainlink/contracts t…
andrejrakic May 20, 2025
92fd9ac
chore: Prepare for 0.2.5 release
andrejrakic Jun 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish-beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
always-auth: true

- name: Setup npm authentication
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_CHAINLINK_LOCAL }}" > ~/.npmrc

- name: Install dependencies
run: npm ci

- name: Publish
run: npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_CHAINLINK_LOCAL }}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
always-auth: true

- name: Setup npm authentication
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_CHAINLINK_LOCAL }}" > ~/.npmrc

- name: Install dependencies
run: npm ci

- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_CHAINLINK_LOCAL }}
12 changes: 6 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/ccip"]
path = lib/ccip
url = https://github.com/smartcontractkit/ccip
[submodule "lib/chainlink-brownie-contracts"]
path = lib/chainlink-brownie-contracts
url = https://github.com/smartcontractkit/chainlink-brownie-contracts
[submodule "lib/chainlink-evm"]
path = lib/chainlink-evm
url = https://github.com/smartcontractkit/chainlink-evm
[submodule "lib/chainlink-ccip"]
path = lib/chainlink-ccip
url = https://github.com/smartcontractkit/chainlink-ccip
62 changes: 62 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,63 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.5] - 10 June 2025

### Dependencies

| Package | Version |
| ------------------------- | ------- |
| @chainlink/contracts-ccip | 1.6.0 |
| @chainlink/contracts | 1.4.0 |

### Services

- [x] Chainlink CCIP v1.6

### Added

- Added support for Chainlink CCIP v1.6

### Changed

- Bumped `@chainlink/contracts-ccip` to `1.6.0` version
- Bumped `@chainlink/contracts` to `1.4.0` version

## [0.2.5-beta.0] - 20 May 2025

### Dependencies

| Package | Version |
| ------------------------- | ------- |
| @chainlink/contracts-ccip | 1.6.0 |
| @chainlink/contracts | 1.4.0 |

### Services

- [x] Chainlink CCIP v1.6

### Changed

- Bumped `@chainlink/contracts-ccip` to `1.6.0` version
- Bumped `@chainlink/contracts` to `1.4.0` version

## [0.2.5-beta] - 14 May 2025

### Dependencies

| Package | Version |
| ------------------------- | ------------ |
| @chainlink/contracts-ccip | 1.6.0-beta.3 |
| @chainlink/contracts | 1.4.0-beta.0 |

### Services

- [x] Chainlink CCIP v1.6

### Added

- Added support for Chainlink CCIP v1.6

## [0.2.4] - 25 March 2025

### Dependencies
Expand Down Expand Up @@ -423,3 +480,8 @@ and this project adheres to
[0.2.4-beta.1]:
https://github.com/smartcontractkit/chainlink-local/releases/tag/0.2.4-beta.1
[0.2.4]: https://github.com/smartcontractkit/chainlink-local/releases/tag/v0.2.4
[0.2.5-beta]:
https://github.com/smartcontractkit/chainlink-local/releases/tag/v0.2.5-beta
[0.2.5-beta.0]:
https://github.com/smartcontractkit/chainlink-local/releases/tag/v0.2.5-beta.0
[0.2.5]: https://github.com/smartcontractkit/chainlink-local/releases/tag/v0.2.5
Loading