Skip to content

Commit 15b3d1c

Browse files
chore(main): release 0.8.0 (#88)
🤖 I have created a release *beep* *boop* --- ## [0.8.0](v0.7.1...v0.8.0) (2026-07-01) ### ⚠ BREAKING CHANGES * `DeleteChainMetadataChangesetInput.ChainMetadataKeys`, `DeleteContractMetadataChangesetInput.ContractMetadataKeys`, and `DeleteAddressRefChangesetInput.AddressRefKeys` — plus the matching operation Input fields — now hold concrete key structs instead of the framework interface. The `DeleteAddressRefKey` type previously exported from `datastore/changesets/` is removed. In-Go callers should switch to JSON construction (no in-tree callers in chainlink-deployments today). ### Features * add DeleteResourcesSeq and DeleteResourcesChangeset ([#78](#78)) ([f33c8f4](f33c8f4)) * add refactored set config changeset,sequences and ops ([#90](#90)) ([f5dde6f](f5dde6f)) * deploy custom topology mcms [CLD-2766] ([#100](#100)) ([b9638bc](b9638bc)) * fund mcms pdas [CLD-2765] ([#101](#101)) ([c71b37c](c71b37c)) * grant role timelock - changesets and EVM sequence ([#104](#104)) ([3d6a235](3d6a235)) * grant role timelock solana ([#109](#109)) ([5fe27c1](5fe27c1)) * jd changesets ([#103](#103)) ([628cfb7](628cfb7)) * JD changesets and operations ([628cfb7](628cfb7)) * **mcms:** add MCMS fire drill changeset [CLD-2764] ([#97](#97)) ([2530e9e](2530e9e)) * **mcms:** add Solana deploy changeset for MCMS with timelock [CLD-2719] ([#108](#108)) ([06e4c39](06e4c39)) * **mcms:** add solana support for transfer changeset ([#114](#114)) ([2695394](2695394)) * **mcms:** add transfer-to-timelock changeset [CLD-2762] ([#99](#99)) ([0d52620](0d52620)) * new mcms deploy changeset ([#89](#89)) ([a0317ae](a0317ae)) ### Bug Fixes * improve solana speed tests ([#111](#111)) ([d52089d](d52089d)) * make datastore delete inputs JSON-deserializable ([#87](#87)) ([68d4cda](68d4cda)) * **mcms/transfer:** change to datastore ref type ([#113](#113)) ([f75c78b](f75c78b)) * use opscontract.WriteOutput in set-config ([#107](#107)) ([e1a60bb](e1a60bb)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: app-token-issuer-ops-platform[bot] <275822481+app-token-issuer-ops-platform[bot]@users.noreply.github.com>
1 parent 3e32e1d commit 15b3d1c

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.1"
2+
".": "0.8.0"
33
}

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/smartcontractkit/cld-changesets/compare/v0.7.1...v0.8.0) (2026-07-01)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* `DeleteChainMetadataChangesetInput.ChainMetadataKeys`, `DeleteContractMetadataChangesetInput.ContractMetadataKeys`, and `DeleteAddressRefChangesetInput.AddressRefKeys` — plus the matching operation Input fields — now hold concrete key structs instead of the framework interface. The `DeleteAddressRefKey` type previously exported from `datastore/changesets/` is removed. In-Go callers should switch to JSON construction (no in-tree callers in chainlink-deployments today).
9+
10+
### Features
11+
12+
* add DeleteResourcesSeq and DeleteResourcesChangeset ([#78](https://github.com/smartcontractkit/cld-changesets/issues/78)) ([f33c8f4](https://github.com/smartcontractkit/cld-changesets/commit/f33c8f4be7b09028676b9e5d33ccd02e5779bd2c))
13+
* add refactored set config changeset,sequences and ops ([#90](https://github.com/smartcontractkit/cld-changesets/issues/90)) ([f5dde6f](https://github.com/smartcontractkit/cld-changesets/commit/f5dde6f57b8e9e506417e02b0b3fb20d4afc5759))
14+
* deploy custom topology mcms [CLD-2766] ([#100](https://github.com/smartcontractkit/cld-changesets/issues/100)) ([b9638bc](https://github.com/smartcontractkit/cld-changesets/commit/b9638bc9bca1cf5afa29eaa1fc98f834ba2c9624))
15+
* fund mcms pdas [CLD-2765] ([#101](https://github.com/smartcontractkit/cld-changesets/issues/101)) ([c71b37c](https://github.com/smartcontractkit/cld-changesets/commit/c71b37ca087000d38f5d30c6fbe72dc2e559cfcf))
16+
* grant role timelock - changesets and EVM sequence ([#104](https://github.com/smartcontractkit/cld-changesets/issues/104)) ([3d6a235](https://github.com/smartcontractkit/cld-changesets/commit/3d6a23509e3e1939d98759ef5c0506ec7b4772d0))
17+
* grant role timelock solana ([#109](https://github.com/smartcontractkit/cld-changesets/issues/109)) ([5fe27c1](https://github.com/smartcontractkit/cld-changesets/commit/5fe27c1e7b2185c925451ddeac637f5f9fe404b8))
18+
* jd changesets ([#103](https://github.com/smartcontractkit/cld-changesets/issues/103)) ([628cfb7](https://github.com/smartcontractkit/cld-changesets/commit/628cfb75b7a91ba9f4280b42f0632264a9671132))
19+
* JD changesets and operations ([628cfb7](https://github.com/smartcontractkit/cld-changesets/commit/628cfb75b7a91ba9f4280b42f0632264a9671132))
20+
* **mcms:** add MCMS fire drill changeset [CLD-2764] ([#97](https://github.com/smartcontractkit/cld-changesets/issues/97)) ([2530e9e](https://github.com/smartcontractkit/cld-changesets/commit/2530e9ebd4da5cb0652564e19cc479209bcda1a6))
21+
* **mcms:** add Solana deploy changeset for MCMS with timelock [CLD-2719] ([#108](https://github.com/smartcontractkit/cld-changesets/issues/108)) ([06e4c39](https://github.com/smartcontractkit/cld-changesets/commit/06e4c39abc3d57a933577d9edf4bc3419057156a))
22+
* **mcms:** add solana support for transfer changeset ([#114](https://github.com/smartcontractkit/cld-changesets/issues/114)) ([2695394](https://github.com/smartcontractkit/cld-changesets/commit/269539440b64c1a3eb430c1a4becfbf80fb3127b))
23+
* **mcms:** add transfer-to-timelock changeset [CLD-2762] ([#99](https://github.com/smartcontractkit/cld-changesets/issues/99)) ([0d52620](https://github.com/smartcontractkit/cld-changesets/commit/0d526204ffaca0853bfd8f2c81ad761dc52fa929))
24+
* new mcms deploy changeset ([#89](https://github.com/smartcontractkit/cld-changesets/issues/89)) ([a0317ae](https://github.com/smartcontractkit/cld-changesets/commit/a0317ae70d9d16cdb8520c1399d70a4a603b0fce))
25+
26+
27+
### Bug Fixes
28+
29+
* improve solana speed tests ([#111](https://github.com/smartcontractkit/cld-changesets/issues/111)) ([d52089d](https://github.com/smartcontractkit/cld-changesets/commit/d52089dfab97bccc1af0258fc7c5c4cf648b560f))
30+
* make datastore delete inputs JSON-deserializable ([#87](https://github.com/smartcontractkit/cld-changesets/issues/87)) ([68d4cda](https://github.com/smartcontractkit/cld-changesets/commit/68d4cda422b7853b6543a63563ee0c743eb3deaf))
31+
* **mcms/transfer:** change to datastore ref type ([#113](https://github.com/smartcontractkit/cld-changesets/issues/113)) ([f75c78b](https://github.com/smartcontractkit/cld-changesets/commit/f75c78be322cb75b77246b6299f6a87ac41633c2))
32+
* use opscontract.WriteOutput in set-config ([#107](https://github.com/smartcontractkit/cld-changesets/issues/107)) ([e1a60bb](https://github.com/smartcontractkit/cld-changesets/commit/e1a60bbd5e5391c4e39e8ba55e034cdb5ba5febf))
33+
334
## [0.7.1](https://github.com/smartcontractkit/cld-changesets/compare/v0.7.0...v0.7.1) (2026-06-10)
435

536

0 commit comments

Comments
 (0)