Skip to content

Commit 26faaf2

Browse files
authored
Merge pull request #11 from valorem-labs-inc/bump
v0.0.7
2 parents 65a3d51 + 6a03a27 commit 26faaf2

15 files changed

+2167
-617
lines changed

.eslintrc.cjs

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,19 @@ module.exports = {
2222
},
2323
},
2424
},
25+
plugins: ['canonical'],
26+
rules: {
27+
'unicorn/filename-case': 'off',
28+
'import/no-extraneous-dependencies': 'off',
29+
'@typescript-eslint/no-unsafe-member-access': 'off',
30+
'@typescript-eslint/no-unsafe-call': 'off',
31+
'@typescript-eslint/no-unsafe-return': 'off',
32+
'@typescript-eslint/no-unsafe-argument': 'off',
33+
'@typescript-eslint/no-unsafe-assignment': 'off',
34+
'@typescript-eslint/explicit-function-return-type': 'off',
35+
'canonical/no-barrel-import': 'error',
36+
'canonical/no-export-all': 'error',
37+
},
2538
ignorePatterns: [
2639
'node_modules/',
2740
'dist/',
@@ -33,15 +46,8 @@ module.exports = {
3346
'coverage',
3447
'test',
3548
'*.test.ts*',
49+
'package.json',
50+
'buf.gen.yaml',
51+
'buf.work.yaml',
3652
],
37-
rules: {
38-
'unicorn/filename-case': 'off',
39-
'import/no-extraneous-dependencies': 'off',
40-
'@typescript-eslint/no-unsafe-member-access': 'off',
41-
'@typescript-eslint/no-unsafe-call': 'off',
42-
'@typescript-eslint/no-unsafe-return': 'off',
43-
'@typescript-eslint/no-unsafe-argument': 'off',
44-
'@typescript-eslint/no-unsafe-assignment': 'off',
45-
'@typescript-eslint/explicit-function-return-type': 'off',
46-
},
4753
};

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @valorem-labs-inc/react-hooks
22

3+
## 0.0.7
4+
5+
### Patch Changes
6+
7+
- refactor useStream to make better use of react-query
8+
- decrease SIWE session refetch interval
9+
310
## 0.0.6
411

512
### Patch Changes

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@valorem-labs-inc/react-hooks",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/valorem-labs-inc/react-hooks.git"
@@ -35,16 +35,17 @@
3535
"@tanstack/query-core": "^4.36.1",
3636
"@testing-library/react": "^14.1.2",
3737
"@testing-library/react-hooks": "^8.0.1",
38-
"@types/node": "^20.10.4",
38+
"@types/node": "^20.10.5",
3939
"@types/react": "^18.2.45",
40-
"@types/react-dom": "^18.2.17",
40+
"@types/react-dom": "^18.2.18",
4141
"@vercel/style-guide": "^5.1.0",
42-
"@vitest/coverage-v8": "^1.0.4",
42+
"@vitest/coverage-v8": "^1.1.0",
4343
"@wagmi/cli": "^1.5.2",
4444
"@wagmi/core": "^1.4.12",
4545
"abitype": "0.8.7",
4646
"connectkit": "^1.5.3",
47-
"eslint": "^8.55.0",
47+
"eslint": "^8.56.0",
48+
"eslint-config-canonical": "^42.8.0",
4849
"happy-dom": "^12.10.3",
4950
"jest-environment-jsdom": "^29.7.0",
5051
"jsdom": "^23.0.1",
@@ -55,7 +56,7 @@
5556
"siwe": "^2.1.4",
5657
"typedoc": "^0.25.4",
5758
"typedoc-plugin-missing-exports": "^2.1.0",
58-
"vitest": "^1.0.4"
59+
"vitest": "^1.1.0"
5960
},
6061
"peerDependencies": {
6162
"@bufbuild/buf": "^1.28.1",
@@ -64,15 +65,15 @@
6465
"@connectrpc/connect-query": "0.5.3",
6566
"@connectrpc/connect-web": "^1.2.0",
6667
"@tanstack/react-query": "^4.36.1",
67-
"@valorem-labs-inc/sdk": "^0.0.9",
68+
"@valorem-labs-inc/sdk": "^0.0.10",
6869
"@wagmi/core": "^1.4.12",
6970
"abitype": "0.8.7",
7071
"connectkit": "^1.5.3",
7172
"react": "17.x || 18.x",
7273
"react-dom": "17.x || 18.x",
7374
"siwe": "^2.1.4",
7475
"typescript": "^5.3.0",
75-
"viem": "^1.19.15",
76+
"viem": "^1.20.3",
7677
"wagmi": "^1.4.12",
7778
"zod": "^3.22.4"
7879
},
@@ -87,7 +88,8 @@
8788
},
8889
"pnpm": {
8990
"overrides": {
90-
"@wagmi/core": "^1.4.12"
91+
"@wagmi/core": "^1.4.12",
92+
"viem": "^1.20.3"
9193
}
9294
}
9395
}

0 commit comments

Comments
 (0)