Skip to content

Commit

Permalink
fix: upgrade package dependencies (#101)
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Ribó Labrador <elribonazo@gmail.com>
  • Loading branch information
elribonazo authored Jun 15, 2024
1 parent cba8415 commit 3bc9d69
Show file tree
Hide file tree
Showing 8 changed files with 398 additions and 213 deletions.
532 changes: 344 additions & 188 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,6 @@
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"typedoc-plugin-external-module-map": "^2.0.1"
}
}
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}
11 changes: 9 additions & 2 deletions packages/encryption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluto-encrypted/encryption",
"version": "1.11.0",
"version": "2.0.0",
"description": "Encryption layer for @pluto-encrypted/database storages.",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand Down Expand Up @@ -30,7 +30,14 @@
"@noble/ciphers": "^0.4.1",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"buffer": "^6.0.3",
"buffer": "^6.0.3"
},
"peerDependencies": {
"rxdb": "15.24.0",
"rxjs": "7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"rxdb": "15.24.0",
"rxjs": "7.8.1",
"uuid": "^9.0.1"
Expand Down
12 changes: 8 additions & 4 deletions packages/indexdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,23 @@
"author": "elribonazo@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1",
"@pluto-encrypted/encryption": "2.0.0",
"@pluto-encrypted/shared": "2.0.0",
"array-push-at-sort-position": "^4.0.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "2.0.0",
"@pluto-encrypted/shared": "2.0.0",
"@pluto-encrypted/test-suite": "2.0.0"
"@pluto-encrypted/test-suite": "2.0.0",
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"files": [
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}
14 changes: 9 additions & 5 deletions packages/inmemory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,21 @@
"dependencies": {
"@pluto-encrypted/encryption": "2.0.0",
"@pluto-encrypted/shared": "2.0.0",
"array-push-at-sort-position": "^4.0.1",
"rxdb": "15.24.0",
"uuid": "^9.0.1"
"array-push-at-sort-position": "^4.0.1"
},
"devDependencies": {
"@pluto-encrypted/encryption": "2.0.0",
"@pluto-encrypted/shared": "2.0.0",
"@pluto-encrypted/test-suite": "2.0.0"
"@pluto-encrypted/test-suite": "2.0.0",
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"files": [
"build/*"
],
"gitHead": "adf50b6a30f1ca6fe207aac5b5bb74ad1aba6c47"
}
}
14 changes: 9 additions & 5 deletions packages/leveldb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,21 @@
"level": "^6.0.1",
"module-error": "^1.0.2",
"pull-level": "^2.0.4",
"pull-stream": "^3.7.0",
"rxdb": "15.24.0",
"uuid": "^9.0.1"
"pull-stream": "^3.7.0"
},
"devDependencies": {
"@pluto-encrypted/encryption": "2.0.0",
"@pluto-encrypted/shared": "2.0.0",
"@pluto-encrypted/test-suite": "2.0.0"
"@pluto-encrypted/test-suite": "2.0.0",
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"files": [
"build/*"
],
"gitHead": "6aa4ce8bbb9938fc4c4e790efffa5b902631362c"
}
}
11 changes: 7 additions & 4 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.11.3",
"version": "2.0.0",
"description": "Shared depencencies for @pluto-encrypted and its db providers",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.mjs",
Expand All @@ -26,10 +26,13 @@
},
"author": "elribonazo@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"peerDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1",
"@pluto-encrypted/encryption": "1.11.0"
"uuid": "^9.0.1"
},
"devDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"files": [
"build/*"
Expand Down
12 changes: 9 additions & 3 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.12.1",
"version": "2.0.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 @@ -29,10 +29,16 @@
"dependencies": {
"@faker-js/faker": "^8.3.1",
"async-test-util": "^2.2.1",
"rxdb": "15.24.0",
"uuid": "^9.0.1",
"vitest": "^1.0.4"
},
"peerDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"rxdb": "15.24.0",
"uuid": "^9.0.1"
},
"files": [
"build/*"
],
Expand Down

0 comments on commit 3bc9d69

Please sign in to comment.