From d73aaa7985592b239d2b34dbb7e56bbd4519b410 Mon Sep 17 00:00:00 2001 From: Janison Sivarajah Date: Fri, 26 Feb 2021 12:29:57 -0500 Subject: [PATCH] Release v0.0.25 (#61) --- changelogs/v0.0.25.md | 7 +++++++ etc/sdk.api.md | 2 ++ lerna.json | 2 +- packages/mailbox/package.json | 4 ++-- packages/sdk/package.json | 10 +++++----- packages/storage/package.json | 8 ++++---- packages/users/package.json | 4 ++-- packages/utils/package.json | 2 +- 8 files changed, 24 insertions(+), 15 deletions(-) create mode 100644 changelogs/v0.0.25.md diff --git a/changelogs/v0.0.25.md b/changelogs/v0.0.25.md new file mode 100644 index 0000000..9f1d08f --- /dev/null +++ b/changelogs/v0.0.25.md @@ -0,0 +1,7 @@ +# CHANGELOG + +## v0.0.25 + +### Fixes +- Gives sharing permissions to sharees so they can also share or make public +- Saves UUID for files so that they are consistent across owner and sharees diff --git a/etc/sdk.api.md b/etc/sdk.api.md index a7c98f6..0cfef34 100644 --- a/etc/sdk.api.md +++ b/etc/sdk.api.md @@ -193,6 +193,8 @@ export interface FullPath { dbId?: string; // (undocumented) path: string; + // (undocumented) + uuid?: string; } // @public (undocumented) diff --git a/lerna.json b/lerna.json index 7427636..897e920 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.0.24", + "version": "0.0.25", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/mailbox/package.json b/packages/mailbox/package.json index 4870319..718f9d1 100644 --- a/packages/mailbox/package.json +++ b/packages/mailbox/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/mailbox", - "version": "0.0.24", + "version": "0.0.25", "description": "Space Mailbox implementation", "main": "dist/index", "types": "dist/index", @@ -37,7 +37,7 @@ "dependencies": { "@improbable-eng/grpc-web": "^0.14.0", "@spacehq/users": "^0.0.13", - "@spacehq/utils": "^0.0.24", + "@spacehq/utils": "^0.0.25", "@textile/crypto": "^2.0.0", "@types/lodash": "^4.14.165", "axios": "^0.21.1", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 7ba7df1..518a80a 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/sdk", - "version": "0.0.24", + "version": "0.0.25", "description": "Space SDK Library", "main": "dist/index", "types": "dist/index", @@ -33,9 +33,9 @@ "typescript": "^3.9.3" }, "dependencies": { - "@spacehq/mailbox": "^0.0.24", - "@spacehq/storage": "^0.0.24", - "@spacehq/users": "^0.0.24", - "@spacehq/utils": "^0.0.24" + "@spacehq/mailbox": "^0.0.25", + "@spacehq/storage": "^0.0.25", + "@spacehq/users": "^0.0.25", + "@spacehq/utils": "^0.0.25" } } diff --git a/packages/storage/package.json b/packages/storage/package.json index c8120c7..44315c6 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/storage", - "version": "0.0.24", + "version": "0.0.25", "description": "Space storage implementation", "main": "dist/index", "types": "dist/index", @@ -42,9 +42,9 @@ }, "dependencies": { "@improbable-eng/grpc-web": "^0.13.0", - "@spacehq/mailbox": "^0.0.24", - "@spacehq/users": "^0.0.24", - "@spacehq/utils": "^0.0.24", + "@spacehq/mailbox": "^0.0.25", + "@spacehq/users": "^0.0.25", + "@spacehq/utils": "^0.0.25", "@textile/crypto": "^2.0.0", "@textile/hub": "^4.1.0", "@textile/threads-id": "^0.4.0", diff --git a/packages/users/package.json b/packages/users/package.json index d95a3e0..a8c89c6 100644 --- a/packages/users/package.json +++ b/packages/users/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/users", - "version": "0.0.24", + "version": "0.0.25", "description": "Space users implementation", "main": "dist/index", "types": "dist/index", @@ -35,7 +35,7 @@ "websocket-polyfill": "^0.0.3" }, "dependencies": { - "@spacehq/utils": "^0.0.24", + "@spacehq/utils": "^0.0.25", "@textile/crypto": "^2.0.0", "@types/lodash": "^4.14.165", "axios": "^0.21.1", diff --git a/packages/utils/package.json b/packages/utils/package.json index f06913d..66eaf67 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/utils", - "version": "0.0.24", + "version": "0.0.25", "description": "Space Common Utils", "main": "dist/index", "types": "dist/index",