Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 0 additions & 7 deletions .changeset/fix-evm-revert-status-1771384563.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/minor-bump-1771355195.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/puny-pots-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sour-paths-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-roses-argue.md

This file was deleted.

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog Chainlink Core

## 2.36.0

### Minor Changes

- [#21208](https://github.com/smartcontractkit/chainlink/pull/21208) [`140625e`](https://github.com/smartcontractkit/chainlink/commit/140625edee02df6a608178b166e72cf2bd8a14a1) - Minor bump to start next version

### Patch Changes

- [#21220](https://github.com/smartcontractkit/chainlink/pull/21220) [`d5f838f`](https://github.com/smartcontractkit/chainlink/commit/d5f838f2b46c5ac2b0c152e7b23f875a3d741816) - Fix EVMService.SubmitTransaction to return TxReverted when receipt status is 0 (reverted), instead of always returning TxSuccess. This resolves OCR consensus failures on Polygon WriteReport where DON nodes returned inconsistent results for reverted transactions.

- [#18882](https://github.com/smartcontractkit/chainlink/pull/18882) [`de0dfd6`](https://github.com/smartcontractkit/chainlink/commit/de0dfd67feb23e5c8504fa32e23ad526ebcaa3a4) - #updated Update Aptos deployment ops to support new OnRamp bindings.

- [#21275](https://github.com/smartcontractkit/chainlink/pull/21275) [`ce46b0b`](https://github.com/smartcontractkit/chainlink/commit/ce46b0b4081cf8408f12fdac90df86c68b63b842) - Bump dependency of chainlink-evm #internal

- [#21237](https://github.com/smartcontractkit/chainlink/pull/21237) [`0ec7a41`](https://github.com/smartcontractkit/chainlink/commit/0ec7a41d4678a438a62886acbe87399339ab6bf9) - #updated In llo observation loop ensure that the Pipeline streams are extracted atomically

## 2.35.0

### Minor Changes
Expand Down
9 changes: 2 additions & 7 deletions core/services/gateway/handlers/vault/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,13 +359,8 @@ func (h *handler) HandleJSONRPCUserMessage(ctx context.Context, req jsonrpc.Requ
return h.handlePublicKeyGetSynchronously(ctx, req, publicKeyResponseBytes, callback)

case vaulttypes.MethodSecretsGet:
// Secrets get is only allowed in non-production builds for testing purposes
// So no authorization is required
ar, err := h.newActiveRequest(req, callback)
if err != nil {
return err
}
return h.handleSecretsGet(ctx, ar)
h.lggr.Errorw("Get requests not allowed", "requestID", req.ID)
return errors.New("get request not allowed")
}

isAuthorized, owner, err := h.requestAuthorizer.AuthorizeRequest(ctx, req)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chainlink",
"version": "2.35.0",
"version": "2.36.0",
"description": "node of the decentralized oracle network, bridging on and off-chain computation",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion system-tests/tests/smoke/cre/v2_vault_don_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ func ExecuteVaultTest(t *testing.T, testEnv *ttypes.TestEnvironment) {
framework.L.Info().Msg("Waiting 30 seconds for the Vault DON to be ready...")
time.Sleep(30 * time.Second)
executeVaultSecretsCreateTest(t, encryptedSecret, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
executeVaultSecretsGetTest(t, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
// disable get tests
// executeVaultSecretsGetTest(t, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
executeVaultSecretsUpdateTest(t, encryptedSecret, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
executeVaultSecretsListTest(t, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
executeVaultSecretsDeleteTest(t, secretID, ownerAddr, gatewayURL.String(), sethClient, wfRegistryContract)
Expand Down
Loading