From 76cb6421372e8cad33c856e81ccc3a37923fc454 Mon Sep 17 00:00:00 2001 From: chainchad <96362174+chainchad@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:11:50 -0400 Subject: [PATCH] @chainlink.contracts release v0.8.0 (#10798) * Update CHANGELOG and package version for contracts * Update CHANGELOG (#10800) * chore: update changelog (#10801) * add automation comment on contracts changelog (#10802) * (chore): Update CHANGELOG (#10825) * Finalize date on changelog for @chainlink/contracts * Finalize version for @chainlink/contracts --------- Co-authored-by: Austin Born Co-authored-by: Makram Co-authored-by: Ryan Hall Co-authored-by: Justin Kaseman --- contracts/CHANGELOG.md | 21 +++++++++++++++++++++ contracts/package.json | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/contracts/CHANGELOG.md b/contracts/CHANGELOG.md index 782e39f583b..1cb2e0e905b 100644 --- a/contracts/CHANGELOG.md +++ b/contracts/CHANGELOG.md @@ -4,6 +4,27 @@ ... +## 0.8.0 - 2023-10-04 + +### Changed + + +- Add a re-entrancy guard to VRFCoordinatorV2Mock to mimic VRFCoordinatorV2's behavior (#10585) +- Enhanced support for destination configs in Data Streams verifiers (#10472) +- Update Data Streams proxy and billing interfaces for better UX (#10603) +- Allow new reward recipients to be added to pools in Data Streams reward management (#10658) +- Reorganize Data Streams contracts (llo-feeds/) (#10727) +- Release automation 2.1 contracts (#10587) + - Note: consumers should only use IKeeperRegistryMaster when interacting with the registry contract +- Fix Functions v1 OracleWithdrawAll to correctly use transmitters (#10392) +- Clean up unused Functions v1 code: FunctionsBilling.sol maxCallbackGasLimit & FunctionsRequest.sol requestSignature (#10509) +- Fix Functions v1 FunctionsBilling.sol gas price naming to reflect that it is in wei, not gwei (#10509) +- Use Natspec comment lines in Functions v1 contracts (#10567) +- Functions v1 Subscriptions now require a minimum number of requests to release a deposit amount (#10513) +- Fix Functions v1 Subscriptions add consumer checks for when maximum consumers changes in contract configuration (#10511) +- Functions v1 Router no longer reverts during fulfillment on an invalid client (#10511) +- Functions v1 Coordinator oracleWithdrawAll checks for 0 balances (#10511) + ## 0.7.1 - 2023-09-20 ### Changed diff --git a/contracts/package.json b/contracts/package.json index 750eaca181a..dbe47be5221 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -1,6 +1,6 @@ { "name": "@chainlink/contracts", - "version": "0.7.1", + "version": "0.8.0", "description": "Chainlink smart contracts", "author": "Chainlink devs", "license": "MIT", @@ -17,7 +17,7 @@ "coverage": "hardhat coverage", "prepublishOnly": "pnpm compile && ./scripts/prepublish_generate_abi_folder", "publish-beta": "pnpm publish --tag beta", - "publish-prod": "npm dist-tag add @chainlink/contracts@0.7.1 latest" + "publish-prod": "npm dist-tag add @chainlink/contracts@0.8.0 latest" }, "files": [ "src/",