v0.2.4-beta.0
Pre-release
Pre-release
·
2 commits
to develop
since this release
v0.2.4-beta.0 Release - 23 February 2025
This release includes couple of minor fixes found during the testing of Data Streams integration.
Changelog
Dependencies
Package | Version |
---|---|
@chainlink/contracts-ccip | 1.5.1-beta.0 |
@chainlink/contracts | 1.3.0 |
Services
- Chainlink CCIP
- Chainlink CCIP v1.5
- Chainlink Data Feeds
- Chainlink Data Streams
- Chainlink Automation
- Chainlink VRF 2
- Chainlink VRF 2.5
Added
- Instructions to install Chainlink Local using Soldeer
Changed
- Bumped
@chainlink/contracts
to1.3.0
version - Started returning raw Report structs from
generateReportV2
,
generateReportV3
andgenerateReportV4
functions alongside the
signedReport
bytes blob which is already returned
Testing the release
To test this release install @chainlink-local
using the following commands:
Foundry (git)
forge install smartcontractkit/[email protected]
and then set remappings to: @chainlink/local/=lib/chainlink-local/
in either remappings.txt
or foundry.toml
file
Hardhat (npm)
npm install @chainlink/[email protected]
and then create the following contract and compile it:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {DataStreamsLocalSimulator} from "@chainlink/local/src/data-streams/DataStreamsLocalSimulator.sol";
Remix IDE
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {DataStreamsLocalSimulator} from "https://github.com/smartcontractkit/chainlink-local/blob/v0.2.4-beta.0/src/data-streams/DataStreamsLocalSimulator.sol";
PRs included
- Update README to include installation instructions for Foundry (soldeer by @EmanHerawy in #31
- Data Streams fixes - v0.2.4-beta.0 release candidate by @andrejrakic in #34
- Fix year in CHANGELOG by @andrejrakic in #35
New Contributors
- @EmanHerawy made their first contribution in #31
Full Changelog: v0.2.4-beta...v0.2.4-beta.0