Skip to content

Commit 55edaa9

Browse files
Version Packages (#842)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 839fce1 commit 55edaa9

28 files changed

+157
-94
lines changed

.changeset/chilled-apples-complain.md

-34
This file was deleted.

.changeset/loud-students-bake.md

-29
This file was deleted.

.changeset/mean-cooks-hunt.md

-5
This file was deleted.

.changeset/plenty-flies-itch.md

-5
This file was deleted.

.changeset/quiet-squids-type.md

-5
This file was deleted.

.changeset/smart-tomatoes-push.md

-5
This file was deleted.

packages/auth/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @thirdweb-dev/auth
22

3+
## 3.0.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @thirdweb-dev/wallets@0.2.11
9+
310
## 3.0.9
411

512
### Patch Changes

packages/auth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/auth",
3-
"version": "3.0.9",
3+
"version": "3.0.10",
44
"main": "dist/thirdweb-dev-auth.cjs.js",
55
"module": "dist/thirdweb-dev-auth.esm.js",
66
"browser": {

packages/chains/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @thirdweb-dev/chains
22

3+
## 0.1.9
4+
5+
### Patch Changes
6+
7+
- [#843](https://github.com/thirdweb-dev/js/pull/843) [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d) Thanks [@jnsdls](https://github.com/jnsdls)! - update chains
8+
39
## 0.1.8
410

511
### Patch Changes

packages/chains/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/chains",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"main": "dist/thirdweb-dev-chains.cjs.js",
55
"module": "dist/thirdweb-dev-chains.esm.js",
66
"browser": {

packages/cli/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# thirdweb
22

3+
## 0.10.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
8+
- @thirdweb-dev/sdk@3.10.6
9+
- @thirdweb-dev/storage@1.1.2
10+
311
## 0.10.5
412

513
### Patch Changes

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "thirdweb",
33
"main": "dist/cli/index.js",
4-
"version": "0.10.5",
4+
"version": "0.10.6",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/cli",
66
"author": "thirdweb eng <[email protected]>",
77
"license": "Apache-2.0",

packages/react-core/CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# @thirdweb-dev/react-core
22

3+
## 3.11.2
4+
5+
### Patch Changes
6+
7+
- [#834](https://github.com/thirdweb-dev/js/pull/834) [`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910) Thanks [@adam-maj](https://github.com/adam-maj)! - Usage of the `useContractRead` and `useContractWrite` hooks has changed:
8+
9+
```js
10+
const owner = "0x...";
11+
const operator = "0x...";
12+
const overrides = { gasLimit: "10000", gasPrice: "10000" };
13+
14+
// Old usage
15+
const { data } = useContractRead(
16+
contract,
17+
"approve",
18+
owner,
19+
operator,
20+
overrides,
21+
);
22+
23+
const { mutateAsync } = useContractWrite(contract, "approve");
24+
mutateAsync(owner, operator, overrides);
25+
26+
// New usage
27+
const { data } = useContractRead(
28+
contract,
29+
"approve",
30+
[owner, operator],
31+
overrides,
32+
);
33+
34+
const { mutateAsync } = useContractWrite(contract, "approve");
35+
mutateAsync([owner, operator], overrides);
36+
```
37+
38+
- [#841](https://github.com/thirdweb-dev/js/pull/841) [`1f2df55b`](https://github.com/thirdweb-dev/js/commit/1f2df55b673fefb0106778dca7a13406cfbcfc90) Thanks [@MananTank](https://github.com/MananTank)! - add useNetwork() hook back
39+
40+
- [#843](https://github.com/thirdweb-dev/js/pull/843) [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d) Thanks [@jnsdls](https://github.com/jnsdls)! - fix solana program query key resolution
41+
42+
- Updated dependencies [[`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
43+
- @thirdweb-dev/sdk@3.10.6
44+
- @thirdweb-dev/chains@0.1.9
45+
- @thirdweb-dev/storage@1.1.2
46+
- @thirdweb-dev/wallets@0.2.11
47+
348
## 3.11.1
449

550
### Patch Changes

packages/react-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react-core",
3-
"version": "3.11.1",
3+
"version": "3.11.2",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-core",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/react-native-compat/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/react-native-compat
22

3+
## 0.2.2
4+
35
## 0.2.1
46

57
## 0.2.0

packages/react-native-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thirdweb-dev/react-native-compat",
33
"description": "Shims for Thirdweb in React Native Projects",
4-
"version": "0.2.1",
4+
"version": "0.2.2",
55
"author": "thirdweb eng <[email protected]>",
66
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-native-compat",
77
"license": "Apache-2.0",

packages/react-native/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @thirdweb-dev/react-native
22

3+
## 0.2.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`1f2df55b`](https://github.com/thirdweb-dev/js/commit/1f2df55b673fefb0106778dca7a13406cfbcfc90), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
8+
- @thirdweb-dev/react-core@3.11.2
9+
- @thirdweb-dev/sdk@3.10.6
10+
- @thirdweb-dev/chains@0.1.9
11+
- @thirdweb-dev/storage@1.1.2
12+
- @thirdweb-dev/wallets@0.2.11
13+
314
## 0.2.1
415

516
### Patch Changes

packages/react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react-native",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react-native",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/react/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @thirdweb-dev/react
22

3+
## 3.11.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`1f2df55b`](https://github.com/thirdweb-dev/js/commit/1f2df55b673fefb0106778dca7a13406cfbcfc90), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
8+
- @thirdweb-dev/react-core@3.11.2
9+
- @thirdweb-dev/sdk@3.10.6
10+
- @thirdweb-dev/chains@0.1.9
11+
- @thirdweb-dev/wallets@0.2.11
12+
313
## 3.11.1
414

515
### Patch Changes

packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/react",
3-
"version": "3.11.1",
3+
"version": "3.11.2",
44
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/react",
55
"author": "thirdweb eng <[email protected]>",
66
"license": "Apache-2.0",

packages/sdk/CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# @thirdweb-dev/sdk
22

3+
## 3.10.6
4+
5+
### Patch Changes
6+
7+
- [#834](https://github.com/thirdweb-dev/js/pull/834) [`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910) Thanks [@adam-maj](https://github.com/adam-maj)! - The signature of all `contract.call` methods has been updated to the following structure:
8+
9+
```ts
10+
function call(functionName: string, args: any[], overrides?: CallOverrides);
11+
```
12+
13+
Meaning that the following contract call in the old format:
14+
15+
```ts
16+
const owner = "0x...";
17+
const operator = "0x...";
18+
const overrides = { gasLimit: "10000", gasPrice: "10000" };
19+
20+
const res = await contract.call("approve", owner, operator, overrides);
21+
```
22+
23+
Would now look like this with the changes:
24+
25+
```ts
26+
const owner = "0x...";
27+
const operator = "0x...";
28+
const overrides = { gasLimit: "10000", gasPrice: "10000" };
29+
30+
const res = await contract.call("approve", [owner, operator], overrides);
31+
```
32+
33+
- Updated dependencies [[`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
34+
- @thirdweb-dev/chains@0.1.9
35+
- @thirdweb-dev/storage@1.1.2
36+
337
## 3.10.5
438

539
### Patch Changes

packages/sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/sdk",
3-
"version": "3.10.5",
3+
"version": "3.10.6",
44
"description": "The main thirdweb SDK.",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/sdk",
66
"license": "Apache-2.0",

packages/storage/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @thirdweb-dev/storage
22

3+
## 1.1.2
4+
5+
### Patch Changes
6+
7+
- [#843](https://github.com/thirdweb-dev/js/pull/843) [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d) Thanks [@jnsdls](https://github.com/jnsdls)! - uploads to IPFS should start significantly faster due to a change in the re-upload detection
8+
39
## 1.1.1
410

511
### Patch Changes

packages/storage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/storage",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"main": "dist/thirdweb-dev-storage.cjs.js",
55
"module": "dist/thirdweb-dev-storage.esm.js",
66
"browser": {

packages/unity-js-bridge/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @thirdweb-dev/unity-js-bridge
22

3+
## 0.2.20
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b7fcae6e`](https://github.com/thirdweb-dev/js/commit/b7fcae6e40dade7a239b1a6afb1cd996c8f89910), [`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
8+
- @thirdweb-dev/sdk@3.10.6
9+
- @thirdweb-dev/storage@1.1.2
10+
- @thirdweb-dev/wallets@0.2.11
11+
- @thirdweb-dev/auth@3.0.10
12+
313
## 0.2.19
414

515
### Patch Changes

packages/unity-js-bridge/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/unity-js-bridge",
3-
"version": "0.2.19",
3+
"version": "0.2.20",
44
"main": "dist/thirdweb-unity-bridge.js",
55
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/unity-js-bridge",
66
"license": "Apache-2.0",

packages/wallets/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @thirdweb-dev/wallets
22

3+
## 0.2.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`839fce1f`](https://github.com/thirdweb-dev/js/commit/839fce1f6f2747d6102033b26c292294e908f75d)]:
8+
- @thirdweb-dev/chains@0.1.9
9+
310
## 0.2.10
411

512
### Patch Changes

packages/wallets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wallets",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"main": "dist/thirdweb-dev-wallets.cjs.js",
55
"module": "dist/thirdweb-dev-wallets.esm.js",
66
"types": "dist/thirdweb-dev-wallets.cjs.d.ts",

0 commit comments

Comments
 (0)