diff --git a/.changeset/brown-pianos-travel.md b/.changeset/brown-pianos-travel.md new file mode 100644 index 000000000..690fba00d --- /dev/null +++ b/.changeset/brown-pianos-travel.md @@ -0,0 +1,7 @@ +--- +'@siafoundation/renterd-js': minor +'@siafoundation/renterd-react': minor +'@siafoundation/renterd-types': minor +--- + +Removed deprecated object search and object directory APIs. diff --git a/.changeset/cyan-jokes-prove.md b/.changeset/cyan-jokes-prove.md new file mode 100644 index 000000000..46ff3d245 --- /dev/null +++ b/.changeset/cyan-jokes-prove.md @@ -0,0 +1,5 @@ +--- +'renterd': minor +--- + +The files directory and global mode explorers now use the new list objects API. diff --git a/.changeset/dry-elephants-try.md b/.changeset/dry-elephants-try.md new file mode 100644 index 000000000..e1774edfd --- /dev/null +++ b/.changeset/dry-elephants-try.md @@ -0,0 +1,7 @@ +--- +'@siafoundation/renterd-js': minor +'@siafoundation/renterd-react': minor +'@siafoundation/renterd-types': minor +--- + +Updated the multipart upload APIs with the new payloads. diff --git a/.changeset/wild-ties-rescue.md b/.changeset/wild-ties-rescue.md new file mode 100644 index 000000000..eac06cab1 --- /dev/null +++ b/.changeset/wild-ties-rescue.md @@ -0,0 +1,5 @@ +--- +'@siafoundation/design-system': minor +--- + +Added ellipsis boolean to truncate, deprecated humanId. diff --git a/apps/explorer/components/EntityHeading.tsx b/apps/explorer/components/EntityHeading.tsx index e428208a6..262c521ad 100644 --- a/apps/explorer/components/EntityHeading.tsx +++ b/apps/explorer/components/EntityHeading.tsx @@ -3,7 +3,7 @@ import { copyToClipboard, Heading, - humanId, + truncate, Button, Link, } from '@siafoundation/design-system' @@ -25,7 +25,7 @@ export function EntityHeading({ label, type, value, href }: Props) { {upperFirst(label)}{' '} {type === 'block' && Number(value).toLocaleString()} - {type !== 'block' && humanId(value, 15)} + {type !== 'block' && truncate(value, 15)}