diff --git a/.changeset/early-poems-heal.md b/.changeset/early-poems-heal.md deleted file mode 100644 index f4627105e3..0000000000 --- a/.changeset/early-poems-heal.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@latticexyz/common": patch -"@latticexyz/store-sync": patch ---- - -Removed unused generics and ensure that we're only passing around the generics we need, when we need them. Hopefully this improves TS performance in MUD projects. diff --git a/.changeset/empty-walls-attend.md b/.changeset/empty-walls-attend.md deleted file mode 100644 index 8b14359fc1..0000000000 --- a/.changeset/empty-walls-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-mud": patch ---- - -Fixed types in threejs template after dependency bump. diff --git a/.changeset/good-crabs-trade.md b/.changeset/good-crabs-trade.md deleted file mode 100644 index 0baf4444cd..0000000000 --- a/.changeset/good-crabs-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@latticexyz/cli": patch ---- - -When deploying to an existing world, the deployer now paginates with [`fetchLogs`](https://github.com/latticexyz/mud/blob/main/packages/block-logs-stream/src/fetchLogs.ts) to find the world deployment. diff --git a/.changeset/large-windows-sort.md b/.changeset/large-windows-sort.md deleted file mode 100644 index 636e0e39bc..0000000000 --- a/.changeset/large-windows-sort.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@latticexyz/block-logs-stream": patch ---- - -- For block range size errors, `fetchLogs` now reduces the max block range for subsequent requests in its loop. For block out of range or response size errors, only the current request's block range is reduced until the request succeeds, then it resets to the max block range. -- Added `fetchBlockLogs` to find all matching logs of the given block range, grouped by block number, in a single async call. -- Loosened the `publicClient` type and switched to tree shakable actions. diff --git a/.changeset/strong-llamas-learn.md b/.changeset/strong-llamas-learn.md deleted file mode 100644 index a8ef41c9cc..0000000000 --- a/.changeset/strong-llamas-learn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@latticexyz/cli": patch ---- - -If the project is using a custom world, the deployer now waits for the init transaction to be confirmed before transferring ownership of the world. diff --git a/CHANGELOG.md b/CHANGELOG.md index 7544c59122..822d24aa2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +## Version 2.2.8 + +Release date: Mon Sep 23 2024 + +### Patch changes + +**[feat(store-sync): remove unused generics (#3218)](https://github.com/latticexyz/mud/commit/7c7bdb26d0f87e2a5fc20c4eb34abb5167000ab9)** (@latticexyz/common, @latticexyz/store-sync) + +Removed unused generics and ensure that we're only passing around the generics we need, when we need them. Hopefully this improves TS performance in MUD projects. + +**[fix(create-mud): add missing three deps, fix types (#3221)](https://github.com/latticexyz/mud/commit/4fffb79d433d1052e4b3c9cce0215cf81eba9b11)** (create-mud) + +Fixed types in threejs template after dependency bump. + +**[feat(cli): paginate world deploy logs (#3217)](https://github.com/latticexyz/mud/commit/0f5b2916edfa24b9d0ad1b82df56aed57f7e657d)** (@latticexyz/cli) + +When deploying to an existing world, the deployer now paginates with [`fetchLogs`](https://github.com/latticexyz/mud/blob/main/packages/block-logs-stream/src/fetchLogs.ts) to find the world deployment. + +**[feat(cli): paginate world deploy logs (#3217)](https://github.com/latticexyz/mud/commit/0f5b2916edfa24b9d0ad1b82df56aed57f7e657d)** (@latticexyz/block-logs-stream) + +- For block range size errors, `fetchLogs` now reduces the max block range for subsequent requests in its loop. For block out of range or response size errors, only the current request's block range is reduced until the request succeeds, then it resets to the max block range. +- Added `fetchBlockLogs` to find all matching logs of the given block range, grouped by block number, in a single async call. +- Loosened the `publicClient` type and switched to tree shakable actions. + +**[fix(cli): wait for world init before transferring ownership (#3220)](https://github.com/latticexyz/mud/commit/b0711983a5f72f9b3236e6cbcef3dae7a424a09c)** (@latticexyz/cli) + +If the project is using a custom world, the deployer now waits for the init transaction to be confirmed before transferring ownership of the world. + +--- + ## Version 2.2.7 Release date: Fri Sep 20 2024 diff --git a/docs/pages/changelog.mdx b/docs/pages/changelog.mdx index 7544c59122..822d24aa2e 100644 --- a/docs/pages/changelog.mdx +++ b/docs/pages/changelog.mdx @@ -1,3 +1,33 @@ +## Version 2.2.8 + +Release date: Mon Sep 23 2024 + +### Patch changes + +**[feat(store-sync): remove unused generics (#3218)](https://github.com/latticexyz/mud/commit/7c7bdb26d0f87e2a5fc20c4eb34abb5167000ab9)** (@latticexyz/common, @latticexyz/store-sync) + +Removed unused generics and ensure that we're only passing around the generics we need, when we need them. Hopefully this improves TS performance in MUD projects. + +**[fix(create-mud): add missing three deps, fix types (#3221)](https://github.com/latticexyz/mud/commit/4fffb79d433d1052e4b3c9cce0215cf81eba9b11)** (create-mud) + +Fixed types in threejs template after dependency bump. + +**[feat(cli): paginate world deploy logs (#3217)](https://github.com/latticexyz/mud/commit/0f5b2916edfa24b9d0ad1b82df56aed57f7e657d)** (@latticexyz/cli) + +When deploying to an existing world, the deployer now paginates with [`fetchLogs`](https://github.com/latticexyz/mud/blob/main/packages/block-logs-stream/src/fetchLogs.ts) to find the world deployment. + +**[feat(cli): paginate world deploy logs (#3217)](https://github.com/latticexyz/mud/commit/0f5b2916edfa24b9d0ad1b82df56aed57f7e657d)** (@latticexyz/block-logs-stream) + +- For block range size errors, `fetchLogs` now reduces the max block range for subsequent requests in its loop. For block out of range or response size errors, only the current request's block range is reduced until the request succeeds, then it resets to the max block range. +- Added `fetchBlockLogs` to find all matching logs of the given block range, grouped by block number, in a single async call. +- Loosened the `publicClient` type and switched to tree shakable actions. + +**[fix(cli): wait for world init before transferring ownership (#3220)](https://github.com/latticexyz/mud/commit/b0711983a5f72f9b3236e6cbcef3dae7a424a09c)** (@latticexyz/cli) + +If the project is using a custom world, the deployer now waits for the init transaction to be confirmed before transferring ownership of the world. + +--- + ## Version 2.2.7 Release date: Fri Sep 20 2024 diff --git a/packages/abi-ts/CHANGELOG.md b/packages/abi-ts/CHANGELOG.md index 2dead3e4ae..2ae121e76f 100644 --- a/packages/abi-ts/CHANGELOG.md +++ b/packages/abi-ts/CHANGELOG.md @@ -1,5 +1,7 @@ # @latticexyz/abi-ts +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/abi-ts/package.json b/packages/abi-ts/package.json index ebfb0af3c2..cb74dcd8c4 100644 --- a/packages/abi-ts/package.json +++ b/packages/abi-ts/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/abi-ts", - "version": "2.2.7", + "version": "2.2.8", "description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.", "repository": { "type": "git", diff --git a/packages/block-logs-stream/CHANGELOG.md b/packages/block-logs-stream/CHANGELOG.md index e566643f72..bd6e113e98 100644 --- a/packages/block-logs-stream/CHANGELOG.md +++ b/packages/block-logs-stream/CHANGELOG.md @@ -1,5 +1,15 @@ # @latticexyz/block-logs-stream +## 2.2.8 + +### Patch Changes + +- 0f5b291: - For block range size errors, `fetchLogs` now reduces the max block range for subsequent requests in its loop. For block out of range or response size errors, only the current request's block range is reduced until the request succeeds, then it resets to the max block range. + - Added `fetchBlockLogs` to find all matching logs of the given block range, grouped by block number, in a single async call. + - Loosened the `publicClient` type and switched to tree shakable actions. +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/block-logs-stream/package.json b/packages/block-logs-stream/package.json index c570add5db..ec4225b76f 100644 --- a/packages/block-logs-stream/package.json +++ b/packages/block-logs-stream/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/block-logs-stream", - "version": "2.2.7", + "version": "2.2.8", "description": "Create a stream of EVM block logs for events", "repository": { "type": "git", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4dc002c8e6..943f80f0fd 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- 0f5b291: When deploying to an existing world, the deployer now paginates with [`fetchLogs`](https://github.com/latticexyz/mud/blob/main/packages/block-logs-stream/src/fetchLogs.ts) to find the world deployment. +- b071198: If the project is using a custom world, the deployer now waits for the init transaction to be confirmed before transferring ownership of the world. +- Updated dependencies [7c7bdb2] +- Updated dependencies [0f5b291] + - @latticexyz/common@2.2.8 + - @latticexyz/block-logs-stream@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/world@2.2.8 + - @latticexyz/world-module-metadata@2.2.8 + - @latticexyz/abi-ts@2.2.8 + - @latticexyz/gas-report@2.2.8 + - @latticexyz/schema-type@2.2.8 + - @latticexyz/utils@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d2569f51cc..2685240b8e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/cli", - "version": "2.2.7", + "version": "2.2.8", "description": "Command line interface for mud", "repository": { "type": "git", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index a4fd0899df..331478c3ed 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- 7c7bdb2: Removed unused generics and ensure that we're only passing around the generics we need, when we need them. Hopefully this improves TS performance in MUD projects. + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index 6db285a60a..c6e605425a 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/common", - "version": "2.2.7", + "version": "2.2.8", "description": "Common low level logic shared between packages", "repository": { "type": "git", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 27ad4f9045..6540dec9b5 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/config/package.json b/packages/config/package.json index 8ebed1ad45..3e1a26c074 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/config", - "version": "2.2.7", + "version": "2.2.8", "description": "Config for Store and World", "repository": { "type": "git", diff --git a/packages/create-mud/CHANGELOG.md b/packages/create-mud/CHANGELOG.md index c698d6751d..c0d32a1c22 100644 --- a/packages/create-mud/CHANGELOG.md +++ b/packages/create-mud/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- 4fffb79: Fixed types in threejs template after dependency bump. + ## 2.2.7 ## 2.2.6 diff --git a/packages/create-mud/package.json b/packages/create-mud/package.json index f8f6afe057..ca23e29d3f 100644 --- a/packages/create-mud/package.json +++ b/packages/create-mud/package.json @@ -1,6 +1,6 @@ { "name": "create-mud", - "version": "2.2.7", + "version": "2.2.8", "description": "Create a new MUD project", "license": "MIT", "author": "Lattice ", diff --git a/packages/dev-tools/CHANGELOG.md b/packages/dev-tools/CHANGELOG.md index 68a9306a72..5191c7a453 100644 --- a/packages/dev-tools/CHANGELOG.md +++ b/packages/dev-tools/CHANGELOG.md @@ -1,5 +1,19 @@ # @latticexyz/dev-tools +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/store-sync@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/world@2.2.8 + - @latticexyz/react@2.2.8 + - @latticexyz/recs@2.2.8 + - @latticexyz/schema-type@2.2.8 + - @latticexyz/utils@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index 1e8cb61644..4b2d560947 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/dev-tools", - "version": "2.2.7", + "version": "2.2.8", "description": "MUD developer tools", "repository": { "type": "git", diff --git a/packages/explorer/CHANGELOG.md b/packages/explorer/CHANGELOG.md index 24bf7f1cac..b898e6d41e 100644 --- a/packages/explorer/CHANGELOG.md +++ b/packages/explorer/CHANGELOG.md @@ -1,5 +1,17 @@ # @latticexyz/explorer +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/store-sync@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/world@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/explorer/package.json b/packages/explorer/package.json index e25075ecd5..186764a1c6 100644 --- a/packages/explorer/package.json +++ b/packages/explorer/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/explorer", - "version": "2.2.7", + "version": "2.2.8", "description": "World Explorer is a tool for visually exploring and manipulating the state of worlds", "type": "module", "exports": { diff --git a/packages/faucet/CHANGELOG.md b/packages/faucet/CHANGELOG.md index e10bbdbf5d..cdd836e57e 100644 --- a/packages/faucet/CHANGELOG.md +++ b/packages/faucet/CHANGELOG.md @@ -1,5 +1,12 @@ # @latticexyz/faucet +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/faucet/package.json b/packages/faucet/package.json index 75de6832a5..bddd42521e 100644 --- a/packages/faucet/package.json +++ b/packages/faucet/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/faucet", - "version": "2.2.7", + "version": "2.2.8", "description": "Faucet API for Lattice testnet", "repository": { "type": "git", diff --git a/packages/gas-report/CHANGELOG.md b/packages/gas-report/CHANGELOG.md index 1e895e6596..13346745ba 100644 --- a/packages/gas-report/CHANGELOG.md +++ b/packages/gas-report/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/gas-report/package.json b/packages/gas-report/package.json index 39196cf971..9f681d26f2 100644 --- a/packages/gas-report/package.json +++ b/packages/gas-report/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/gas-report", - "version": "2.2.7", + "version": "2.2.8", "description": "Gas reporter for specific lines within forge tests", "repository": { "type": "git", diff --git a/packages/protocol-parser/CHANGELOG.md b/packages/protocol-parser/CHANGELOG.md index 53e9d8f818..3a85e9a8ab 100644 --- a/packages/protocol-parser/CHANGELOG.md +++ b/packages/protocol-parser/CHANGELOG.md @@ -1,5 +1,14 @@ # @latticexyz/protocol-parser +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/protocol-parser/package.json b/packages/protocol-parser/package.json index 22ad0b60bd..8392cd5a46 100644 --- a/packages/protocol-parser/package.json +++ b/packages/protocol-parser/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/protocol-parser", - "version": "2.2.7", + "version": "2.2.8", "description": "Parser utilities for the MUD protocol", "repository": { "type": "git", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index cb076dfbda..edcddcdd5e 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- @latticexyz/store@2.2.8 +- @latticexyz/recs@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index c2423560eb..69528b0182 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/react", - "version": "2.2.7", + "version": "2.2.8", "description": "React tools for MUD client.", "repository": { "type": "git", diff --git a/packages/recs/CHANGELOG.md b/packages/recs/CHANGELOG.md index 4a91c06fc2..5b52656dfc 100644 --- a/packages/recs/CHANGELOG.md +++ b/packages/recs/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- @latticexyz/schema-type@2.2.8 +- @latticexyz/utils@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/recs/package.json b/packages/recs/package.json index 20298bd411..522bf29418 100644 --- a/packages/recs/package.json +++ b/packages/recs/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/recs", - "version": "2.2.7", + "version": "2.2.8", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/schema-type/CHANGELOG.md b/packages/schema-type/CHANGELOG.md index 45038a5b40..165c782b9e 100644 --- a/packages/schema-type/CHANGELOG.md +++ b/packages/schema-type/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/schema-type/package.json b/packages/schema-type/package.json index 676b87112f..b516de846b 100644 --- a/packages/schema-type/package.json +++ b/packages/schema-type/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/schema-type", - "version": "2.2.7", + "version": "2.2.8", "description": "SchemaType enum for various languages", "repository": { "type": "git", diff --git a/packages/solhint-config-mud/CHANGELOG.md b/packages/solhint-config-mud/CHANGELOG.md index f9dfc75b64..80dc6d1de1 100644 --- a/packages/solhint-config-mud/CHANGELOG.md +++ b/packages/solhint-config-mud/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/solhint-config-mud/package.json b/packages/solhint-config-mud/package.json index 54dc953826..8fd0e2cc83 100644 --- a/packages/solhint-config-mud/package.json +++ b/packages/solhint-config-mud/package.json @@ -1,6 +1,6 @@ { "name": "solhint-config-mud", - "version": "2.2.7", + "version": "2.2.8", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/solhint-plugin-mud/CHANGELOG.md b/packages/solhint-plugin-mud/CHANGELOG.md index f9dfc75b64..80dc6d1de1 100644 --- a/packages/solhint-plugin-mud/CHANGELOG.md +++ b/packages/solhint-plugin-mud/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/solhint-plugin-mud/package.json b/packages/solhint-plugin-mud/package.json index 28d5e1025d..01bc3b7341 100644 --- a/packages/solhint-plugin-mud/package.json +++ b/packages/solhint-plugin-mud/package.json @@ -1,6 +1,6 @@ { "name": "solhint-plugin-mud", - "version": "2.2.7", + "version": "2.2.8", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/stash/CHANGELOG.md b/packages/stash/CHANGELOG.md index 396603cc03..2a89a7a02c 100644 --- a/packages/stash/CHANGELOG.md +++ b/packages/stash/CHANGELOG.md @@ -1,5 +1,14 @@ # @latticexyz/stash +## 2.2.8 + +### Patch Changes + +- @latticexyz/config@2.2.8 +- @latticexyz/protocol-parser@2.2.8 +- @latticexyz/store@2.2.8 +- @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/stash/package.json b/packages/stash/package.json index ca44c9bc50..4cd3103884 100644 --- a/packages/stash/package.json +++ b/packages/stash/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/stash", - "version": "2.2.7", + "version": "2.2.8", "description": "High performance client store and query engine for MUD", "repository": { "type": "git", diff --git a/packages/store-indexer/CHANGELOG.md b/packages/store-indexer/CHANGELOG.md index bb74cc1e88..bb8615521d 100644 --- a/packages/store-indexer/CHANGELOG.md +++ b/packages/store-indexer/CHANGELOG.md @@ -1,5 +1,17 @@ # @latticexyz/store-indexer +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] +- Updated dependencies [0f5b291] + - @latticexyz/common@2.2.8 + - @latticexyz/store-sync@2.2.8 + - @latticexyz/block-logs-stream@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/store@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/store-indexer/package.json b/packages/store-indexer/package.json index 24f4791b33..d8c6be779a 100644 --- a/packages/store-indexer/package.json +++ b/packages/store-indexer/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store-indexer", - "version": "2.2.7", + "version": "2.2.8", "description": "Minimal Typescript indexer for Store", "repository": { "type": "git", diff --git a/packages/store-sync/CHANGELOG.md b/packages/store-sync/CHANGELOG.md index 2bb3273960..7306ffe2ff 100644 --- a/packages/store-sync/CHANGELOG.md +++ b/packages/store-sync/CHANGELOG.md @@ -1,5 +1,22 @@ # @latticexyz/store-sync +## 2.2.8 + +### Patch Changes + +- 7c7bdb2: Removed unused generics and ensure that we're only passing around the generics we need, when we need them. Hopefully this improves TS performance in MUD projects. +- Updated dependencies [7c7bdb2] +- Updated dependencies [0f5b291] + - @latticexyz/common@2.2.8 + - @latticexyz/block-logs-stream@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/world@2.2.8 + - @latticexyz/stash@2.2.8 + - @latticexyz/recs@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/store-sync/package.json b/packages/store-sync/package.json index df1dd06e4e..207644c3fe 100644 --- a/packages/store-sync/package.json +++ b/packages/store-sync/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store-sync", - "version": "2.2.7", + "version": "2.2.8", "description": "Utilities to sync MUD Store events with a client or cache", "repository": { "type": "git", diff --git a/packages/store/CHANGELOG.md b/packages/store/CHANGELOG.md index 07e20526f5..ad847bdd18 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/store/package.json b/packages/store/package.json index a251354c45..47881a057a 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store", - "version": "2.2.7", + "version": "2.2.8", "description": "Store", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 43f6a100e7..f95a56f792 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/packages/utils/package.json b/packages/utils/package.json index 5a7d812889..ecc17c482b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/utils", - "version": "2.2.7", + "version": "2.2.8", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/world-module-metadata/CHANGELOG.md b/packages/world-module-metadata/CHANGELOG.md index 49a835147d..a9d82f344e 100644 --- a/packages/world-module-metadata/CHANGELOG.md +++ b/packages/world-module-metadata/CHANGELOG.md @@ -1,5 +1,13 @@ # @latticexyz/world-module-metadata +## 2.2.8 + +### Patch Changes + +- @latticexyz/store@2.2.8 +- @latticexyz/world@2.2.8 +- @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/world-module-metadata/package.json b/packages/world-module-metadata/package.json index 20f1c355a0..9441f478fc 100644 --- a/packages/world-module-metadata/package.json +++ b/packages/world-module-metadata/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/world-module-metadata", - "version": "2.2.7", + "version": "2.2.8", "description": "Metadata world module", "repository": { "type": "git", diff --git a/packages/world-modules/CHANGELOG.md b/packages/world-modules/CHANGELOG.md index 12fd105047..845a34f389 100644 --- a/packages/world-modules/CHANGELOG.md +++ b/packages/world-modules/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/world@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/world-modules/package.json b/packages/world-modules/package.json index e60ff09930..f9ebb32b35 100644 --- a/packages/world-modules/package.json +++ b/packages/world-modules/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/world-modules", - "version": "2.2.7", + "version": "2.2.8", "description": "World modules", "repository": { "type": "git", diff --git a/packages/world/CHANGELOG.md b/packages/world/CHANGELOG.md index 9c4287cbae..3ab466b702 100644 --- a/packages/world/CHANGELOG.md +++ b/packages/world/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- Updated dependencies [7c7bdb2] + - @latticexyz/common@2.2.8 + - @latticexyz/config@2.2.8 + - @latticexyz/protocol-parser@2.2.8 + - @latticexyz/store@2.2.8 + - @latticexyz/schema-type@2.2.8 + ## 2.2.7 ### Patch Changes diff --git a/packages/world/package.json b/packages/world/package.json index 258d3777c9..b3aed96968 100644 --- a/packages/world/package.json +++ b/packages/world/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/world", - "version": "2.2.7", + "version": "2.2.8", "description": "World framework", "repository": { "type": "git", diff --git a/test/mock-game-contracts/CHANGELOG.md b/test/mock-game-contracts/CHANGELOG.md index 2e3e30a1ef..c1e8bb8354 100644 --- a/test/mock-game-contracts/CHANGELOG.md +++ b/test/mock-game-contracts/CHANGELOG.md @@ -1,5 +1,7 @@ # mock-game-contracts +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/test/mock-game-contracts/package.json b/test/mock-game-contracts/package.json index c0b1fa9b2f..b1a3f1b2f6 100644 --- a/test/mock-game-contracts/package.json +++ b/test/mock-game-contracts/package.json @@ -1,6 +1,6 @@ { "name": "mock-game-contracts", - "version": "2.2.7", + "version": "2.2.8", "private": true, "license": "MIT", "scripts": { diff --git a/test/ts-benchmarks/CHANGELOG.md b/test/ts-benchmarks/CHANGELOG.md index 99f98bba26..aa3a1c619b 100644 --- a/test/ts-benchmarks/CHANGELOG.md +++ b/test/ts-benchmarks/CHANGELOG.md @@ -1,5 +1,7 @@ # ts-benchmarks +## 2.2.8 + ## 2.2.7 ## 2.2.6 diff --git a/test/ts-benchmarks/package.json b/test/ts-benchmarks/package.json index 70018582a4..e75a22250d 100644 --- a/test/ts-benchmarks/package.json +++ b/test/ts-benchmarks/package.json @@ -1,6 +1,6 @@ { "name": "ts-benchmarks", - "version": "2.2.7", + "version": "2.2.8", "private": true, "license": "MIT", "scripts": {