Skip to content

v0.2.4-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@andrejrakic andrejrakic released this 23 Feb 23:21
· 7 commits to develop since this release
eb2fca7

chainlink local logo

v0.2.4-beta.1 Release - 24 February 2025

This release fixes import path that causes installation issues.

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

Changed

  • Fixed incorrect import path for Math.sol in MockFeeManager.sol

Testing the release

To test this release install @chainlink-local using the following commands:

Foundry (git)

forge install smartcontractkit/chainlink-local@v0.2.4-beta.1

and then set remappings to: @chainlink/local/=lib/chainlink-local/ in either remappings.txt or foundry.toml file

Hardhat (npm)

npm install @chainlink/local@v0.2.4-beta.1

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.1/src/data-streams/DataStreamsLocalSimulator.sol";

PRs included

Full Changelog: v0.2.4-beta.0...v0.2.4-beta.1