From 5b4aafdcbc1b6fb78c6ec4eeb2a1ef876ba3e2dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 8 Nov 2024 20:57:41 +0000 Subject: [PATCH] chore: release packages --- .changeset/light-onions-clean.md | 5 ---- .changeset/loud-doors-learn.md | 5 ---- .changeset/red-plums-protect.md | 5 ---- .changeset/small-eggs-talk.md | 5 ---- .changeset/thirty-nails-raise.md | 5 ---- .changeset/warm-moles-care.md | 7 ------ apps/explorer/CHANGELOG.md | 7 ++++++ apps/explorer/package.json | 2 +- apps/hostd/CHANGELOG.md | 6 +++++ apps/hostd/package.json | 2 +- apps/renterd/CHANGELOG.md | 6 +++++ apps/renterd/package.json | 2 +- apps/walletd/CHANGELOG.md | 10 ++++++++ apps/walletd/package.json | 2 +- libs/hostd-js/CHANGELOG.md | 7 ++++++ libs/hostd-js/package.json | 4 +-- libs/hostd-react/CHANGELOG.md | 7 ++++++ libs/hostd-react/package.json | 4 +-- libs/hostd-types/CHANGELOG.md | 6 +++++ libs/hostd-types/package.json | 2 +- libs/walletd-js/CHANGELOG.md | 7 ++++++ libs/walletd-js/package.json | 4 +-- libs/walletd-mock/CHANGELOG.md | 7 ++++++ libs/walletd-mock/package.json | 4 +-- libs/walletd-react/CHANGELOG.md | 7 ++++++ libs/walletd-react/package.json | 4 +-- libs/walletd-types/CHANGELOG.md | 6 +++++ libs/walletd-types/package.json | 2 +- package-lock.json | 42 ++++++++++++++++---------------- 29 files changed, 113 insertions(+), 69 deletions(-) delete mode 100644 .changeset/light-onions-clean.md delete mode 100644 .changeset/loud-doors-learn.md delete mode 100644 .changeset/red-plums-protect.md delete mode 100644 .changeset/small-eggs-talk.md delete mode 100644 .changeset/thirty-nails-raise.md delete mode 100644 .changeset/warm-moles-care.md diff --git a/.changeset/light-onions-clean.md b/.changeset/light-onions-clean.md deleted file mode 100644 index 52ae40cff..000000000 --- a/.changeset/light-onions-clean.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'walletd': patch ---- - -Updated the seed wallet address generation process to strip the address prefix, which matches the recent API change. Closes https://github.com/SiaFoundation/walletd/issues/190 diff --git a/.changeset/loud-doors-learn.md b/.changeset/loud-doors-learn.md deleted file mode 100644 index 4a23ec56c..000000000 --- a/.changeset/loud-doors-learn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@siafoundation/hostd-types': minor ---- - -The syncer peers response now includes more information and matches walletd. diff --git a/.changeset/red-plums-protect.md b/.changeset/red-plums-protect.md deleted file mode 100644 index 450aaac3a..000000000 --- a/.changeset/red-plums-protect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'explorer': minor ---- - -Stripped 'addr' from transaction inputs and output hrefs. diff --git a/.changeset/small-eggs-talk.md b/.changeset/small-eggs-talk.md deleted file mode 100644 index 8ddea7052..000000000 --- a/.changeset/small-eggs-talk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'explorer': minor ---- - -Fixed bug experienced when navigating directly to a block by its height. diff --git a/.changeset/thirty-nails-raise.md b/.changeset/thirty-nails-raise.md deleted file mode 100644 index 7c8e0b959..000000000 --- a/.changeset/thirty-nails-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@siafoundation/walletd-types': minor ---- - -The syncer peers response type updated to include address rather than addr. diff --git a/.changeset/warm-moles-care.md b/.changeset/warm-moles-care.md deleted file mode 100644 index 329bb9cde..000000000 --- a/.changeset/warm-moles-care.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'hostd': minor -'renterd': minor -'walletd': minor ---- - -Invalid and not found routes now redirect to the home page. diff --git a/apps/explorer/CHANGELOG.md b/apps/explorer/CHANGELOG.md index c6cddb97f..0b8ab84f0 100644 --- a/apps/explorer/CHANGELOG.md +++ b/apps/explorer/CHANGELOG.md @@ -1,5 +1,12 @@ # explorer +## 0.21.0 + +### Minor Changes + +- d6e4c8a5: Stripped 'addr' from transaction inputs and output hrefs. +- 61724842: Fixed bug experienced when navigating directly to a block by its height. + ## 0.20.0 ### Minor Changes diff --git a/apps/explorer/package.json b/apps/explorer/package.json index d66d94afa..3a7693956 100644 --- a/apps/explorer/package.json +++ b/apps/explorer/package.json @@ -1,7 +1,7 @@ { "name": "explorer", "description": "The `explorer` user interface, a Sia blockchain explorer interface that powers siascan.com.", - "version": "0.20.0", + "version": "0.21.0", "private": true, "license": "MIT" } diff --git a/apps/hostd/CHANGELOG.md b/apps/hostd/CHANGELOG.md index ace2e185d..91851790d 100644 --- a/apps/hostd/CHANGELOG.md +++ b/apps/hostd/CHANGELOG.md @@ -1,5 +1,11 @@ # hostd +## 0.51.0 + +### Minor Changes + +- fe888991: Invalid and not found routes now redirect to the home page. + ## 0.50.0 ### Minor Changes diff --git a/apps/hostd/package.json b/apps/hostd/package.json index 701ae2df5..e7cc359eb 100644 --- a/apps/hostd/package.json +++ b/apps/hostd/package.json @@ -1,7 +1,7 @@ { "name": "hostd", "description": "The `hostd` user interface, dedicated to hosting related functionality.", - "version": "0.50.0", + "version": "0.51.0", "private": true, "license": "MIT" } diff --git a/apps/renterd/CHANGELOG.md b/apps/renterd/CHANGELOG.md index 6c0b8ece5..1564dfde5 100644 --- a/apps/renterd/CHANGELOG.md +++ b/apps/renterd/CHANGELOG.md @@ -1,5 +1,11 @@ # renterd +## 0.67.0 + +### Minor Changes + +- fe888991: Invalid and not found routes now redirect to the home page. + ## 0.66.0 ### Minor Changes diff --git a/apps/renterd/package.json b/apps/renterd/package.json index 70887cdab..5c911fdd0 100644 --- a/apps/renterd/package.json +++ b/apps/renterd/package.json @@ -1,7 +1,7 @@ { "name": "renterd", "description": "The `renterd` user interface, dedicated to renter related functionality.", - "version": "0.66.0", + "version": "0.67.0", "private": true, "license": "MIT" } diff --git a/apps/walletd/CHANGELOG.md b/apps/walletd/CHANGELOG.md index dbea1075a..765f41e6e 100644 --- a/apps/walletd/CHANGELOG.md +++ b/apps/walletd/CHANGELOG.md @@ -1,5 +1,15 @@ # walletd +## 0.24.0 + +### Minor Changes + +- fe888991: Invalid and not found routes now redirect to the home page. + +### Patch Changes + +- 03221146: Updated the seed wallet address generation process to strip the address prefix, which matches the recent API change. Closes https://github.com/SiaFoundation/walletd/issues/190 + ## 0.23.2 ### Patch Changes diff --git a/apps/walletd/package.json b/apps/walletd/package.json index faf561a22..434ec25fd 100644 --- a/apps/walletd/package.json +++ b/apps/walletd/package.json @@ -1,7 +1,7 @@ { "name": "walletd", "description": "The `walletd` user interface, includes a wallet with support for hot, cold, and hardware wallets.", - "version": "0.23.2", + "version": "0.24.0", "private": true, "license": "MIT" } diff --git a/libs/hostd-js/CHANGELOG.md b/libs/hostd-js/CHANGELOG.md index ff5c0325b..b82a95fef 100644 --- a/libs/hostd-js/CHANGELOG.md +++ b/libs/hostd-js/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/hostd-js +## 0.3.1 + +### Patch Changes + +- Updated dependencies [d794e604] + - @siafoundation/hostd-types@0.4.0 + ## 0.3.0 ### Minor Changes diff --git a/libs/hostd-js/package.json b/libs/hostd-js/package.json index e0064bc63..3ab8d0bb1 100644 --- a/libs/hostd-js/package.json +++ b/libs/hostd-js/package.json @@ -1,11 +1,11 @@ { "name": "@siafoundation/hostd-js", "description": "SDK for interacting with `hostd`.", - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "dependencies": { "@siafoundation/request": "0.2.0", - "@siafoundation/hostd-types": "0.3.0" + "@siafoundation/hostd-types": "0.4.0" }, "types": "./src/index.d.ts" } diff --git a/libs/hostd-react/CHANGELOG.md b/libs/hostd-react/CHANGELOG.md index 74cadcbae..32c2b74ca 100644 --- a/libs/hostd-react/CHANGELOG.md +++ b/libs/hostd-react/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/hostd-react +## 4.4.1 + +### Patch Changes + +- Updated dependencies [d794e604] + - @siafoundation/hostd-types@0.4.0 + ## 4.4.0 ### Minor Changes diff --git a/libs/hostd-react/package.json b/libs/hostd-react/package.json index 248836442..78fd08171 100644 --- a/libs/hostd-react/package.json +++ b/libs/hostd-react/package.json @@ -1,12 +1,12 @@ { "name": "@siafoundation/hostd-react", "description": "React hooks for interacting with `hostd`.", - "version": "4.4.0", + "version": "4.4.1", "license": "MIT", "dependencies": { "swr": "^2.1.1", "@siafoundation/react-core": "^1.4.0", - "@siafoundation/hostd-types": "0.3.0", + "@siafoundation/hostd-types": "0.4.0", "@siafoundation/units": "3.2.0" }, "types": "./src/index.d.ts" diff --git a/libs/hostd-types/CHANGELOG.md b/libs/hostd-types/CHANGELOG.md index 5e56b9ed8..8ce688213 100644 --- a/libs/hostd-types/CHANGELOG.md +++ b/libs/hostd-types/CHANGELOG.md @@ -1,5 +1,11 @@ # @siafoundation/hostd-types +## 0.4.0 + +### Minor Changes + +- d794e604: The syncer peers response now includes more information and matches walletd. + ## 0.3.0 ### Minor Changes diff --git a/libs/hostd-types/package.json b/libs/hostd-types/package.json index 8598ecf9c..931408d28 100644 --- a/libs/hostd-types/package.json +++ b/libs/hostd-types/package.json @@ -1,7 +1,7 @@ { "name": "@siafoundation/hostd-types", "description": "Types for `hostd`.", - "version": "0.3.0", + "version": "0.4.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.6.0" diff --git a/libs/walletd-js/CHANGELOG.md b/libs/walletd-js/CHANGELOG.md index c1c934cd1..691464cfb 100644 --- a/libs/walletd-js/CHANGELOG.md +++ b/libs/walletd-js/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-js +## 0.2.5 + +### Patch Changes + +- Updated dependencies [d794e604] + - @siafoundation/walletd-types@0.5.0 + ## 0.2.4 ### Patch Changes diff --git a/libs/walletd-js/package.json b/libs/walletd-js/package.json index 357c11fe0..d6fedc8d0 100644 --- a/libs/walletd-js/package.json +++ b/libs/walletd-js/package.json @@ -1,11 +1,11 @@ { "name": "@siafoundation/walletd-js", "description": "SDK for interacting with `walletd`.", - "version": "0.2.4", + "version": "0.2.5", "license": "MIT", "dependencies": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.4.1" + "@siafoundation/walletd-types": "0.5.0" }, "types": "./src/index.d.ts" } diff --git a/libs/walletd-mock/CHANGELOG.md b/libs/walletd-mock/CHANGELOG.md index d5e03a8e5..7f43f010e 100644 --- a/libs/walletd-mock/CHANGELOG.md +++ b/libs/walletd-mock/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-mock +## 0.1.10 + +### Patch Changes + +- Updated dependencies [d794e604] + - @siafoundation/walletd-types@0.5.0 + ## 0.1.9 ### Patch Changes diff --git a/libs/walletd-mock/package.json b/libs/walletd-mock/package.json index 1a952de65..fc618cd35 100644 --- a/libs/walletd-mock/package.json +++ b/libs/walletd-mock/package.json @@ -1,14 +1,14 @@ { "name": "@siafoundation/walletd-mock", "description": "walletd data and API mock library for testing.", - "version": "0.1.9", + "version": "0.1.10", "license": "MIT", "dependencies": { "@siafoundation/types": "0.6.0", "@siafoundation/sia-central-mock": "0.2.0", "@siafoundation/units": "3.2.0", "playwright": "^1.42.1", - "@siafoundation/walletd-types": "0.4.1" + "@siafoundation/walletd-types": "0.5.0" }, "types": "./src/index.d.ts" } diff --git a/libs/walletd-react/CHANGELOG.md b/libs/walletd-react/CHANGELOG.md index 4057bb2fb..708ba150c 100644 --- a/libs/walletd-react/CHANGELOG.md +++ b/libs/walletd-react/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-react +## 4.3.3 + +### Patch Changes + +- Updated dependencies [d794e604] + - @siafoundation/walletd-types@0.5.0 + ## 4.3.2 ### Patch Changes diff --git a/libs/walletd-react/package.json b/libs/walletd-react/package.json index 3033c5f97..768a1ea86 100644 --- a/libs/walletd-react/package.json +++ b/libs/walletd-react/package.json @@ -1,12 +1,12 @@ { "name": "@siafoundation/walletd-react", "description": "React hooks for interacting with `walletd`.", - "version": "4.3.2", + "version": "4.3.3", "license": "MIT", "dependencies": { "@siafoundation/react-core": "^1.4.0", "swr": "^2.1.1", - "@siafoundation/walletd-types": "0.4.1", + "@siafoundation/walletd-types": "0.5.0", "@siafoundation/units": "3.2.0" }, "types": "./src/index.d.ts" diff --git a/libs/walletd-types/CHANGELOG.md b/libs/walletd-types/CHANGELOG.md index d726804be..94880a036 100644 --- a/libs/walletd-types/CHANGELOG.md +++ b/libs/walletd-types/CHANGELOG.md @@ -1,5 +1,11 @@ # @siafoundation/walletd-types +## 0.5.0 + +### Minor Changes + +- d794e604: The syncer peers response type updated to include address rather than addr. + ## 0.4.1 ### Patch Changes diff --git a/libs/walletd-types/package.json b/libs/walletd-types/package.json index 0ec9917d7..dfc336bf0 100644 --- a/libs/walletd-types/package.json +++ b/libs/walletd-types/package.json @@ -1,7 +1,7 @@ { "name": "@siafoundation/walletd-types", "description": "Types for `walletd`.", - "version": "0.4.1", + "version": "0.5.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.6.0" diff --git a/package-lock.json b/package-lock.json index 1a1d30c7b..769b30c17 100644 --- a/package-lock.json +++ b/package-lock.json @@ -216,7 +216,7 @@ "license": "MIT" }, "apps/explorer": { - "version": "0.20.0", + "version": "0.21.0", "license": "MIT" }, "apps/explorer-v1": { @@ -225,11 +225,11 @@ "license": "MIT" }, "apps/hostd": { - "version": "0.50.0", + "version": "0.51.0", "license": "MIT" }, "apps/renterd": { - "version": "0.66.0", + "version": "0.67.0", "license": "MIT" }, "apps/siad": { @@ -239,7 +239,7 @@ "license": "MIT" }, "apps/walletd": { - "version": "0.23.2", + "version": "0.24.0", "license": "MIT" }, "apps/website": { @@ -414,19 +414,19 @@ }, "libs/hostd-js": { "name": "@siafoundation/hostd-js", - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "dependencies": { - "@siafoundation/hostd-types": "0.3.0", + "@siafoundation/hostd-types": "0.4.0", "@siafoundation/request": "0.2.0" } }, "libs/hostd-react": { "name": "@siafoundation/hostd-react", - "version": "4.4.0", + "version": "4.4.1", "license": "MIT", "dependencies": { - "@siafoundation/hostd-types": "0.3.0", + "@siafoundation/hostd-types": "0.4.0", "@siafoundation/react-core": "^1.4.0", "@siafoundation/units": "3.2.0", "swr": "^2.1.1" @@ -434,7 +434,7 @@ }, "libs/hostd-types": { "name": "@siafoundation/hostd-types", - "version": "0.3.0", + "version": "0.4.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.6.0" @@ -715,39 +715,39 @@ }, "libs/walletd-js": { "name": "@siafoundation/walletd-js", - "version": "0.2.4", + "version": "0.2.5", "license": "MIT", "dependencies": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.4.1" + "@siafoundation/walletd-types": "0.5.0" } }, "libs/walletd-mock": { "name": "@siafoundation/walletd-mock", - "version": "0.1.9", + "version": "0.1.10", "license": "MIT", "dependencies": { "@siafoundation/sia-central-mock": "0.2.0", "@siafoundation/types": "0.6.0", "@siafoundation/units": "3.2.0", - "@siafoundation/walletd-types": "0.4.1", + "@siafoundation/walletd-types": "0.5.0", "playwright": "^1.42.1" } }, "libs/walletd-react": { "name": "@siafoundation/walletd-react", - "version": "4.3.2", + "version": "4.3.3", "license": "MIT", "dependencies": { "@siafoundation/react-core": "^1.4.0", "@siafoundation/units": "3.2.0", - "@siafoundation/walletd-types": "0.4.1", + "@siafoundation/walletd-types": "0.5.0", "swr": "^2.1.1" } }, "libs/walletd-types": { "name": "@siafoundation/walletd-types", - "version": "0.4.1", + "version": "0.5.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.6.0" @@ -38246,14 +38246,14 @@ "@siafoundation/hostd-js": { "version": "file:libs/hostd-js", "requires": { - "@siafoundation/hostd-types": "0.3.0", + "@siafoundation/hostd-types": "0.4.0", "@siafoundation/request": "0.2.0" } }, "@siafoundation/hostd-react": { "version": "file:libs/hostd-react", "requires": { - "@siafoundation/hostd-types": "0.3.0", + "@siafoundation/hostd-types": "0.4.0", "@siafoundation/react-core": "^1.4.0", "@siafoundation/units": "3.2.0", "swr": "^2.1.1" @@ -38368,7 +38368,7 @@ "version": "file:libs/walletd-js", "requires": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.4.1" + "@siafoundation/walletd-types": "0.5.0" } }, "@siafoundation/walletd-mock": { @@ -38377,7 +38377,7 @@ "@siafoundation/sia-central-mock": "0.2.0", "@siafoundation/types": "0.6.0", "@siafoundation/units": "3.2.0", - "@siafoundation/walletd-types": "0.4.1", + "@siafoundation/walletd-types": "0.5.0", "playwright": "^1.42.1" } }, @@ -38386,7 +38386,7 @@ "requires": { "@siafoundation/react-core": "^1.4.0", "@siafoundation/units": "3.2.0", - "@siafoundation/walletd-types": "0.4.1", + "@siafoundation/walletd-types": "0.5.0", "swr": "^2.1.1" } },