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/",