Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore/release 2.10.0 to develop #12740

Merged
merged 28 commits into from
Apr 8, 2024
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fc9c8a0
Add MetricsRegistry to automation (#12359)
george-dorin Mar 11, 2024
32507dc
Merge pull request #12374 from smartcontractkit/2.10-automation-metri…
snehaagni Mar 11, 2024
4592b9a
BCF-3052 - Job Based KV Store and juelsFeePerCoin reboot persistence …
ilija42 Mar 12, 2024
1eda459
Merge pull request #12401 from smartcontractkit/release/2.10.0-cherry…
snehaagni Mar 12, 2024
0f67d0b
Fix in memory data source cache error logging and add err log when ca…
ilija42 Mar 26, 2024
25de9e3
Handle zkSync "known transaction" error (SHIP-1233) (#12338)
friedemannf Mar 26, 2024
f588207
Merge pull request #12594 from smartcontractkit/cherrypick-jfpc-cache…
ilija42 Mar 26, 2024
c535dfa
Merge branch 'release/2.10.0' into jtw/cherry-pick-zkSync-error-fix
friedemannf Mar 27, 2024
03334b4
fix: trigger operator-ui-ci with specific tag (#12601)
momentmaker Mar 26, 2024
76feac0
update operator-ui-ci tag conditional (#12607)
momentmaker Mar 27, 2024
68ba9d0
fix: check for target branch name instead of current for operator-ui-…
momentmaker Mar 27, 2024
1734647
add rebalancer support for feeds manager ocr2 plugins (#12344)
eutopian Mar 8, 2024
a0affa3
Merge pull request #12616 from smartcontractkit/fix/operator-ui-ci
snehaagni Mar 27, 2024
a072f57
Merge branch 'release/2.10.0' into jtw/cherry-pick-zkSync-error-fix
snehaagni Mar 27, 2024
61d0f28
Merge pull request #12600 from smartcontractkit/jtw/cherry-pick-zkSyn…
snehaagni Mar 27, 2024
47eb373
[Functions] Fix bug in comparing subscriptions (#12379) (#12576)
bolekk Mar 27, 2024
37e2532
Add cascade delete to kv store table fk (#12629)
ilija42 Mar 28, 2024
513983a
Merge pull request #12631 from smartcontractkit/chore/release/2.10.0-…
chainchad Mar 28, 2024
dd6b748
Fix InMemoryDataSourceCache cleanup (#12647)
ilija42 Apr 1, 2024
10eda86
Merge pull request #12652 from smartcontractkit/chore/release/2.10.0-…
chainchad Apr 1, 2024
8f42d89
Bump operator-ui (#12684) (#12687)
george-dorin Apr 3, 2024
dd28b93
Finalize date on changelog for 2.10.0
snehaagni Apr 5, 2024
d7a398d
fix spacing
snehaagni Apr 5, 2024
bebce4c
Remove old operator-ui assets
george-dorin Apr 5, 2024
4377794
Merge pull request #12721 from smartcontractkit/remove-old-operator-u…
snehaagni Apr 5, 2024
6930a0c
Merge branch 'release/2.10.0' into chore/update-release-changelog-2.10.0
snehaagni Apr 5, 2024
0fe6514
Merge pull request #12707 from smartcontractkit/chore/update-release-…
snehaagni Apr 5, 2024
d0cc165
Merge branch 'develop' into chore/release-2.10.0-to-develop
krehermann Apr 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- HeadTracker now respects the `FinalityTagEnabled` config option. If the flag is enabled, HeadTracker backfills blocks up to the latest finalized block provided by the corresponding RPC call. To address potential misconfigurations, `HistoryDepth` is now calculated from the latest finalized block instead of the head. NOTE: Consumers (e.g. TXM and LogPoller) do not fully utilize Finality Tag yet.

...
<!-- unreleasedstop -->

## 2.10.0 - UNRELEASED
## 2.10.0 - 2024-04-05

### Added

Expand All @@ -24,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add preliminary support for "llo" job type (Data Streams V1)
- Add `LogPrunePageSize` parameter to the EVM configuration. This parameter controls the number of logs removed during prune phase in LogPoller. Default value is 0, which deletes all logs at once - exactly how it used to work, so it doesn't require any changes on the product's side.
- Add Juels Fee Per Coin data source caching for OCR2 Feeds. Cache is time based and is turned on by default with default cache refresh of 5 minutes. Cache can be configured through pluginconfig using "juelsPerFeeCoinCacheDuration" and "juelsPerFeeCoinCacheDisabled" tags. Duration tag accepts values between "30s" and "20m" with default of "0s" that is overridden on cache startup to 5 minutes.
- Add rebalancer support for feeds manager ocr2 plugins.

### Fixed

Expand All @@ -35,8 +37,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Minimum required version of Postgres is now >= 12. Postgres 11 was EOL'd in November 2023. Added a new version check that will prevent Chainlink from running on EOL'd Postgres. If you are running Postgres <= 11 you should upgrade to the latest version. The check can be forcibly overridden by setting SKIP_PG_VERSION_CHECK=true.
- Updated the `LimitDefault` and `LimitMax` configs types to `uint64`

<!-- unreleasedstop -->

## 2.9.1 - 2024-03-07

### Changed
Expand Down
Loading