Skip to content

Commit e87c967

Browse files
chore: release v2.2.24
1 parent 0e49b51 commit e87c967

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+401
-54
lines changed

.changeset/poor-pianos-retire.md

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

.changeset/stupid-cameras-greet.md

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

.changeset/tidy-carpets-cheer.md

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

.changeset/twelve-melons-relate.md

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

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## Version 2.2.24
2+
3+
Release date: Tue Sep 30 2025
4+
5+
### Patch changes
6+
7+
**[fix(explorer): validate sql queries (#3793)](https://github.com/latticexyz/mud/commit/6031ec8e7f3b47a789c4c31750f9cfe8c2ccfdf2)** (@latticexyz/explorer)
8+
9+
SQL queries in the tables viewer are now validated before execution, with errors highlighted and described directly in the editor.
10+
11+
**[fix(explorer): preserve sql query formatting (#3810)](https://github.com/latticexyz/mud/commit/1f509ee224cadd4254e7bbb7a268b519f65e4495)** (@latticexyz/explorer)
12+
13+
Formatting is now preserved when re-running SQL queries.
14+
15+
**[fix(explorer): disable caching for API routes (#3807)](https://github.com/latticexyz/mud/commit/bd97268cd2037f6372211e05367605636b1ee78e)** (@latticexyz/explorer)
16+
17+
Caching is now disabled for API routes.
18+
19+
**[feat(cli): save deployed contracts info (#3816)](https://github.com/latticexyz/mud/commit/0e49b51ba934438e49c7f098e78d6e3ddf7567fb)** (@latticexyz/cli, @latticexyz/common)
20+
21+
The `mud deploy` command now includes the addresses of all deployed contracts and libraries in the deployment file. Previously, it only included the world address.
22+
23+
The `mud test` command now includes an optional 'saveDeployment' flag to enable the deployment info from the test run to be saved to a file.
24+
25+
---
26+
127
## Version 2.2.23
228

329
Release date: Mon Aug 25 2025

docs/data/changelog.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,74 @@
11
[
2+
{
3+
"version": "2.2.24",
4+
"date": "2025-09-30T20:36:36.861Z",
5+
"changes": {
6+
"patch": [
7+
{
8+
"packages": [
9+
{
10+
"package": "@latticexyz/explorer",
11+
"type": "patch"
12+
}
13+
],
14+
"description": "\nSQL queries in the tables viewer are now validated before execution, with errors highlighted and described directly in the editor.",
15+
"type": 0,
16+
"commitHash": "6031ec8e7f3b47a789c4c31750f9cfe8c2ccfdf2",
17+
"authorName": "Karolis Ramanauskas",
18+
"authorEmail": "[email protected]",
19+
"title": "fix(explorer): validate sql queries (#3793)"
20+
},
21+
{
22+
"packages": [
23+
{
24+
"package": "@latticexyz/explorer",
25+
"type": "patch"
26+
}
27+
],
28+
"description": "\nFormatting is now preserved when re-running SQL queries.",
29+
"type": 0,
30+
"commitHash": "1f509ee224cadd4254e7bbb7a268b519f65e4495",
31+
"authorName": "Karolis Ramanauskas",
32+
"authorEmail": "[email protected]",
33+
"title": "fix(explorer): preserve sql query formatting (#3810)"
34+
},
35+
{
36+
"packages": [
37+
{
38+
"package": "@latticexyz/explorer",
39+
"type": "patch"
40+
}
41+
],
42+
"description": "\nCaching is now disabled for API routes.",
43+
"type": 0,
44+
"commitHash": "bd97268cd2037f6372211e05367605636b1ee78e",
45+
"authorName": "Karolis Ramanauskas",
46+
"authorEmail": "[email protected]",
47+
"title": "fix(explorer): disable caching for API routes (#3807)"
48+
},
49+
{
50+
"packages": [
51+
{
52+
"package": "@latticexyz/cli",
53+
"type": "patch"
54+
},
55+
{
56+
"package": "@latticexyz/common",
57+
"type": "patch"
58+
}
59+
],
60+
"description": "\nThe `mud deploy` command now includes the addresses of all deployed contracts and libraries in the deployment file. Previously, it only included the world address.\n\nThe `mud test` command now includes an optional 'saveDeployment' flag to enable the deployment info from the test run to be saved to a file.",
61+
"type": 0,
62+
"commitHash": "0e49b51ba934438e49c7f098e78d6e3ddf7567fb",
63+
"authorName": "Dhvani Patel",
64+
"authorEmail": "[email protected]",
65+
"title": "feat(cli): save deployed contracts info (#3816)"
66+
}
67+
],
68+
"minor": [],
69+
"major": []
70+
}
71+
},
272
{
373
"version": "2.2.23",
474
"date": "2025-08-25T02:48:07.555Z",

docs/pages/changelog.mdx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## Version 2.2.24
2+
3+
Release date: Tue Sep 30 2025
4+
5+
### Patch changes
6+
7+
**[fix(explorer): validate sql queries (#3793)](https://github.com/latticexyz/mud/commit/6031ec8e7f3b47a789c4c31750f9cfe8c2ccfdf2)** (@latticexyz/explorer)
8+
9+
SQL queries in the tables viewer are now validated before execution, with errors highlighted and described directly in the editor.
10+
11+
**[fix(explorer): preserve sql query formatting (#3810)](https://github.com/latticexyz/mud/commit/1f509ee224cadd4254e7bbb7a268b519f65e4495)** (@latticexyz/explorer)
12+
13+
Formatting is now preserved when re-running SQL queries.
14+
15+
**[fix(explorer): disable caching for API routes (#3807)](https://github.com/latticexyz/mud/commit/bd97268cd2037f6372211e05367605636b1ee78e)** (@latticexyz/explorer)
16+
17+
Caching is now disabled for API routes.
18+
19+
**[feat(cli): save deployed contracts info (#3816)](https://github.com/latticexyz/mud/commit/0e49b51ba934438e49c7f098e78d6e3ddf7567fb)** (@latticexyz/cli, @latticexyz/common)
20+
21+
The `mud deploy` command now includes the addresses of all deployed contracts and libraries in the deployment file. Previously, it only included the world address.
22+
23+
The `mud test` command now includes an optional 'saveDeployment' flag to enable the deployment info from the test run to be saved to a file.
24+
25+
---
26+
127
## Version 2.2.23
228

329
Release date: Mon Aug 25 2025

packages/abi-ts/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @latticexyz/abi-ts
22

3+
## 2.2.24
4+
35
## 2.2.23
46

57
## 2.2.22

packages/abi-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/abi-ts",
3-
"version": "2.2.23",
3+
"version": "2.2.24",
44
"description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.",
55
"repository": {
66
"type": "git",

packages/block-logs-stream/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @latticexyz/block-logs-stream
22

3+
## 2.2.24
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [0e49b51]
8+
- @latticexyz/common@2.2.24
9+
310
## 2.2.23
411

512
### Patch Changes

0 commit comments

Comments
 (0)