Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 0.21.0 #825

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/generated/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ <h1>Agent-JS Changelog</h1>

<section>
<h2>Version x.x.x</h2>
<ul></ul>
<h2>Version 0.21.0</h2>
<ul>
<li>chore: cleaning up lint warnings</li>
<li>chore: cleans up github actions linting warnings</li>
Expand Down
66 changes: 33 additions & 33 deletions e2e/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"private": true,
"name": "@do-not-publish/ic-cypress-e2e-tests",
"version": "0.20.2",
"scripts": {
"ci": "npm run e2e",
"setup": "dfx deploy; dfx generate; pm2 --name parcel start npm -- start",
"cypress": "cypress run",
"e2e": "npm run cypress",
"poste2e": "pm2 kill",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' cypress *.js",
"lint": "npm run eslint",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": "",
"start": "parcel src/index.html"
},
"devDependencies": {
"@types/node": "^18.0.6",
"concurrently": "^7.3.0",
"cypress": "^13.2.0",
"esbuild": "^0.15.16",
"parcel": "^2.6.2",
"pm2": "^5.3.0",
"size-limit": "^8.1.0"
},
"dependencies": {
"@dfinity/agent": "^0.20.2",
"@dfinity/identity": "^0.20.2",
"@dfinity/principal": "^0.20.2",
"idb-keyval": "^6.2.0"
}
"private": true,
"name": "@do-not-publish/ic-cypress-e2e-tests",
"version": "0.21.0",
"scripts": {
"ci": "npm run e2e",
"setup": "dfx deploy; dfx generate; pm2 --name parcel start npm -- start",
"cypress": "cypress run",
"e2e": "npm run cypress",
"poste2e": "pm2 kill",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' cypress *.js",
"lint": "npm run eslint",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": "",
"start": "parcel src/index.html"
},
"devDependencies": {
"@types/node": "^18.0.6",
"concurrently": "^7.3.0",
"cypress": "^13.2.0",
"esbuild": "^0.15.16",
"parcel": "^2.6.2",
"pm2": "^5.3.0",
"size-limit": "^8.1.0"
},
"dependencies": {
"@dfinity/agent": "^0.21.0",
"@dfinity/identity": "^0.21.0",
"@dfinity/principal": "^0.21.0",
"idb-keyval": "^6.2.0"
}
}
92 changes: 46 additions & 46 deletions e2e/node/package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"private": true,
"name": "@do-not-publish/ic-node-e2e-tests",
"version": "0.20.2",
"type": "module",
"scripts": {
"ci": "npm run e2e",
"e2e": "vitest",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' basic canisters utils *.ts",
"lint": "npm run eslint",
"mitm": "MITM=true vitest ./basic/mitm.test.ts",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": ""
},
"dependencies": {
"@dfinity/agent": "^0.20.2",
"@dfinity/assets": "^0.20.2",
"@dfinity/identity": "^0.20.2",
"@dfinity/principal": "^0.20.2",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.0",
"@trust/webcrypto": "^0.9.2",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/node17": "^1.0.1",
"@types/base64-js": "^1.3.0",
"@types/isomorphic-fetch": "^0.0.36",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"esbuild": "^0.15.16",
"eslint": "^8.19.0",
"eslint-plugin-jsdoc": "^39.3.3",
"isomorphic-fetch": "^3.0.0",
"locus": "^2.0.4",
"node-webcrypto-p11": "^2.5.0",
"size-limit": "^8.2.6",
"text-encoding": "^0.7.0",
"ts-node": "^10.8.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"webcrypto-core": "^1.7.5"
}
"private": true,
"name": "@do-not-publish/ic-node-e2e-tests",
"version": "0.21.0",
"type": "module",
"scripts": {
"ci": "npm run e2e",
"e2e": "vitest",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' basic canisters utils *.ts",
"lint": "npm run eslint",
"mitm": "MITM=true vitest ./basic/mitm.test.ts",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": ""
},
"dependencies": {
"@dfinity/agent": "^0.21.0",
"@dfinity/assets": "^0.21.0",
"@dfinity/identity": "^0.21.0",
"@dfinity/principal": "^0.21.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.0",
"@trust/webcrypto": "^0.9.2",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/node17": "^1.0.1",
"@types/base64-js": "^1.3.0",
"@types/isomorphic-fetch": "^0.0.36",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"esbuild": "^0.15.16",
"eslint": "^8.19.0",
"eslint-plugin-jsdoc": "^39.3.3",
"isomorphic-fetch": "^3.0.0",
"locus": "^2.0.4",
"node-webcrypto-p11": "^2.5.0",
"size-limit": "^8.2.6",
"text-encoding": "^0.7.0",
"ts-node": "^10.8.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"webcrypto-core": "^1.7.5"
}
}
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.

Loading
Loading