Skip to content

Commit

Permalink
fix: make multiformats 9 go away (#133)
Browse files Browse the repository at this point in the history
I'm pretty sure `packages/store` is now completely broken but the tests
have been disabled for a long while and AFAIK it is unused. Upgrading
the deps in `packages/store` was the only way I could make the compile
step in `packages/access-api` work.
  • Loading branch information
alanshaw committed Nov 4, 2022
1 parent 61c924f commit cdb4109
Show file tree
Hide file tree
Showing 5 changed files with 684 additions and 559 deletions.
18 changes: 9 additions & 9 deletions packages/access-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "(Apache-2.0 OR MIT)",
"dependencies": {
"@ipld/dag-ucan": "4.0.0-beta",
"@ucanto/client": "^2.0.0",
"@ucanto/core": "^2.0.0",
"@ucanto/interface": "^2.0.0",
"@ucanto/principal": "^2.0.0",
"@ucanto/server": "^2.0.0",
"@ucanto/transport": "^2.0.0",
"@ucanto/validator": "^2.0.0",
"@ipld/dag-ucan": "^2.0.1",
"@ucanto/client": "^3.0.1",
"@ucanto/core": "^3.0.1",
"@ucanto/interface": "^3.0.0",
"@ucanto/principal": "^3.0.0",
"@ucanto/server": "^3.0.1",
"@ucanto/transport": "^3.0.1",
"@ucanto/validator": "^3.0.1",
"@web3-storage/access": "workspace:^",
"@web3-storage/worker-utils": "0.4.3-dev",
"multiformats": "^9.8.1",
"multiformats": "^10.0.2",
"nanoid": "^4.0.0",
"p-retry": "^5.1.1",
"preact": "^10.11.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/access-ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@types/ws": "^8.5.3",
"@web3-storage/worker-utils": "0.4.3-dev",
"isomorphic-ws": "^5.0.0",
"multiformats": "^9.8.1",
"multiformats": "^10.0.2",
"nanoid": "^4.0.0",
"toucan-js": "^2.7.0",
"ws": "^8.10.0"
Expand Down
20 changes: 10 additions & 10 deletions packages/access/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,23 @@
"dist/src/**/*.d.ts.map"
],
"dependencies": {
"@ipld/car": "^4.1.5",
"@ipld/dag-ucan": "4.0.0-beta",
"@ipld/car": "^5.0.0",
"@ipld/dag-ucan": "^2.0.1",
"@noble/ed25519": "^1.7.1",
"@types/ws": "^8.5.3",
"@ucanto/client": "^2.0.0",
"@ucanto/core": "^2.0.0",
"@ucanto/interface": "^2.0.0",
"@ucanto/principal": "^2.0.0",
"@ucanto/server": "^2.0.0",
"@ucanto/transport": "^2.0.0",
"@ucanto/validator": "^2.0.0",
"@ucanto/client": "^3.0.1",
"@ucanto/core": "^3.0.1",
"@ucanto/interface": "^3.0.0",
"@ucanto/principal": "^3.0.0",
"@ucanto/server": "^3.0.1",
"@ucanto/transport": "^3.0.1",
"@ucanto/validator": "^3.0.1",
"@web-std/fetch": "^4.1.0",
"bigint-mod-arith": "^3.1.2",
"conf": "^10.1.2",
"inquirer": "^9.1.4",
"isomorphic-ws": "^5.0.0",
"multiformats": "^9.8.1",
"multiformats": "^10.0.2",
"nanoid": "^4.0.0",
"one-webcrypto": "^1.0.3",
"ora": "^6.1.2",
Expand Down
16 changes: 8 additions & 8 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"lintss": "tsc --build && eslint '**/*.{js,ts}' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore"
},
"dependencies": {
"@ucanto/client": "^2.0.0",
"@ucanto/core": "^2.0.0",
"@ucanto/interface": "^2.0.0",
"@ucanto/principal": "^2.0.0",
"@ucanto/server": "^2.0.0",
"@ucanto/transport": "^2.0.0",
"@ucanto/validator": "^2.0.0",
"@ucanto/client": "^3.0.1",
"@ucanto/core": "^3.0.1",
"@ucanto/interface": "^3.0.0",
"@ucanto/principal": "^3.0.0",
"@ucanto/server": "^3.0.1",
"@ucanto/transport": "^3.0.1",
"@ucanto/validator": "^3.0.1",
"@web-std/fetch": "^4.1.0",
"@web3-storage/sigv4": "^1.0.0",
"multiformats": "^9.7.0"
"multiformats": "^10.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
Expand Down
Loading

0 comments on commit cdb4109

Please sign in to comment.