From e1ff1c32a29f502b9ae3b0f367e9850e82e3ce0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 31 Jan 2025 15:30:13 +0000 Subject: [PATCH] RELEASING: Releasing 9 package(s) Releases: @hyperlane-xyz/sdk@8.5.1 @hyperlane-xyz/core@5.11.2 @hyperlane-xyz/cli@8.5.1 @hyperlane-xyz/helloworld@8.5.1 @hyperlane-xyz/infra@8.5.1 @hyperlane-xyz/widgets@8.5.1 @hyperlane-xyz/ccip-server@8.5.1 @hyperlane-xyz/github-proxy@8.5.1 @hyperlane-xyz/utils@8.5.1 [skip ci] --- .changeset/late-fishes-end.md | 5 ----- .changeset/red-games-agree.md | 6 ------ solidity/CHANGELOG.md | 7 +++++++ solidity/package.json | 4 ++-- typescript/ccip-server/CHANGELOG.md | 2 ++ typescript/ccip-server/package.json | 2 +- typescript/cli/CHANGELOG.md | 9 +++++++++ typescript/cli/package.json | 6 +++--- typescript/github-proxy/CHANGELOG.md | 2 ++ typescript/github-proxy/package.json | 2 +- typescript/helloworld/CHANGELOG.md | 9 +++++++++ typescript/helloworld/package.json | 6 +++--- typescript/infra/CHANGELOG.md | 10 ++++++++++ typescript/infra/package.json | 8 ++++---- typescript/sdk/CHANGELOG.md | 10 ++++++++++ typescript/sdk/package.json | 6 +++--- typescript/utils/CHANGELOG.md | 2 ++ typescript/utils/package.json | 2 +- typescript/widgets/CHANGELOG.md | 9 +++++++++ typescript/widgets/package.json | 6 +++--- 20 files changed, 81 insertions(+), 32 deletions(-) delete mode 100644 .changeset/late-fishes-end.md delete mode 100644 .changeset/red-games-agree.md diff --git a/.changeset/late-fishes-end.md b/.changeset/late-fishes-end.md deleted file mode 100644 index 1fe798f3cfb..00000000000 --- a/.changeset/late-fishes-end.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hyperlane-xyz/sdk': patch ---- - -Fix contract address filtering to remove undefined factory addresses from the addresses map diff --git a/.changeset/red-games-agree.md b/.changeset/red-games-agree.md deleted file mode 100644 index a746b1aacaa..00000000000 --- a/.changeset/red-games-agree.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/sdk': patch -'@hyperlane-xyz/core': patch ---- - -Added ESLint configuration and dependency to enforce Node.js module restrictions diff --git a/solidity/CHANGELOG.md b/solidity/CHANGELOG.md index f691134b94e..88527568d83 100644 --- a/solidity/CHANGELOG.md +++ b/solidity/CHANGELOG.md @@ -1,5 +1,12 @@ # @hyperlane-xyz/core +## 5.11.2 + +### Patch Changes + +- ba50e62fc: Added ESLint configuration and dependency to enforce Node.js module restrictions + - @hyperlane-xyz/utils@8.5.1 + ## 5.11.1 ### Patch Changes diff --git a/solidity/package.json b/solidity/package.json index c367e7b9310..b608da35374 100644 --- a/solidity/package.json +++ b/solidity/package.json @@ -1,11 +1,11 @@ { "name": "@hyperlane-xyz/core", "description": "Core solidity contracts for Hyperlane", - "version": "5.11.1", + "version": "5.11.2", "dependencies": { "@arbitrum/nitro-contracts": "^1.2.1", "@eth-optimism/contracts": "^0.6.0", - "@hyperlane-xyz/utils": "8.5.0", + "@hyperlane-xyz/utils": "8.5.1", "@layerzerolabs/lz-evm-oapp-v2": "2.0.2", "@openzeppelin/contracts": "^4.9.3", "@openzeppelin/contracts-upgradeable": "^4.9.3", diff --git a/typescript/ccip-server/CHANGELOG.md b/typescript/ccip-server/CHANGELOG.md index 0564dd1b3d0..e9e9ea5d47e 100644 --- a/typescript/ccip-server/CHANGELOG.md +++ b/typescript/ccip-server/CHANGELOG.md @@ -1,5 +1,7 @@ # @hyperlane-xyz/ccip-server +## 8.5.1 + ## 8.5.0 ## 8.4.0 diff --git a/typescript/ccip-server/package.json b/typescript/ccip-server/package.json index 67d929f243d..9a640cd8b10 100644 --- a/typescript/ccip-server/package.json +++ b/typescript/ccip-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperlane-xyz/ccip-server", - "version": "8.5.0", + "version": "8.5.1", "description": "CCIP server", "typings": "dist/index.d.ts", "typedocMain": "src/index.ts", diff --git a/typescript/cli/CHANGELOG.md b/typescript/cli/CHANGELOG.md index ab4b3a6c0a4..f8f1506cb68 100644 --- a/typescript/cli/CHANGELOG.md +++ b/typescript/cli/CHANGELOG.md @@ -1,5 +1,14 @@ # @hyperlane-xyz/cli +## 8.5.1 + +### Patch Changes + +- Updated dependencies [ac984a17b] +- Updated dependencies [ba50e62fc] + - @hyperlane-xyz/sdk@8.5.1 + - @hyperlane-xyz/utils@8.5.1 + ## 8.5.0 ### Patch Changes diff --git a/typescript/cli/package.json b/typescript/cli/package.json index 30516c94a34..151b634869e 100644 --- a/typescript/cli/package.json +++ b/typescript/cli/package.json @@ -1,13 +1,13 @@ { "name": "@hyperlane-xyz/cli", - "version": "8.5.0", + "version": "8.5.1", "description": "A command-line utility for common Hyperlane operations", "dependencies": { "@aws-sdk/client-kms": "^3.577.0", "@aws-sdk/client-s3": "^3.577.0", "@hyperlane-xyz/registry": "7.4.0", - "@hyperlane-xyz/sdk": "8.5.0", - "@hyperlane-xyz/utils": "8.5.0", + "@hyperlane-xyz/sdk": "8.5.1", + "@hyperlane-xyz/utils": "8.5.1", "@inquirer/core": "9.0.10", "@inquirer/figures": "1.0.5", "@inquirer/prompts": "3.3.2", diff --git a/typescript/github-proxy/CHANGELOG.md b/typescript/github-proxy/CHANGELOG.md index af7c59be507..44205bf35bd 100644 --- a/typescript/github-proxy/CHANGELOG.md +++ b/typescript/github-proxy/CHANGELOG.md @@ -1,5 +1,7 @@ # @hyperlane-xyz/github-proxy +## 8.5.1 + ## 8.5.0 ## 8.4.0 diff --git a/typescript/github-proxy/package.json b/typescript/github-proxy/package.json index 2ef8b4f9bac..3b46f4dcae8 100644 --- a/typescript/github-proxy/package.json +++ b/typescript/github-proxy/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/github-proxy", "description": "Github proxy that adds the API key to requests", - "version": "8.5.0", + "version": "8.5.1", "private": true, "scripts": { "deploy": "wrangler deploy", diff --git a/typescript/helloworld/CHANGELOG.md b/typescript/helloworld/CHANGELOG.md index 7da2e79f83d..af2de0dd5a5 100644 --- a/typescript/helloworld/CHANGELOG.md +++ b/typescript/helloworld/CHANGELOG.md @@ -1,5 +1,14 @@ # @hyperlane-xyz/helloworld +## 8.5.1 + +### Patch Changes + +- Updated dependencies [ac984a17b] +- Updated dependencies [ba50e62fc] + - @hyperlane-xyz/sdk@8.5.1 + - @hyperlane-xyz/core@5.11.2 + ## 8.5.0 ### Patch Changes diff --git a/typescript/helloworld/package.json b/typescript/helloworld/package.json index 1ed81a27ac4..cebdc8265a2 100644 --- a/typescript/helloworld/package.json +++ b/typescript/helloworld/package.json @@ -1,11 +1,11 @@ { "name": "@hyperlane-xyz/helloworld", "description": "A basic skeleton of an Hyperlane app", - "version": "8.5.0", + "version": "8.5.1", "dependencies": { - "@hyperlane-xyz/core": "5.11.1", + "@hyperlane-xyz/core": "5.11.2", "@hyperlane-xyz/registry": "7.4.0", - "@hyperlane-xyz/sdk": "8.5.0", + "@hyperlane-xyz/sdk": "8.5.1", "@openzeppelin/contracts-upgradeable": "^4.9.3", "ethers": "^5.7.2" }, diff --git a/typescript/infra/CHANGELOG.md b/typescript/infra/CHANGELOG.md index 7ca6a8909d9..c45433443b2 100644 --- a/typescript/infra/CHANGELOG.md +++ b/typescript/infra/CHANGELOG.md @@ -1,5 +1,15 @@ # @hyperlane-xyz/infra +## 8.5.1 + +### Patch Changes + +- Updated dependencies [ac984a17b] +- Updated dependencies [ba50e62fc] + - @hyperlane-xyz/sdk@8.5.1 + - @hyperlane-xyz/helloworld@8.5.1 + - @hyperlane-xyz/utils@8.5.1 + ## 8.5.0 ### Patch Changes diff --git a/typescript/infra/package.json b/typescript/infra/package.json index c27b8f12ba5..9da96961ca1 100644 --- a/typescript/infra/package.json +++ b/typescript/infra/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/infra", "description": "Infrastructure utilities for the Hyperlane Network", - "version": "8.5.0", + "version": "8.5.1", "dependencies": { "@arbitrum/sdk": "^4.0.0", "@aws-sdk/client-iam": "^3.74.0", @@ -13,10 +13,10 @@ "@ethersproject/hardware-wallets": "^5.7.0", "@ethersproject/providers": "*", "@google-cloud/secret-manager": "^5.5.0", - "@hyperlane-xyz/helloworld": "8.5.0", + "@hyperlane-xyz/helloworld": "8.5.1", "@hyperlane-xyz/registry": "7.4.0", - "@hyperlane-xyz/sdk": "8.5.0", - "@hyperlane-xyz/utils": "8.5.0", + "@hyperlane-xyz/sdk": "8.5.1", + "@hyperlane-xyz/utils": "8.5.1", "@inquirer/prompts": "3.3.2", "@nomiclabs/hardhat-etherscan": "^3.0.3", "@safe-global/api-kit": "1.3.0", diff --git a/typescript/sdk/CHANGELOG.md b/typescript/sdk/CHANGELOG.md index e8389325263..466d2a3f711 100644 --- a/typescript/sdk/CHANGELOG.md +++ b/typescript/sdk/CHANGELOG.md @@ -1,5 +1,15 @@ # @hyperlane-xyz/sdk +## 8.5.1 + +### Patch Changes + +- ac984a17b: Fix contract address filtering to remove undefined factory addresses from the addresses map +- ba50e62fc: Added ESLint configuration and dependency to enforce Node.js module restrictions +- Updated dependencies [ba50e62fc] + - @hyperlane-xyz/core@5.11.2 + - @hyperlane-xyz/utils@8.5.1 + ## 8.5.0 ### Minor Changes diff --git a/typescript/sdk/package.json b/typescript/sdk/package.json index 79f67348c72..ff234f3faae 100644 --- a/typescript/sdk/package.json +++ b/typescript/sdk/package.json @@ -1,15 +1,15 @@ { "name": "@hyperlane-xyz/sdk", "description": "The official SDK for the Hyperlane Network", - "version": "8.5.0", + "version": "8.5.1", "dependencies": { "@arbitrum/sdk": "^4.0.0", "@aws-sdk/client-s3": "^3.577.0", "@chain-registry/types": "^0.50.14", "@cosmjs/cosmwasm-stargate": "^0.32.4", "@cosmjs/stargate": "^0.32.4", - "@hyperlane-xyz/core": "5.11.1", - "@hyperlane-xyz/utils": "8.5.0", + "@hyperlane-xyz/core": "5.11.2", + "@hyperlane-xyz/utils": "8.5.1", "@safe-global/api-kit": "1.3.0", "@safe-global/protocol-kit": "1.3.0", "@safe-global/safe-deployments": "1.37.23", diff --git a/typescript/utils/CHANGELOG.md b/typescript/utils/CHANGELOG.md index b996560f215..f6931ccf7eb 100644 --- a/typescript/utils/CHANGELOG.md +++ b/typescript/utils/CHANGELOG.md @@ -1,5 +1,7 @@ # @hyperlane-xyz/utils +## 8.5.1 + ## 8.5.0 ## 8.4.0 diff --git a/typescript/utils/package.json b/typescript/utils/package.json index 00a84ff03c6..d5a7a4bf85e 100644 --- a/typescript/utils/package.json +++ b/typescript/utils/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/utils", "description": "General utilities and types for the Hyperlane network", - "version": "8.5.0", + "version": "8.5.1", "dependencies": { "@cosmjs/encoding": "^0.32.4", "@solana/web3.js": "^1.95.4", diff --git a/typescript/widgets/CHANGELOG.md b/typescript/widgets/CHANGELOG.md index a4441016f04..16df6cb38a7 100644 --- a/typescript/widgets/CHANGELOG.md +++ b/typescript/widgets/CHANGELOG.md @@ -1,5 +1,14 @@ # @hyperlane-xyz/widgets +## 8.5.1 + +### Patch Changes + +- Updated dependencies [ac984a17b] +- Updated dependencies [ba50e62fc] + - @hyperlane-xyz/sdk@8.5.1 + - @hyperlane-xyz/utils@8.5.1 + ## 8.5.0 ### Patch Changes diff --git a/typescript/widgets/package.json b/typescript/widgets/package.json index c7e2c4acec1..760baeb6654 100644 --- a/typescript/widgets/package.json +++ b/typescript/widgets/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/widgets", "description": "Common react components for Hyperlane projects", - "version": "8.5.0", + "version": "8.5.1", "peerDependencies": { "react": "^18", "react-dom": "^18" @@ -9,8 +9,8 @@ "dependencies": { "@cosmos-kit/react": "^2.18.0", "@headlessui/react": "^2.1.8", - "@hyperlane-xyz/sdk": "8.5.0", - "@hyperlane-xyz/utils": "8.5.0", + "@hyperlane-xyz/sdk": "8.5.1", + "@hyperlane-xyz/utils": "8.5.1", "@interchain-ui/react": "^1.23.28", "@rainbow-me/rainbowkit": "^2.2.0", "@solana/wallet-adapter-react": "^0.15.32",