Skip to content

Commit ca6c913

Browse files
Version Packages (#6132)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cf166e4 commit ca6c913

14 files changed

+47
-39
lines changed

.changeset/cuddly-pumas-wink.md

-7
This file was deleted.

.changeset/early-adults-travel.md

-5
This file was deleted.

.changeset/friendly-candles-walk.md

-5
This file was deleted.

.changeset/metal-icons-end.md

-5
This file was deleted.

.changeset/tall-masks-shop.md

-5
This file was deleted.

.changeset/thick-kangaroos-smoke.md

-5
This file was deleted.

apps/login/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# thirdweb-login
2+
3+
## 0.1.1
4+
5+
### Patch Changes
6+
7+
- [#6137](https://github.com/thirdweb-dev/js/pull/6137) [`a6b7e8d`](https://github.com/thirdweb-dev/js/commit/a6b7e8d81868b5f32f1c8b7ff093bb1f06c734ca) Thanks [@jnsdls](https://github.com/jnsdls)! - updated dependencies
8+
9+
- Updated dependencies [[`a6b7e8d`](https://github.com/thirdweb-dev/js/commit/a6b7e8d81868b5f32f1c8b7ff093bb1f06c734ca), [`9d5828e`](https://github.com/thirdweb-dev/js/commit/9d5828eeab201960a720744ca3a59c85a0d8e548), [`b693b78`](https://github.com/thirdweb-dev/js/commit/b693b78645e2b214a5f8be0eec6d335d569ceb8c), [`08cc489`](https://github.com/thirdweb-dev/js/commit/08cc48910df351d068c1ce224d4102f40cb1dce1)]:
10+

apps/login/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb-login",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages/service-utils/CHANGELOG.md

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

3+
## 0.8.4
4+
5+
### Patch Changes
6+
7+
- [#6137](https://github.com/thirdweb-dev/js/pull/6137) [`a6b7e8d`](https://github.com/thirdweb-dev/js/commit/a6b7e8d81868b5f32f1c8b7ff093bb1f06c734ca) Thanks [@jnsdls](https://github.com/jnsdls)! - updated dependencies
8+
9+
- [#6139](https://github.com/thirdweb-dev/js/pull/6139) [`f4f93e6`](https://github.com/thirdweb-dev/js/commit/f4f93e6353d3951c580df25b757b1ac20fdcf763) Thanks [@arcoraven](https://github.com/arcoraven)! - [service-utils] Update to ESM for compression typrse
10+
11+
- [#6131](https://github.com/thirdweb-dev/js/pull/6131) [`a76e653`](https://github.com/thirdweb-dev/js/commit/a76e6534c49480f30ec1fd1e404f76d04947cd49) Thanks [@arcoraven](https://github.com/arcoraven)! - [service-utils] switch to lz4js for compression lib
12+
313
## 0.8.3
414

515
### Patch Changes

packages/service-utils/package.json

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/service-utils",
3-
"version": "0.8.3",
3+
"version": "0.8.4",
44
"type": "module",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -26,8 +26,12 @@
2626
},
2727
"typesVersions": {
2828
"*": {
29-
"node": ["./dist/types/node/index.d.ts"],
30-
"cf-worker": ["./dist/types/cf-worker/index.d.ts"]
29+
"node": [
30+
"./dist/types/node/index.d.ts"
31+
],
32+
"cf-worker": [
33+
"./dist/types/cf-worker/index.d.ts"
34+
]
3135
}
3236
},
3337
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/pay",
@@ -36,7 +40,9 @@
3640
"url": "https://github.com/thirdweb-dev/js/issues"
3741
},
3842
"author": "thirdweb eng <[email protected]>",
39-
"files": ["dist/"],
43+
"files": [
44+
"dist/"
45+
],
4046
"sideEffects": false,
4147
"dependencies": {
4248
"aws4fetch": "1.0.20",

packages/thirdweb/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# thirdweb
22

3+
## 5.87.3
4+
5+
### Patch Changes
6+
7+
- [#6137](https://github.com/thirdweb-dev/js/pull/6137) [`a6b7e8d`](https://github.com/thirdweb-dev/js/commit/a6b7e8d81868b5f32f1c8b7ff093bb1f06c734ca) Thanks [@jnsdls](https://github.com/jnsdls)! - updated dependencies
8+
9+
- [#6116](https://github.com/thirdweb-dev/js/pull/6116) [`9d5828e`](https://github.com/thirdweb-dev/js/commit/9d5828eeab201960a720744ca3a59c85a0d8e548) Thanks [@alecananian](https://github.com/alecananian)! - Skip factory entrypoint lookup for ZKsync chains
10+
11+
- [#6119](https://github.com/thirdweb-dev/js/pull/6119) [`b693b78`](https://github.com/thirdweb-dev/js/commit/b693b78645e2b214a5f8be0eec6d335d569ceb8c) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Fix: Ecosystem smart wallets now properly trigger switch chain on their admin wallets
12+
13+
- [#6093](https://github.com/thirdweb-dev/js/pull/6093) [`08cc489`](https://github.com/thirdweb-dev/js/commit/08cc48910df351d068c1ce224d4102f40cb1dce1) Thanks [@kumaryash90](https://github.com/kumaryash90)! - 7702 delegation designator
14+
315
## 5.87.2
416

517
### Patch Changes

packages/thirdweb/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.87.2",
3+
"version": "5.87.3",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

packages/wagmi-adapter/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.12
4+
35
## 0.2.11
46

57
### Patch Changes

packages/wagmi-adapter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wagmi-adapter",
3-
"version": "0.2.11",
3+
"version": "0.2.12",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)