Skip to content

Commit

Permalink
chore: release 1.2.0 (#867)
Browse files Browse the repository at this point in the history
* Release 1.2.0

---------

Co-authored-by: Kai Peacock <kylpeacock@gmail.com>
  • Loading branch information
github-actions[bot] and krpeacock committed Mar 25, 2024
1 parent 638e019 commit d73d5e9
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 30 deletions.
3 changes: 3 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [1.2.0] - 2024-03-25

### Added

* feat: adds support for verified queries against management canister
Expand Down Expand Up @@ -34,6 +36,7 @@ const result = await management.bitcoin_get_balance_query({

### Changed

* chore: npm audit fix
* feat!: support for restricting II auth methods
* New login option: `allowPinAuthentication?: boolean;`
* Response from II includes `authnMethod: 'passkey' | 'pin' | 'recovery';`
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.1.1",
"version": "1.2.0",
"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.1.1",
"@dfinity/identity": "^1.1.1",
"@dfinity/principal": "^1.1.1",
"@dfinity/agent": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"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.1.1",
"version": "1.2.0",
"type": "module",
"scripts": {
"ci": "npm run e2e",
Expand All @@ -16,10 +16,10 @@
"test": ""
},
"dependencies": {
"@dfinity/agent": "^1.1.1",
"@dfinity/assets": "^1.1.1",
"@dfinity/identity": "^1.1.1",
"@dfinity/principal": "^1.1.1",
"@dfinity/agent": "^1.2.0",
"@dfinity/assets": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"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.1.1",
"version": "1.2.0",
"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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1",
"@dfinity/principal": "^1.1.1"
"@dfinity/candid": "^1.2.0",
"@dfinity/principal": "^1.2.0"
},
"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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1",
"@dfinity/principal": "^1.1.1",
"@dfinity/agent": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1",
"@dfinity/identity": "^1.1.1",
"@dfinity/principal": "^1.1.1"
"@dfinity/agent": "^1.2.0",
"@dfinity/identity": "^1.2.0",
"@dfinity/principal": "^1.2.0"
},
"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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1"
"@dfinity/principal": "^1.2.0"
},
"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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1",
"@dfinity/agent": "^1.2.0",
"@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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"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.1.1",
"@dfinity/principal": "^1.1.1",
"@dfinity/agent": "^1.2.0",
"@dfinity/principal": "^1.2.0",
"@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.1.1",
"version": "1.2.0",
"author": "DFINITY Stiftung <sdk@dfinity.org>",
"license": "Apache-2.0",
"description": "JavaScript and TypeScript library to work with Internet Computer principals",
Expand Down

0 comments on commit d73d5e9

Please sign in to comment.