Skip to content

Commit

Permalink
Merge branch 'dfinity:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorjoinu authored Apr 26, 2024
2 parents 0c0b57f + f000c7d commit b5aff86
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 31 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/size-limit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ jobs:
CI_JOB_NUMBER: 1
steps:
- uses: actions/checkout@v1
- run: npm install -g npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
# - run: npm run size-limit --workspaces --if-present

# commented out until the job can be configured
Expand Down
3 changes: 3 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## [Unreleased]

## [1.2.1] - 2024-04-25

### Changed

- feat: make `IdbStorage` `get/set` methods generic
- chore: add context to errors thrown when failing to decode CBOR values.
- chore: replaces globle npm install with setup-node for size-limit action

## [1.2.0] - 2024-03-25

Expand Down
8 changes: 4 additions & 4 deletions e2e/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@do-not-publish/ic-cypress-e2e-tests",
"version": "1.2.0",
"version": "1.2.1",
"scripts": {
"ci": "npm run e2e",
"setup": "dfx deploy; dfx generate; pm2 --name parcel start npm -- start",
Expand All @@ -27,9 +27,9 @@
"size-limit": "^8.1.0"
},
"dependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@dfinity/agent": "^1.2.1",
"@dfinity/identity": "^1.2.1",
"@dfinity/principal": "^1.2.1",
"idb-keyval": "^6.2.0"
},
"optionalDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions e2e/node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@do-not-publish/ic-node-e2e-tests",
"version": "1.2.0",
"version": "1.2.1",
"type": "module",
"scripts": {
"ci": "npm run e2e",
Expand All @@ -16,10 +16,10 @@
"test": ""
},
"dependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/assets": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@dfinity/agent": "^1.2.1",
"@dfinity/assets": "^1.2.1",
"@dfinity/identity": "^1.2.1",
"@dfinity/principal": "^1.2.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/agent-monorepo",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"description": "Use an Agent to interact with the Internet Computer from your JavaScript program.",
"workspaces": {
Expand Down
6 changes: 3 additions & 3 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/agent",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to interact with the Internet Computer",
Expand Down Expand Up @@ -47,8 +47,8 @@
"test:coverage": "jest --collectCoverage"
},
"peerDependencies": {
"@dfinity/candid": "^1.2.0",
"@dfinity/principal": "^1.2.0"
"@dfinity/candid": "^1.2.1",
"@dfinity/principal": "^1.2.1"
},
"dependencies": {
"@noble/curves": "^1.4.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/assets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/assets",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to manage assets on the Internet Computer",
Expand Down Expand Up @@ -49,8 +49,8 @@
"test:coverage": "jest --collectCoverage"
},
"peerDependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@dfinity/agent": "^1.2.1",
"@dfinity/principal": "^1.2.1",
"@noble/hashes": "^1.3.1"
},
"dependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/auth-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/auth-client",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to provide a simple integration with an IC Internet Identity",
Expand Down Expand Up @@ -46,9 +46,9 @@
"test:coverage": "jest --collectCoverage"
},
"peerDependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0"
"@dfinity/agent": "^1.2.1",
"@dfinity/identity": "^1.2.1",
"@dfinity/principal": "^1.2.1"
},
"dependencies": {
"idb": "^7.0.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/candid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/candid",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to work with candid interfaces",
Expand Down Expand Up @@ -48,7 +48,7 @@
"test:coverage": "jest --collectCoverage"
},
"peerDependencies": {
"@dfinity/principal": "^1.2.0"
"@dfinity/principal": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/identity-secp256k1/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/identity-secp256k1",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to manage Secp256k1KeyIdentities for use with the Internet Computer",
Expand All @@ -14,7 +14,7 @@
"test:coverage": "jest --collectCoverage"
},
"dependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/agent": "^1.2.1",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.3.1",
"asn1js": "^3.0.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/identity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/identity",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to manage identity with the Internet Computer",
Expand Down Expand Up @@ -45,8 +45,8 @@
"test:coverage": "jest --collectCoverage"
},
"peerDependencies": {
"@dfinity/agent": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@dfinity/agent": "^1.2.1",
"@dfinity/principal": "^1.2.1",
"@peculiar/webcrypto": "^1.4.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/principal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dfinity/principal",
"version": "1.2.0",
"version": "1.2.1",
"author": "DFINITY Stiftung <[email protected]>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to work with Internet Computer principals",
Expand Down

0 comments on commit b5aff86

Please sign in to comment.