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

release/1.13.0 -> develop #8733

Merged
merged 33 commits into from
Mar 21, 2023
Merged
Changes from 28 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fc427ec
Support dynamic TOML (#8421)
krehermann Feb 13, 2023
988d4b8
Bump version and update CHANGELOG for core v1.12.1
chainchad Feb 16, 2023
d1336c8
core/cmd: handle loadOpts errs
jmank88 Feb 17, 2023
b0f37cf
Merge pull request #8469 from smartcontractkit/fix-config-errs-1.12.1
chainchad Feb 17, 2023
f3c101f
core/cmd: fix CL_CONFIG handling
jmank88 Feb 17, 2023
047798a
Update core/cmd/app.go
jmank88 Feb 17, 2023
b781c74
Merge pull request #8474 from smartcontractkit/fix-config-env-1.12.1
chainchad Feb 17, 2023
199e89b
core: fix config flag help text
jmank88 Feb 17, 2023
d3d6b33
Merge pull request #8484 from smartcontractkit/fix-config-flag-help-1…
chainchad Feb 17, 2023
4b0728f
Fix config v2 check
anirudhwarrier Feb 20, 2023
be748ed
Merge pull request #8500 from smartcontractkit/fix-config-check-1.12.1
chainchad Feb 20, 2023
e7355c4
core/services/chainlink: dump LogPoller and UICSAKeys Feature flags (…
jmank88 Feb 21, 2023
74334cc
Merge pull request #8509 from smartcontractkit/BCF-2092-fix-config-du…
chainchad Feb 21, 2023
500b808
Merge branch 'release/1.12.1' into release/1.13.0
chainchad Feb 28, 2023
bee9b1c
Bump version and update CHANGELOG for core v1.13.0
chainchad Feb 28, 2023
3fc626b
Merge branch 'develop' into release/1.13.0
chainchad Mar 1, 2023
387c81b
BCI-268: fix distinct query (#8606)
augustbleeds Mar 2, 2023
a2b5d36
Merge pull request #8634 from smartcontractkit/chore/release-1.13.0-c…
chainchad Mar 6, 2023
2713e22
VRF-367 Fix use of getRoundRobinAddress in VRF listener (#8653)
vreff Mar 8, 2023
db00218
Fix integration test build (#8662)
makramkd Mar 9, 2023
e75ebc5
Merge pull request #8660 from smartcontractkit/release/1.13.0-vrf-rou…
chainchad Mar 9, 2023
c6505d3
Fixes new job proposals not storing the name when received (#8699) (#…
jkongie Mar 14, 2023
6bb6534
core/cmd: only run fallback API initializer when file not present (#8…
jmank88 Mar 15, 2023
dfbd060
Merge pull request #8720 from smartcontractkit/chore/bcf-2139-cherry-…
chainchad Mar 16, 2023
006716e
Finalize date on changelog for 1.13.0
chainchad Mar 16, 2023
594387e
Merge pull request #8727 from smartcontractkit/chore/release-1.13.0-f…
chainchad Mar 16, 2023
b39d997
Merge branch 'develop' into chore/release-1.13.0-develop-conflicts
chainchad Mar 16, 2023
e6f5a2a
Merge pull request #8736 from smartcontractkit/chore/release-1.13.0-d…
chainchad Mar 17, 2023
c750964
Merge branch 'develop' into chore/release-1.13.0-develop-conflicts-3
chainchad Mar 20, 2023
44f871d
Merge branch 'release/1.13.0' into chore/release-1.13.0-develop-confl…
chainchad Mar 20, 2023
2fe34b5
Merge pull request #8764 from smartcontractkit/chore/release-1.13.0-d…
chainchad Mar 21, 2023
82ac077
Merge branch 'develop' into release/1.13.0
secureandrew Mar 21, 2023
759b578
Merge branch 'develop' into release/1.13.0
secureandrew Mar 21, 2023
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
14 changes: 9 additions & 5 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- unreleased -->
## [dev]

### Removed
- Configuration with legacy environment variables is no longer supported. TOML is required.
...

<!-- unreleasedstop -->

## 1.13.0 - UNRELEASED
## 1.13.0 - 2023-03-16

### Added

Expand All @@ -31,6 +32,11 @@ AutoCreateKey = false
- TOML env var `CL_CONFIG` always processed as the last configuration, with the effect of being the final override
of any values provided via configuration files.

### Updated

- TOML env var `CL_CONFIG` always processed as the last configuration, with the effect of being the final override
of any values provided via configuration files.

### Changed

- The config option `FeatureFeedsManager`/`FEATURE_FEEDS_MANAGER` is now true by default.
Expand All @@ -39,8 +45,6 @@ of any values provided via configuration files.

- Terra is no longer supported

<!-- unreleasedstop -->

## 1.12.0 - 2023-02-15

### Added
Expand Down