Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:atala-community-projects/pluto-en…
Browse files Browse the repository at this point in the history
…crypted

* 'master' of github.com:atala-community-projects/pluto-encrypted:
  chore(release): release 1.11.0 # [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/test-suite@1.10.0...@pluto-encrypted/test-suite@1.11.0) (2024-01-10)
  chore(release): release 1.11.0 # [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/shared@1.10.0...@pluto-encrypted/shared@1.11.0) (2024-01-10)
  chore(release): release 1.1.0 # [1.1.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/schemas@1.0.0...@pluto-encrypted/schemas@1.1.0) (2024-01-10)
  chore(release): release 1.11.0 # [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/leveldb@1.10.0...@pluto-encrypted/leveldb@1.11.0) (2024-01-10)
  chore(release): release 1.11.0 # [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/inmemory@1.10.0...@pluto-encrypted/inmemory@1.11.0) (2024-01-10)
  chore(release): release 1.11.0 # [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/indexdb@1.10.0...@pluto-encrypted/indexdb@1.11.0) (2024-01-10)
  chore(release): release 1.13.0 # [1.13.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/database@1.12.0...@pluto-encrypted/database@1.13.0) (2024-01-10)
  chore(release): release 1.11.0 # @pluto-encrypted/encryption [1.11.0](https://github.com/atala-community-projects/pluto-encrypted/compare/@pluto-encrypted/encryption@1.10.0...@pluto-encrypted/encryption@1.11.0) (2024-01-10)
  • Loading branch information
elribonazo committed Jan 10, 2024
2 parents 4bce433 + 6f9b2d2 commit 79612dd
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 42 deletions.
24 changes: 12 additions & 12 deletions packages/database/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/database",
"version": "1.12.0",
"version": "1.13.0",
"description": "Encrypted database for Edge Wallet SDK that supports multiple db, IndexDB, LevelDB and InMemory",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -36,24 +36,24 @@
"@atala/prism-wallet-sdk": "^4.0.0-rc.1"
},
"optionalDependencies": {
"@pluto-encrypted/indexdb": "1.10.0",
"@pluto-encrypted/inmemory": "1.10.0",
"@pluto-encrypted/leveldb": "1.10.0"
"@pluto-encrypted/indexdb": "1.11.0",
"@pluto-encrypted/inmemory": "1.11.0",
"@pluto-encrypted/leveldb": "1.11.0"
},
"devDependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/indexdb": "1.10.0",
"@pluto-encrypted/inmemory": "1.10.0",
"@pluto-encrypted/leveldb": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/indexdb": "1.11.0",
"@pluto-encrypted/inmemory": "1.11.0",
"@pluto-encrypted/leveldb": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@pluto-encrypted/schemas": "^1.0.0",
"@vitest/coverage-v8": "^1.0.4",
"level": "^6.0.1"
},
"dependencies": {
"@atala/prism-wallet-sdk": "^4.0.0-rc.1",
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@pluto-encrypted/schemas": "^1.0.0",
"rxdb": "^14.17.0",
"rxjs": "7.8.1",
Expand All @@ -63,4 +63,4 @@
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}
2 changes: 1 addition & 1 deletion packages/encryption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/encryption",
"version": "1.10.0",
"version": "1.11.0",
"description": "Encryption layer for @pluto-encrypted/database storages.",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down
12 changes: 6 additions & 6 deletions packages/indexdb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/indexdb",
"version": "1.10.0",
"version": "1.11.0",
"description": "Secure Encrypted IndexDB storage for @pluto-encrypted/database",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -33,14 +33,14 @@
"dependencies": {
"rxdb": "^14.17.0",
"uuid": "^9.0.1",
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"array-push-at-sort-position": "^4.0.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/test-suite": "1.10.0"
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@pluto-encrypted/test-suite": "1.11.0"
},
"files": [
"build/*"
Expand Down
12 changes: 6 additions & 6 deletions packages/inmemory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/inmemory",
"version": "1.10.0",
"version": "1.11.0",
"description": "Secure Encrypted InMemory storage for @pluto-encrypted/database",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -31,16 +31,16 @@
"author": "elribonazo@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"array-push-at-sort-position": "^4.0.1",
"rxdb": "^14.17.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/test-suite": "1.10.0"
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@pluto-encrypted/test-suite": "1.11.0"
},
"files": [
"build/*"
Expand Down
14 changes: 7 additions & 7 deletions packages/leveldb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/leveldb",
"version": "1.10.0",
"version": "1.11.0",
"description": "Secure Encrypted LevelDB storage for @pluto-encrypted/database",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -31,8 +31,8 @@
"author": "elribonazo@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"array-push-at-sort-position": "^4.0.1",
"level": "^6.0.1",
"module-error": "^1.0.2",
Expand All @@ -42,12 +42,12 @@
"uuid": "^9.0.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/test-suite": "1.10.0"
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@pluto-encrypted/test-suite": "1.11.0"
},
"files": [
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}
10 changes: 5 additions & 5 deletions packages/schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/schemas",
"version": "1.0.0",
"version": "1.1.0",
"description": "Provides the default schemas used in @pluto-encrypted/database",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -30,14 +30,14 @@
"@atala/prism-wallet-sdk": "^4.0.0-rc.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"@vitest/coverage-v8": "^1.0.4"
},
"dependencies": {
"@atala/prism-wallet-sdk": "^4.0.0-rc.1",
"@pluto-encrypted/encryption": "1.10.0",
"@pluto-encrypted/shared": "1.10.0",
"@pluto-encrypted/encryption": "1.11.0",
"@pluto-encrypted/shared": "1.11.0",
"rxdb": "^14.17.0",
"rxjs": "7.8.1",
"uuid": "^9.0.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/shared",
"version": "1.10.0",
"version": "1.11.0",
"description": "Shared depencencies for @pluto-encrypted and its db providers",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -29,10 +29,10 @@
"dependencies": {
"rxdb": "^14.17.0",
"uuid": "^9.0.1",
"@pluto-encrypted/encryption": "1.10.0"
"@pluto-encrypted/encryption": "1.11.0"
},
"files": [
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}
4 changes: 2 additions & 2 deletions packages/test-suite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/test-suite",
"version": "1.10.0",
"version": "1.11.0",
"description": "This is a test-suite that works out of the box without cloning rxdb repo or submodule, it does not support replication!!",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -37,4 +37,4 @@
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}

0 comments on commit 79612dd

Please sign in to comment.