diff --git a/.changeset/add-account-update-api.md b/.changeset/add-account-update-api.md deleted file mode 100644 index f54fd0e84..000000000 --- a/.changeset/add-account-update-api.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@siafoundation/indexd-types': minor -'@siafoundation/indexd-js': minor -'@siafoundation/indexd-react': minor ---- - -Added account update API. diff --git a/.changeset/add-account-update-ui.md b/.changeset/add-account-update-ui.md deleted file mode 100644 index 65a92f116..000000000 --- a/.changeset/add-account-update-ui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'indexd': minor ---- - -Added editable max pinned data field to account side panel. diff --git a/.changeset/add-contract-delete-api.md b/.changeset/add-contract-delete-api.md deleted file mode 100644 index cc2e66796..000000000 --- a/.changeset/add-contract-delete-api.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@siafoundation/indexd-types': minor -'@siafoundation/indexd-js': minor -'@siafoundation/indexd-react': minor ---- - -Added contract delete API. diff --git a/.changeset/add-contract-delete-ui.md b/.changeset/add-contract-delete-ui.md deleted file mode 100644 index 93e36d6ec..000000000 --- a/.changeset/add-contract-delete-ui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'indexd': minor ---- - -Added contract delete action to contract side panel and bulk actions. diff --git a/.changeset/expand-account-stats-types.md b/.changeset/expand-account-stats-types.md deleted file mode 100644 index a22de3860..000000000 --- a/.changeset/expand-account-stats-types.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@siafoundation/indexd-types': minor ---- - -Expanded account stats response with active, pinnedData, and pinnedSize fields. diff --git a/.changeset/expand-account-stats-ui.md b/.changeset/expand-account-stats-ui.md deleted file mode 100644 index 59c730612..000000000 --- a/.changeset/expand-account-stats-ui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'indexd': minor ---- - -Expanded account stats metrics with active accounts, pinned data, and pinned size. diff --git a/.changeset/expand-sector-stats-types.md b/.changeset/expand-sector-stats-types.md deleted file mode 100644 index 120f72c73..000000000 --- a/.changeset/expand-sector-stats-types.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@siafoundation/indexd-types': minor ---- - -Expanded sector stats response with lost, checked, and checkFailed fields. diff --git a/.changeset/expand-sector-stats-ui.md b/.changeset/expand-sector-stats-ui.md deleted file mode 100644 index 38b7ddf02..000000000 --- a/.changeset/expand-sector-stats-ui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'indexd': minor ---- - -Expanded sector stats metrics with lost, checked, and check failed sectors. diff --git a/apps/indexd/CHANGELOG.md b/apps/indexd/CHANGELOG.md index a41e1b127..0625966e8 100644 --- a/apps/indexd/CHANGELOG.md +++ b/apps/indexd/CHANGELOG.md @@ -1,5 +1,23 @@ # indexd +## 0.18.0 + +### Minor Changes + +- b9fbb89: Added editable max pinned data field to account side panel. +- 6c275d1: Added contract delete action to contract side panel and bulk actions. +- 51c4840: Expanded account stats metrics with active accounts, pinned data, and pinned size. +- aa56baa: Expanded sector stats metrics with lost, checked, and check failed sectors. + +### Patch Changes + +- Updated dependencies [b9fbb89] +- Updated dependencies [6c275d1] +- Updated dependencies [51c4840] +- Updated dependencies [aa56baa] + - @siafoundation/indexd-types@0.16.0 + - @siafoundation/indexd-react@0.10.0 + ## 0.17.0 ### Minor Changes diff --git a/apps/indexd/package.json b/apps/indexd/package.json index ff920c53e..35442887e 100644 --- a/apps/indexd/package.json +++ b/apps/indexd/package.json @@ -1,14 +1,14 @@ { "name": "indexd", - "version": "0.17.0", + "version": "0.18.0", "private": true, "description": "The `indexd` user interface, dedicated to indexer related functionality.", "license": "MIT", "dependencies": { "@siafoundation/design-system": "12.0.0", "@siafoundation/fonts": "0.5.3", - "@siafoundation/indexd-react": "0.9.0", - "@siafoundation/indexd-types": "0.15.0", + "@siafoundation/indexd-react": "0.10.0", + "@siafoundation/indexd-types": "0.16.0", "@siafoundation/react-core": "8.2.1", "@siafoundation/react-icons": "0.5.0", "@siafoundation/types": "0.13.0", diff --git a/libs/indexd-js/CHANGELOG.md b/libs/indexd-js/CHANGELOG.md index 713c872c9..6cc4dbbc1 100644 --- a/libs/indexd-js/CHANGELOG.md +++ b/libs/indexd-js/CHANGELOG.md @@ -1,5 +1,20 @@ # @siafoundation/indexd-js +## 0.11.0 + +### Minor Changes + +- b9fbb89: Added account update API. +- 6c275d1: Added contract delete API. + +### Patch Changes + +- Updated dependencies [b9fbb89] +- Updated dependencies [6c275d1] +- Updated dependencies [51c4840] +- Updated dependencies [aa56baa] + - @siafoundation/indexd-types@0.16.0 + ## 0.10.0 ### Minor Changes diff --git a/libs/indexd-js/package.json b/libs/indexd-js/package.json index 1a12b81f5..dea5dd2f7 100644 --- a/libs/indexd-js/package.json +++ b/libs/indexd-js/package.json @@ -1,6 +1,6 @@ { "name": "@siafoundation/indexd-js", - "version": "0.10.0", + "version": "0.11.0", "description": "SDK for interacting with `indexd`.", "license": "MIT", "repository": { @@ -9,7 +9,7 @@ }, "types": "./src/index.d.ts", "dependencies": { - "@siafoundation/indexd-types": "0.15.0", + "@siafoundation/indexd-types": "0.16.0", "@siafoundation/request": "0.5.1" } } diff --git a/libs/indexd-react/CHANGELOG.md b/libs/indexd-react/CHANGELOG.md index a564d236d..f00a670fb 100644 --- a/libs/indexd-react/CHANGELOG.md +++ b/libs/indexd-react/CHANGELOG.md @@ -1,5 +1,20 @@ # @siafoundation/indexd-react +## 0.10.0 + +### Minor Changes + +- b9fbb89: Added account update API. +- 6c275d1: Added contract delete API. + +### Patch Changes + +- Updated dependencies [b9fbb89] +- Updated dependencies [6c275d1] +- Updated dependencies [51c4840] +- Updated dependencies [aa56baa] + - @siafoundation/indexd-types@0.16.0 + ## 0.9.0 ### Minor Changes diff --git a/libs/indexd-react/package.json b/libs/indexd-react/package.json index 5a9aa2ca8..e62092615 100644 --- a/libs/indexd-react/package.json +++ b/libs/indexd-react/package.json @@ -1,6 +1,6 @@ { "name": "@siafoundation/indexd-react", - "version": "0.9.0", + "version": "0.10.0", "description": "React hooks for interacting with `indexd`.", "license": "MIT", "repository": { @@ -9,7 +9,7 @@ }, "types": "./src/index.d.ts", "dependencies": { - "@siafoundation/indexd-types": "0.15.0", + "@siafoundation/indexd-types": "0.16.0", "@siafoundation/react-core": "^8.2.1", "@siafoundation/units": "3.9.0", "swr": "^2.3.7" diff --git a/libs/indexd-types/CHANGELOG.md b/libs/indexd-types/CHANGELOG.md index 8e8f0d13e..1e0347061 100644 --- a/libs/indexd-types/CHANGELOG.md +++ b/libs/indexd-types/CHANGELOG.md @@ -1,5 +1,14 @@ # @siafoundation/indexd-types +## 0.16.0 + +### Minor Changes + +- b9fbb89: Added account update API. +- 6c275d1: Added contract delete API. +- 51c4840: Expanded account stats response with active, pinnedData, and pinnedSize fields. +- aa56baa: Expanded sector stats response with lost, checked, and checkFailed fields. + ## 0.15.0 ### Minor Changes diff --git a/libs/indexd-types/package.json b/libs/indexd-types/package.json index a793e5aa9..860692477 100644 --- a/libs/indexd-types/package.json +++ b/libs/indexd-types/package.json @@ -1,6 +1,6 @@ { "name": "@siafoundation/indexd-types", - "version": "0.15.0", + "version": "0.16.0", "description": "Types for `indexd`.", "license": "MIT", "repository": {