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

build: upgrade dev dependencies #2138

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/curvy-kids-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
1 change: 1 addition & 0 deletions apps/demo-fuels/src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable import/extensions */

Check failure on line 1 in apps/demo-fuels/src/index.test.ts

View workflow job for this annotation

GitHub Actions / browser

'import/extensions' rule is disabled but never reported

Check failure on line 1 in apps/demo-fuels/src/index.test.ts

View workflow job for this annotation

GitHub Actions / node@20

'import/extensions' rule is disabled but never reported

Check failure on line 1 in apps/demo-fuels/src/index.test.ts

View workflow job for this annotation

GitHub Actions / [email protected]

'import/extensions' rule is disabled but never reported
/**
* NOTE: These tests are a copy of the ones at:
* - /apps/demo-typegen/src/index.test.ts
Expand Down
1 change: 1 addition & 0 deletions apps/demo-typegen/src/demo.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable import/extensions */

Check failure on line 1 in apps/demo-typegen/src/demo.test.ts

View workflow job for this annotation

GitHub Actions / browser

'import/extensions' rule is disabled but never reported

Check failure on line 1 in apps/demo-typegen/src/demo.test.ts

View workflow job for this annotation

GitHub Actions / node@20

'import/extensions' rule is disabled but never reported

Check failure on line 1 in apps/demo-typegen/src/demo.test.ts

View workflow job for this annotation

GitHub Actions / [email protected]

'import/extensions' rule is disabled but never reported
// #region Testing-in-ts-ts
import { generateTestWallet } from '@fuel-ts/account/test-utils';
import { safeExec } from '@fuel-ts/errors/test-utils';
Expand Down
2 changes: 1 addition & 1 deletion apps/docs-snippets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@fuel-ts/utils": "workspace:*",
"ethers": "^6.7.1",
"fuels": "workspace:*",
"vitest": "^1.1.3"
"vitest": "^1.5.0"
},
"keywords": [],
"author": "",
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@changesets/cli": "^2.27.1",
"@changesets/get-github-info": "^0.5.2",
"@changesets/get-github-info": "^0.6.0",
"@changesets/read": "^0.6.0",
"@changesets/types": "^6.0.0",
"@fuel-ts/forc": "workspace:*",
Expand All @@ -69,13 +69,13 @@
"@fuel-ts/versions": "workspace:^",
"@internal/tsup": "workspace:*",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "18.15.3",
"@types/node-fetch": "^2.6.2",
"@types/web": "^0.0.65",
"@types/node": "20.12.8",
"@types/node-fetch": "^2.6.11",
"@types/web": "^0.0.143",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitest/browser": "^1.1.3",
"@vitest/coverage-istanbul": "^1.1.3",
"@vitest/browser": "^1.5.0",
"@vitest/coverage-istanbul": "^1.5.0",
"compare-versions": "^6.1.0",
"coverage-diff": "^3.2.0",
"eslint": "^8.52.0",
Expand All @@ -90,22 +90,22 @@
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"glob": "^10.2.6",
"knip": "^5.9.3",
"memfs": "^4.8.2",
"nodemon": "^3.0.3",
"glob": "^10.3.12",
"knip": "^5.11.0",
"memfs": "^4.9.2",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open": "^8.4.0",
"open": "^10.1.0",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"rimraf": "^5.0.5",
"textlint": "^13.3.2",
"textlint-rule-no-dead-link": "^5.1.2",
"ts-generator": "^0.1.1",
"tsup": "^6.7.0",
"tsx": "^4.7.0",
"turbo": "^1.8.8",
"typescript": "~5.2.2",
"tsup": "^8.0.2",
"tsx": "^4.8.2",
"turbo": "^1.13.3",
"typescript": "~5.4.5",
"vite": "^5.2.10",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-plain-text": "^1.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/src/browser/aes-ctr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const encrypt: CryptoApi['encrypt'] = async <T>(
const encBuffer = await crypto.subtle.encrypt(alg, key, dataBuffer);

return {
data: stringFromBuffer(encBuffer),
data: stringFromBuffer(new Uint8Array(encBuffer)),
iv: stringFromBuffer(iv),
salt: stringFromBuffer(salt),
};
Expand Down