From 352ab636c8bbcad94429124927f6c38af2c08a3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 14 Aug 2023 13:35:01 +0000 Subject: [PATCH] Version Packages (next) --- .changeset/pre.json | 5 ++ CHANGELOG.md | 99 ++++++++++++++++++++++++ packages/block-logs-stream/CHANGELOG.md | 9 +++ packages/block-logs-stream/package.json | 2 +- packages/cli/CHANGELOG.md | 36 +++++++++ packages/cli/package.json | 2 +- packages/common/CHANGELOG.md | 22 ++++++ packages/common/package.json | 2 +- packages/config/CHANGELOG.md | 8 ++ packages/config/package.json | 2 +- packages/create-mud/CHANGELOG.md | 51 ++++++++++++ packages/create-mud/package.json | 2 +- packages/dev-tools/CHANGELOG.md | 44 +++++++++++ packages/dev-tools/package.json | 14 ++-- packages/ecs-browser/CHANGELOG.md | 9 +++ packages/ecs-browser/package.json | 2 +- packages/gas-report/CHANGELOG.md | 2 + packages/gas-report/package.json | 2 +- packages/network/CHANGELOG.md | 14 ++++ packages/network/package.json | 2 +- packages/noise/CHANGELOG.md | 2 + packages/noise/package.json | 2 +- packages/phaserx/CHANGELOG.md | 7 ++ packages/phaserx/package.json | 2 +- packages/protocol-parser/CHANGELOG.md | 8 ++ packages/protocol-parser/package.json | 2 +- packages/react/CHANGELOG.md | 30 +++++++ packages/react/package.json | 2 +- packages/recs/CHANGELOG.md | 8 ++ packages/recs/package.json | 2 +- packages/schema-type/CHANGELOG.md | 2 + packages/schema-type/package.json | 2 +- packages/services/CHANGELOG.md | 2 + packages/services/package.json | 2 +- packages/solecs/CHANGELOG.md | 2 + packages/solecs/package.json | 2 +- packages/solhint-config-mud/CHANGELOG.md | 2 + packages/solhint-config-mud/package.json | 2 +- packages/solhint-plugin-mud/CHANGELOG.md | 2 + packages/solhint-plugin-mud/package.json | 2 +- packages/std-client/CHANGELOG.md | 36 +++++++++ packages/std-client/package.json | 2 +- packages/std-contracts/CHANGELOG.md | 2 + packages/std-contracts/package.json | 2 +- packages/store-cache/CHANGELOG.md | 10 +++ packages/store-cache/package.json | 2 +- packages/store-indexer/CHANGELOG.md | 10 +++ packages/store-indexer/package.json | 2 +- packages/store-sync/CHANGELOG.md | 33 ++++++++ packages/store-sync/package.json | 2 +- packages/store/CHANGELOG.md | 32 ++++++++ packages/store/package.json | 2 +- packages/utils/CHANGELOG.md | 2 + packages/utils/package.json | 2 +- packages/world/CHANGELOG.md | 29 +++++++ packages/world/package.json | 2 +- 56 files changed, 551 insertions(+), 33 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 69137299d82..3abe54e7b21 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -39,11 +39,13 @@ "fast-ears-hug", "fifty-squids-eat", "fluffy-moles-march", + "four-coats-pull", "giant-masks-carry", "great-cooks-dream", "itchy-kids-relax", "itchy-shoes-appear", "large-hats-walk", + "large-sloths-camp", "many-phones-study", "mean-pans-study", "metal-cats-double", @@ -54,10 +56,12 @@ "olive-parrots-move", "perfect-mangos-cry", "pink-horses-deny", + "pretty-hotels-drop", "quick-numbers-flash", "rare-planes-draw", "selfish-cycles-retire", "soft-boxes-smile", + "soft-dryers-invite", "spotty-sheep-warn", "stale-cooks-reflect", "strange-candles-shout", @@ -68,6 +72,7 @@ "tricky-kangaroos-love", "tricky-olives-stare", "tricky-oranges-pump", + "twenty-birds-scream", "weak-mails-cross", "witty-jokes-serve" ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 19f32ab19a5..14ec2d65efe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,102 @@ +# Version 2.0.0-next.2 + +## Major changes + +**[refactor(store): remove TableId library (#1279)](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062)** (@latticexyz/store) + +Remove `TableId` library to simplify `store` package + +**[feat(create-mud): infer recs components from config (#1278)](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)** (@latticexyz/cli, @latticexyz/std-client, @latticexyz/store-sync, @latticexyz/store, @latticexyz/world, create-mud) + +RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + +To migrate existing projects after upgrading to this MUD version: + +1. Remove `contractComponents.ts` from `client/src/mud` +2. Remove `components` argument from `syncToRecs` +3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +**[feat(dev-tools): use new sync stack (#1284)](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)** (@latticexyz/dev-tools, create-mud) + +MUD dev tools is updated to latest sync stack. You must now pass in all of its data requirements rather than relying on magic globals. + +```diff +import { mount as mountDevTools } from "@latticexyz/dev-tools"; + +- mountDevTools(); ++ mountDevTools({ ++ config, ++ publicClient, ++ walletClient, ++ latestBlock$, ++ blockStorageOperations$, ++ worldAddress, ++ worldAbi, ++ write$, ++ // if you're using recs ++ recsWorld, ++ }); +``` + +It's also advised to wrap dev tools so that it is only mounted during development mode. Here's how you do this with Vite: + +```ts +// https://vitejs.dev/guide/env-and-mode.html +if (import.meta.env.DEV) { + mountDevTools({ ... }); +} +``` + +## Minor changes + +**[feat(dev-tools): use new sync stack (#1284)](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)** (@latticexyz/common) + +`createContract` now has an `onWrite` callback so you can observe writes. This is useful for wiring up the transanction log in MUD dev tools. + +```ts +import { createContract, ContractWrite } from "@latticexyz/common"; +import { Subject } from "rxjs"; + +const write$ = new Subject(); +creactContract({ + ... + onWrite: (write) => write$.next(write), +}); +``` + +**[feat(dev-tools): use new sync stack (#1284)](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)** (@latticexyz/react) + +Adds a `usePromise` hook that returns a [native `PromiseSettledResult` object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled). + +```tsx +const promise = fetch(url); +const result = usePromise(promise); + +if (result.status === "idle" || result.status === "pending") { + return <>fetching; +} + +if (result.status === "rejected") { + return <>error fetching: {String(result.reason)}; +} + +if (result.status === "fulfilled") { + return <>fetch status: {result.value.status}; +} +``` + +--- + # Version 2.0.0-next.1 ## Major changes diff --git a/packages/block-logs-stream/CHANGELOG.md b/packages/block-logs-stream/CHANGELOG.md index 6ce48139d47..0346425d69c 100644 --- a/packages/block-logs-stream/CHANGELOG.md +++ b/packages/block-logs-stream/CHANGELOG.md @@ -1,5 +1,14 @@ # @latticexyz/block-logs-stream +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)]: + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/block-logs-stream/package.json b/packages/block-logs-stream/package.json index a1f055f07eb..8a917c5c36d 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.0.0-next.1", + "version": "2.0.0-next.2", "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 c4a0afdcac7..a0359a0919d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,41 @@ # Change Log +## 2.0.0-next.2 + +### Major Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/world@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/gas-report@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + - @latticexyz/services@2.0.0-next.2 + - @latticexyz/solecs@2.0.0-next.2 + - @latticexyz/std-contracts@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 9fea1537138..976b2b80c21 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/cli", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Command line interface for mud", "repository": { "type": "git", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index a0be1889a33..e61117e4b7d 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## 2.0.0-next.2 + +### Minor Changes + +- [#1284](https://github.com/latticexyz/mud/pull/1284) [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad) Thanks [@holic](https://github.com/holic)! - `createContract` now has an `onWrite` callback so you can observe writes. This is useful for wiring up the transanction log in MUD dev tools. + + ```ts + import { createContract, ContractWrite } from "@latticexyz/common"; + import { Subject } from "rxjs"; + + const write$ = new Subject(); + creactContract({ + ... + onWrite: (write) => write$.next(write), + }); + ``` + +### Patch Changes + +- Updated dependencies []: + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Major Changes diff --git a/packages/common/package.json b/packages/common/package.json index 86df629bb5d..4cdb28b3baf 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/common", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Common low level logic shared between packages", "repository": { "type": "git", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index d16e698b78e..d52c3de12a8 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)]: + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/config/package.json b/packages/config/package.json index 25c16ecf4df..b846fc54251 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/config", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Config for Store and World", "repository": { "type": "git", diff --git a/packages/create-mud/CHANGELOG.md b/packages/create-mud/CHANGELOG.md index 5928630bcdd..5ac8df3ffb0 100644 --- a/packages/create-mud/CHANGELOG.md +++ b/packages/create-mud/CHANGELOG.md @@ -1,5 +1,56 @@ # Change Log +## 2.0.0-next.2 + +### Major Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +- [#1284](https://github.com/latticexyz/mud/pull/1284) [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad) Thanks [@holic](https://github.com/holic)! - MUD dev tools is updated to latest sync stack. You must now pass in all of its data requirements rather than relying on magic globals. + + ```diff + import { mount as mountDevTools } from "@latticexyz/dev-tools"; + + - mountDevTools(); + + mountDevTools({ + + config, + + publicClient, + + walletClient, + + latestBlock$, + + blockStorageOperations$, + + worldAddress, + + worldAbi, + + write$, + + // if you're using recs + + recsWorld, + + }); + ``` + + It's also advised to wrap dev tools so that it is only mounted during development mode. Here's how you do this with Vite: + + ```ts + // https://vitejs.dev/guide/env-and-mode.html + if (import.meta.env.DEV) { + mountDevTools({ ... }); + } + ``` + ## 2.0.0-next.1 ### Major Changes diff --git a/packages/create-mud/package.json b/packages/create-mud/package.json index df39dea0d5f..da8d21dfc02 100644 --- a/packages/create-mud/package.json +++ b/packages/create-mud/package.json @@ -1,6 +1,6 @@ { "name": "create-mud", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "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 ec704cca987..7f7bf112c24 100644 --- a/packages/dev-tools/CHANGELOG.md +++ b/packages/dev-tools/CHANGELOG.md @@ -1,5 +1,49 @@ # @latticexyz/dev-tools +## 2.0.0-next.2 + +### Major Changes + +- [#1284](https://github.com/latticexyz/mud/pull/1284) [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad) Thanks [@holic](https://github.com/holic)! - MUD dev tools is updated to latest sync stack. You must now pass in all of its data requirements rather than relying on magic globals. + + ```diff + import { mount as mountDevTools } from "@latticexyz/dev-tools"; + + - mountDevTools(); + + mountDevTools({ + + config, + + publicClient, + + walletClient, + + latestBlock$, + + blockStorageOperations$, + + worldAddress, + + worldAbi, + + write$, + + // if you're using recs + + recsWorld, + + }); + ``` + + It's also advised to wrap dev tools so that it is only mounted during development mode. Here's how you do this with Vite: + + ```ts + // https://vitejs.dev/guide/env-and-mode.html + if (import.meta.env.DEV) { + mountDevTools({ ... }); + } + ``` + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/store-sync@2.0.0-next.2 + - @latticexyz/world@2.0.0-next.2 + - @latticexyz/react@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/dev-tools/package.json b/packages/dev-tools/package.json index 547ae9b4a08..a33faeb21c9 100644 --- a/packages/dev-tools/package.json +++ b/packages/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/dev-tools", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "MUD developer tools", "repository": { "type": "git", @@ -50,12 +50,12 @@ "vitest": "0.31.4" }, "peerDependencies": { - "@latticexyz/common": "*", - "@latticexyz/recs": "*", - "@latticexyz/store": "*", - "@latticexyz/store-sync": "*", - "@latticexyz/utils": "*", - "@latticexyz/world": "*" + "@latticexyz/common": "2.0.0-next.2", + "@latticexyz/recs": "2.0.0-next.2", + "@latticexyz/store": "2.0.0-next.2", + "@latticexyz/store-sync": "2.0.0-next.2", + "@latticexyz/utils": "2.0.0-next.2", + "@latticexyz/world": "2.0.0-next.2" }, "publishConfig": { "access": "public" diff --git a/packages/ecs-browser/CHANGELOG.md b/packages/ecs-browser/CHANGELOG.md index a6c73009019..55e30bdcd20 100644 --- a/packages/ecs-browser/CHANGELOG.md +++ b/packages/ecs-browser/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/std-client@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/ecs-browser/package.json b/packages/ecs-browser/package.json index 1cb7b53a429..3fb29f08da1 100644 --- a/packages/ecs-browser/package.json +++ b/packages/ecs-browser/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/ecs-browser", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Component Browser for RECS", "repository": { "type": "git", diff --git a/packages/gas-report/CHANGELOG.md b/packages/gas-report/CHANGELOG.md index 552b0de5016..2b137254f8f 100644 --- a/packages/gas-report/CHANGELOG.md +++ b/packages/gas-report/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/gas-report/package.json b/packages/gas-report/package.json index afe9c8d17d8..3b797fcfc4a 100644 --- a/packages/gas-report/package.json +++ b/packages/gas-report/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/gas-report", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Gas reporter for specific lines within forge tests", "repository": { "type": "git", diff --git a/packages/network/CHANGELOG.md b/packages/network/CHANGELOG.md index 76967eec03e..5f6dd6a2b15 100644 --- a/packages/network/CHANGELOG.md +++ b/packages/network/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/world@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + - @latticexyz/services@2.0.0-next.2 + - @latticexyz/solecs@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/network/package.json b/packages/network/package.json index 0c773301a2d..c552b4766af 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/network", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/noise/CHANGELOG.md b/packages/noise/CHANGELOG.md index 885f03e4c1f..8668e9b17e3 100644 --- a/packages/noise/CHANGELOG.md +++ b/packages/noise/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/noise/package.json b/packages/noise/package.json index 3f06771e55d..fdc33e98f03 100644 --- a/packages/noise/package.json +++ b/packages/noise/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/noise", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "license": "MIT", "type": "module", "exports": { diff --git a/packages/phaserx/CHANGELOG.md b/packages/phaserx/CHANGELOG.md index 3008ff8e789..cfe97612f30 100644 --- a/packages/phaserx/CHANGELOG.md +++ b/packages/phaserx/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies []: + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/phaserx/package.json b/packages/phaserx/package.json index 4af5e4914b6..2a57eec7d3b 100644 --- a/packages/phaserx/package.json +++ b/packages/phaserx/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/phaserx", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/protocol-parser/CHANGELOG.md b/packages/protocol-parser/CHANGELOG.md index 7d378403604..8dd56ec9649 100644 --- a/packages/protocol-parser/CHANGELOG.md +++ b/packages/protocol-parser/CHANGELOG.md @@ -1,5 +1,13 @@ # @latticexyz/protocol-parser +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)]: + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/protocol-parser/package.json b/packages/protocol-parser/package.json index c340f7660cd..0b56535467c 100644 --- a/packages/protocol-parser/package.json +++ b/packages/protocol-parser/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/protocol-parser", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Parser utilities for the MUD protocol", "repository": { "type": "git", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 9c11baf31f2..52f6f5239fb 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,35 @@ # Change Log +## 2.0.0-next.2 + +### Minor Changes + +- [#1284](https://github.com/latticexyz/mud/pull/1284) [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad) Thanks [@holic](https://github.com/holic)! - Adds a `usePromise` hook that returns a [native `PromiseSettledResult` object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled). + + ```tsx + const promise = fetch(url); + const result = usePromise(promise); + + if (result.status === "idle" || result.status === "pending") { + return <>fetching; + } + + if (result.status === "rejected") { + return <>error fetching: {String(result.reason)}; + } + + if (result.status === "fulfilled") { + return <>fetch status: {result.value.status}; + } + ``` + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/store-cache@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index f3ba944dbce..4986df0104c 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/react", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "React tools for MUD client.", "repository": { "type": "git", diff --git a/packages/recs/CHANGELOG.md b/packages/recs/CHANGELOG.md index 2e8466186c1..6ef481cd2d8 100644 --- a/packages/recs/CHANGELOG.md +++ b/packages/recs/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies []: + - @latticexyz/schema-type@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/recs/package.json b/packages/recs/package.json index f1016cfdcea..96ca596afbe 100644 --- a/packages/recs/package.json +++ b/packages/recs/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/recs", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "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 07f3bdee336..e1458562fd4 100644 --- a/packages/schema-type/CHANGELOG.md +++ b/packages/schema-type/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ### Minor Changes diff --git a/packages/schema-type/package.json b/packages/schema-type/package.json index 8359220b20e..2e86f179940 100644 --- a/packages/schema-type/package.json +++ b/packages/schema-type/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/schema-type", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "SchemaType enum for various languages", "repository": { "type": "git", diff --git a/packages/services/CHANGELOG.md b/packages/services/CHANGELOG.md index 5e1cb9198b9..3fd2d67a8e8 100644 --- a/packages/services/CHANGELOG.md +++ b/packages/services/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/services/package.json b/packages/services/package.json index 68172e8f6ff..de0a50bfc0c 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/services", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "MUD services for enhanced interactions with on-chain ECS state", "repository": { "type": "git", diff --git a/packages/solecs/CHANGELOG.md b/packages/solecs/CHANGELOG.md index 302792aeb7a..ca50905623f 100644 --- a/packages/solecs/CHANGELOG.md +++ b/packages/solecs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/solecs/package.json b/packages/solecs/package.json index 32b0ffd8e41..9a8f42d97b2 100644 --- a/packages/solecs/package.json +++ b/packages/solecs/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/solecs", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Solidity Entity Component System", "repository": { "type": "git", diff --git a/packages/solhint-config-mud/CHANGELOG.md b/packages/solhint-config-mud/CHANGELOG.md index c804e256a5d..8652a1109c0 100644 --- a/packages/solhint-config-mud/CHANGELOG.md +++ b/packages/solhint-config-mud/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/solhint-config-mud/package.json b/packages/solhint-config-mud/package.json index a2ee399c425..0c2010f0616 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.0.0-next.1", + "version": "2.0.0-next.2", "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 c804e256a5d..8652a1109c0 100644 --- a/packages/solhint-plugin-mud/CHANGELOG.md +++ b/packages/solhint-plugin-mud/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/solhint-plugin-mud/package.json b/packages/solhint-plugin-mud/package.json index 909da43ef55..a2fa61b10dd 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.0.0-next.1", + "version": "2.0.0-next.2", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/std-client/CHANGELOG.md b/packages/std-client/CHANGELOG.md index c2981b66453..9d50f31b3ba 100644 --- a/packages/std-client/CHANGELOG.md +++ b/packages/std-client/CHANGELOG.md @@ -1,5 +1,41 @@ # Change Log +## 2.0.0-next.2 + +### Major Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/cli@2.0.0-next.2 + - @latticexyz/world@2.0.0-next.2 + - @latticexyz/network@2.0.0-next.2 + - @latticexyz/store-cache@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + - @latticexyz/solecs@2.0.0-next.2 + - @latticexyz/utils@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/std-client/package.json b/packages/std-client/package.json index 025cb9ddac0..158b9dff1fe 100644 --- a/packages/std-client/package.json +++ b/packages/std-client/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/std-client", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Standard library for MUD client.", "repository": { "type": "git", diff --git a/packages/std-contracts/CHANGELOG.md b/packages/std-contracts/CHANGELOG.md index 61e2c56abe9..e159a0a02bc 100644 --- a/packages/std-contracts/CHANGELOG.md +++ b/packages/std-contracts/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/std-contracts/package.json b/packages/std-contracts/package.json index b70ccc72e7b..05a51c8cff7 100644 --- a/packages/std-contracts/package.json +++ b/packages/std-contracts/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/std-contracts", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "MUD Contracts Standard Library", "repository": { "type": "git", diff --git a/packages/store-cache/CHANGELOG.md b/packages/store-cache/CHANGELOG.md index 171c0251266..d9245da211b 100644 --- a/packages/store-cache/CHANGELOG.md +++ b/packages/store-cache/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/store-cache/package.json b/packages/store-cache/package.json index 013f9247f45..4d7a4de3f20 100644 --- a/packages/store-cache/package.json +++ b/packages/store-cache/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store-cache", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Database to replicate Store contract state on a TypeScript client", "repository": { "type": "git", diff --git a/packages/store-indexer/CHANGELOG.md b/packages/store-indexer/CHANGELOG.md index 67cda5a3f15..f0f470aeea1 100644 --- a/packages/store-indexer/CHANGELOG.md +++ b/packages/store-indexer/CHANGELOG.md @@ -1,5 +1,15 @@ # @latticexyz/store-indexer +## 2.0.0-next.2 + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/store-sync@2.0.0-next.2 + - @latticexyz/block-logs-stream@2.0.0-next.2 + ## 2.0.0-next.1 ### Major Changes diff --git a/packages/store-indexer/package.json b/packages/store-indexer/package.json index e23a10802b6..8dae10e2dd8 100644 --- a/packages/store-indexer/package.json +++ b/packages/store-indexer/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store-indexer", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Minimal Typescript indexer for Store", "repository": { "type": "git", diff --git a/packages/store-sync/CHANGELOG.md b/packages/store-sync/CHANGELOG.md index 5a0b5b2e7ee..6be1daa48e3 100644 --- a/packages/store-sync/CHANGELOG.md +++ b/packages/store-sync/CHANGELOG.md @@ -1,5 +1,38 @@ # @latticexyz/store-sync +## 2.0.0-next.2 + +### Major Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +### Patch Changes + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/world@2.0.0-next.2 + - @latticexyz/block-logs-stream@2.0.0-next.2 + - @latticexyz/protocol-parser@2.0.0-next.2 + - @latticexyz/recs@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Major Changes diff --git a/packages/store-sync/package.json b/packages/store-sync/package.json index 28b94110717..ee4b4fae3f6 100644 --- a/packages/store-sync/package.json +++ b/packages/store-sync/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store-sync", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "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 0550c1295f9..27e3e494326 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -1,5 +1,37 @@ # Change Log +## 2.0.0-next.2 + +### Major Changes + +- [#1279](https://github.com/latticexyz/mud/pull/1279) [`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062) Thanks [@dk1a](https://github.com/dk1a)! - Remove `TableId` library to simplify `store` package + +### Patch Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +- Updated dependencies [[`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad)]: + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/gas-report@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/store/package.json b/packages/store/package.json index fa398731b46..ef849f4c3aa 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/store", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "Store", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index a1dc4603757..76e0d719cf4 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 2.0.0-next.2 + ## 2.0.0-next.1 ## 2.0.0-next.0 diff --git a/packages/utils/package.json b/packages/utils/package.json index 9d941049d1a..80bec0be006 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/utils", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "repository": { "type": "git", "url": "https://github.com/latticexyz/mud.git", diff --git a/packages/world/CHANGELOG.md b/packages/world/CHANGELOG.md index ed4b886c2c3..e5866390241 100644 --- a/packages/world/CHANGELOG.md +++ b/packages/world/CHANGELOG.md @@ -1,5 +1,34 @@ # Change Log +## 2.0.0-next.2 + +### Patch Changes + +- [#1278](https://github.com/latticexyz/mud/pull/1278) [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473) Thanks [@holic](https://github.com/holic)! - RECS components are now dynamically created and inferred from your MUD config when using `syncToRecs`. + + To migrate existing projects after upgrading to this MUD version: + + 1. Remove `contractComponents.ts` from `client/src/mud` + 2. Remove `components` argument from `syncToRecs` + 3. Update `build:mud` and `dev` scripts in `contracts/package.json` to remove tsgen + + ```diff + - "build:mud": "mud tablegen && mud worldgen && mud tsgen --configPath mud.config.ts --out ../client/src/mud", + + "build:mud": "mud tablegen && mud worldgen", + ``` + + ```diff + - "dev": "pnpm mud dev-contracts --tsgenOutput ../client/src/mud", + + "dev": "pnpm mud dev-contracts", + ``` + +- Updated dependencies [[`a2588116`](https://github.com/latticexyz/mud/commit/a25881160cb3283e11d218be7b8a9fe38ee83062), [`939916bc`](https://github.com/latticexyz/mud/commit/939916bcd5c9f3caf0399e9ab7689e77e6bef7ad), [`48c51b52`](https://github.com/latticexyz/mud/commit/48c51b52acab147a2ed97903c43bafa9b6769473)]: + - @latticexyz/store@2.0.0-next.2 + - @latticexyz/common@2.0.0-next.2 + - @latticexyz/config@2.0.0-next.2 + - @latticexyz/gas-report@2.0.0-next.2 + - @latticexyz/schema-type@2.0.0-next.2 + ## 2.0.0-next.1 ### Patch Changes diff --git a/packages/world/package.json b/packages/world/package.json index c76e02063e7..92c0abd4ee0 100644 --- a/packages/world/package.json +++ b/packages/world/package.json @@ -1,6 +1,6 @@ { "name": "@latticexyz/world", - "version": "2.0.0-next.1", + "version": "2.0.0-next.2", "description": "World framework", "repository": { "type": "git",