Skip to content

Commit 6125e88

Browse files
Version Packages (#6343)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2ec6cc0 commit 6125e88

File tree

10 files changed

+78
-42
lines changed

10 files changed

+78
-42
lines changed

.changeset/pink-states-tell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/social-icons-mix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thick-bees-deny.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wise-boxes-fail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/service-utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @thirdweb-dev/service-utils
22

3+
## 0.8.10
4+
5+
### Patch Changes
6+
7+
- [#6345](https://github.com/thirdweb-dev/js/pull/6345) [`0595c37`](https://github.com/thirdweb-dev/js/commit/0595c37163392e986124ebc376020a3bca6ba1ac) Thanks [@arcoraven](https://github.com/arcoraven)! - [service-utils] Use @confluentinc/kafka-javascript
8+
9+
- [#6346](https://github.com/thirdweb-dev/js/pull/6346) [`b60d251`](https://github.com/thirdweb-dev/js/commit/b60d251cd72f72080c3a8d8039bad330a7cda344) Thanks [@arcoraven](https://github.com/arcoraven)! - [service-utils] fix usageV2 caller
10+
11+
- [#6338](https://github.com/thirdweb-dev/js/pull/6338) [`9f69cc2`](https://github.com/thirdweb-dev/js/commit/9f69cc27aec2dd8e0b68541f7d4addc452d5bc5a) Thanks [@jnsdls](https://github.com/jnsdls)! - add `pastDue` to possible billing status flags
12+
313
## 0.8.9
414

515
### Patch Changes

packages/service-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/service-utils",
3-
"version": "0.8.9",
3+
"version": "0.8.10",
44
"type": "module",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/thirdweb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# thirdweb
22

3+
## 5.89.1
4+
5+
### Patch Changes
6+
7+
- [#6356](https://github.com/thirdweb-dev/js/pull/6356) [`2ba1683`](https://github.com/thirdweb-dev/js/commit/2ba168388a51214f809a4e3ef0b7d78f38d5c57d) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Change caching strategy for contract ABI
8+
39
## 5.89.0
410

511
### Minor Changes

packages/thirdweb/package.json

Lines changed: 58 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.89.0",
3+
"version": "5.89.1",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"
@@ -132,25 +132,63 @@
132132
},
133133
"typesVersions": {
134134
"*": {
135-
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
136-
"auth": ["./dist/types/exports/auth.d.ts"],
137-
"chains": ["./dist/types/exports/chains.d.ts"],
138-
"contract": ["./dist/types/exports/contract.d.ts"],
139-
"deploys": ["./dist/types/exports/deploys.d.ts"],
140-
"event": ["./dist/types/exports/event.d.ts"],
141-
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
142-
"pay": ["./dist/types/exports/pay.d.ts"],
143-
"react": ["./dist/types/exports/react.d.ts"],
144-
"react-native": ["./dist/types/exports/react-native.d.ts"],
145-
"rpc": ["./dist/types/exports/rpc.d.ts"],
146-
"storage": ["./dist/types/exports/storage.d.ts"],
147-
"transaction": ["./dist/types/exports/transaction.d.ts"],
148-
"utils": ["./dist/types/exports/utils.d.ts"],
149-
"wallets": ["./dist/types/exports/wallets.d.ts"],
150-
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"],
151-
"modules": ["./dist/types/exports/modules.d.ts"],
152-
"social": ["./dist/types/exports/social.d.ts"],
153-
"ai": ["./dist/types/exports/ai.d.ts"]
135+
"adapters/*": [
136+
"./dist/types/exports/adapters/*.d.ts"
137+
],
138+
"auth": [
139+
"./dist/types/exports/auth.d.ts"
140+
],
141+
"chains": [
142+
"./dist/types/exports/chains.d.ts"
143+
],
144+
"contract": [
145+
"./dist/types/exports/contract.d.ts"
146+
],
147+
"deploys": [
148+
"./dist/types/exports/deploys.d.ts"
149+
],
150+
"event": [
151+
"./dist/types/exports/event.d.ts"
152+
],
153+
"extensions/*": [
154+
"./dist/types/exports/extensions/*.d.ts"
155+
],
156+
"pay": [
157+
"./dist/types/exports/pay.d.ts"
158+
],
159+
"react": [
160+
"./dist/types/exports/react.d.ts"
161+
],
162+
"react-native": [
163+
"./dist/types/exports/react-native.d.ts"
164+
],
165+
"rpc": [
166+
"./dist/types/exports/rpc.d.ts"
167+
],
168+
"storage": [
169+
"./dist/types/exports/storage.d.ts"
170+
],
171+
"transaction": [
172+
"./dist/types/exports/transaction.d.ts"
173+
],
174+
"utils": [
175+
"./dist/types/exports/utils.d.ts"
176+
],
177+
"wallets": [
178+
"./dist/types/exports/wallets.d.ts"
179+
],
180+
"wallets/*": [
181+
"./dist/types/exports/wallets/*.d.ts"
182+
],
183+
"modules": [
184+
"./dist/types/exports/modules.d.ts"
185+
],
186+
"social": [
187+
"./dist/types/exports/social.d.ts"
188+
],
189+
"ai": [
190+
"./dist/types/exports/ai.d.ts"
191+
]
154192
}
155193
},
156194
"browser": {

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.23
4+
35
## 0.2.22
46

57
## 0.2.21

packages/wagmi-adapter/package.json

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

0 commit comments

Comments
 (0)