Skip to content

Commit

Permalink
Version Packages (next)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 30, 2023
1 parent fe005ee commit 1b5d24e
Show file tree
Hide file tree
Showing 63 changed files with 343 additions and 36 deletions.
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"curly-numbers-talk",
"curvy-tables-melt",
"cyan-hats-try",
"cyan-timers-tan",
"dirty-items-retire",
"dry-chicken-love",
"eighty-pots-report",
Expand Down Expand Up @@ -110,6 +111,7 @@
"nasty-trains-drop",
"nasty-waves-divide",
"nervous-walls-knock",
"nice-bikes-double",
"nice-fishes-perform",
"nice-glasses-begin",
"nice-moose-love",
Expand All @@ -131,6 +133,7 @@
"rare-lizards-sleep",
"rare-planes-draw",
"rare-trainers-fry",
"real-crews-hide",
"real-ducks-hope",
"real-students-exercise",
"red-falcons-do",
Expand Down
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
## Version 2.0.0-next.10

### Minor changes

**[docs: changeset for indexer/store sync table IDs param (#1662)](https://github.com/latticexyz/mud/commit/4081493b84ab5c78a5147d4af8d41fc2d9e027a5)** (@latticexyz/store-indexer, @latticexyz/store-sync)

Added a `tableIds` parameter to store sync methods and indexer to allow filtering data streams by table IDs. Store sync methods automatically include all internal table IDs from Store and World.

```ts
import { syncToRecs } from "@latticexyz/store-sync/recs";
import { resourceIdToHex } from "@latticexyz/common";

syncToRecs({
...
tableIds: [resourceIdToHex(...)],
});
```

```ts
import { createIndexerClient } from "@latticexyz/store-sync/trpc-indexer";
import { resourceIdToHex } from "@latticexyz/common";

const client = createIndexerClient({ ... });
client.findAll({
...
tableIds: [resourceIdToHex(...)],
});
```

### Patch changes

**[fix(cli): fix table IDs for module install (#1663)](https://github.com/latticexyz/mud/commit/87235a21b28fc831b5fb7a1546835ef08bd51655)** (@latticexyz/cli)

Fix table IDs for module install step of deploy

**[fix(cli): register namespace with namespaceId (#1619)](https://github.com/latticexyz/mud/commit/1d403962283c5b5f62410867be01f6adff277f41)** (@latticexyz/cli)

We fixed a bug in the deploy script that would cause the deployment to fail if a non-root namespace was used in the config.

---

## Version 2.0.0-next.9

### Major changes
Expand Down
41 changes: 41 additions & 0 deletions docs/pages/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
## Version 2.0.0-next.10

### Minor changes

**[docs: changeset for indexer/store sync table IDs param (#1662)](https://github.com/latticexyz/mud/commit/4081493b84ab5c78a5147d4af8d41fc2d9e027a5)** (@latticexyz/store-indexer, @latticexyz/store-sync)

Added a `tableIds` parameter to store sync methods and indexer to allow filtering data streams by table IDs. Store sync methods automatically include all internal table IDs from Store and World.

```ts
import { syncToRecs } from "@latticexyz/store-sync/recs";
import { resourceIdToHex } from "@latticexyz/common";

syncToRecs({
...
tableIds: [resourceIdToHex(...)],
});
```

```ts
import { createIndexerClient } from "@latticexyz/store-sync/trpc-indexer";
import { resourceIdToHex } from "@latticexyz/common";

const client = createIndexerClient({ ... });
client.findAll({
...
tableIds: [resourceIdToHex(...)],
});
```

### Patch changes

**[fix(cli): fix table IDs for module install (#1663)](https://github.com/latticexyz/mud/commit/87235a21b28fc831b5fb7a1546835ef08bd51655)** (@latticexyz/cli)

Fix table IDs for module install step of deploy

**[fix(cli): register namespace with namespaceId (#1619)](https://github.com/latticexyz/mud/commit/1d403962283c5b5f62410867be01f6adff277f41)** (@latticexyz/cli)

We fixed a bug in the deploy script that would cause the deployment to fail if a non-root namespace was used in the config.

---

## Version 2.0.0-next.9

### Major changes
Expand Down
2 changes: 2 additions & 0 deletions packages/abi-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @latticexyz/abi-ts

## 2.0.0-next.10

## 2.0.0-next.9

## 2.0.0-next.8
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/abi-ts",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/block-logs-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @latticexyz/block-logs-stream

## 2.0.0-next.10

### Patch Changes

- Updated dependencies []:
- @latticexyz/common@2.0.0-next.10

## 2.0.0-next.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/block-logs-stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/block-logs-stream",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Create a stream of EVM block logs for events",
"repository": {
"type": "git",
Expand Down
21 changes: 21 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change Log

## 2.0.0-next.10

### Patch Changes

- [#1663](https://github.com/latticexyz/mud/pull/1663) [`87235a21`](https://github.com/latticexyz/mud/commit/87235a21b28fc831b5fb7a1546835ef08bd51655) Thanks [@holic](https://github.com/holic)! - Fix table IDs for module install step of deploy

- [#1619](https://github.com/latticexyz/mud/pull/1619) [`1d403962`](https://github.com/latticexyz/mud/commit/1d403962283c5b5f62410867be01f6adff277f41) Thanks [@alvrs](https://github.com/alvrs)! - We fixed a bug in the deploy script that would cause the deployment to fail if a non-root namespace was used in the config.

- Updated dependencies []:
- @latticexyz/abi-ts@2.0.0-next.10
- @latticexyz/common@2.0.0-next.10
- @latticexyz/config@2.0.0-next.10
- @latticexyz/gas-report@2.0.0-next.10
- @latticexyz/protocol-parser@2.0.0-next.10
- @latticexyz/schema-type@2.0.0-next.10
- @latticexyz/services@2.0.0-next.10
- @latticexyz/store@2.0.0-next.10
- @latticexyz/utils@2.0.0-next.10
- @latticexyz/world@2.0.0-next.10
- @latticexyz/world-modules@2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/cli",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Command line interface for mud",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.0.0-next.10

### Patch Changes

- Updated dependencies []:
- @latticexyz/schema-type@2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/common",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Common low level logic shared between packages",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2.0.0-next.10

### Patch Changes

- Updated dependencies []:
- @latticexyz/common@2.0.0-next.10
- @latticexyz/schema-type@2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/config",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Config for Store and World",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-mud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 2.0.0-next.10

## 2.0.0-next.9

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-mud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-mud",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Create a new MUD project",
"license": "MIT",
"author": "Lattice <[email protected]>",
Expand Down
13 changes: 13 additions & 0 deletions packages/dev-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @latticexyz/dev-tools

## 2.0.0-next.10

### Patch Changes

- Updated dependencies [[`4081493b`](https://github.com/latticexyz/mud/commit/4081493b84ab5c78a5147d4af8d41fc2d9e027a5)]:
- @latticexyz/store-sync@2.0.0-next.10
- @latticexyz/common@2.0.0-next.10
- @latticexyz/react@2.0.0-next.10
- @latticexyz/recs@2.0.0-next.10
- @latticexyz/store@2.0.0-next.10
- @latticexyz/utils@2.0.0-next.10
- @latticexyz/world@2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/dev-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/dev-tools",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "MUD developer tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -51,12 +51,12 @@
"vitest": "0.31.4"
},
"peerDependencies": {
"@latticexyz/common": "2.0.0-next.9",
"@latticexyz/recs": "2.0.0-next.9",
"@latticexyz/store": "2.0.0-next.9",
"@latticexyz/store-sync": "2.0.0-next.9",
"@latticexyz/utils": "2.0.0-next.9",
"@latticexyz/world": "2.0.0-next.9"
"@latticexyz/common": "2.0.0-next.10",
"@latticexyz/recs": "2.0.0-next.10",
"@latticexyz/store": "2.0.0-next.10",
"@latticexyz/store-sync": "2.0.0-next.10",
"@latticexyz/utils": "2.0.0-next.10",
"@latticexyz/world": "2.0.0-next.10"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 2 additions & 0 deletions packages/ecs-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @latticexyz/ecs-browser

## 2.0.0-next.10

## 2.0.0-next.9

## 2.0.0-next.8
Expand Down
2 changes: 1 addition & 1 deletion packages/ecs-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@latticexyz/ecs-browser",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"private": true
}
2 changes: 2 additions & 0 deletions packages/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @latticexyz/faucet

## 2.0.0-next.10

## 2.0.0-next.9

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/faucet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/faucet",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Faucet API for Lattice testnet",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/gas-report/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/gas-report/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/gas-report",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"description": "Gas reporter for specific lines within forge tests",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/network/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @latticexyz/network

## 2.0.0-next.10

## 2.0.0-next.9

## 2.0.0-next.8
Expand Down
2 changes: 1 addition & 1 deletion packages/network/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@latticexyz/network",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"private": true
}
2 changes: 2 additions & 0 deletions packages/noise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 2.0.0-next.10

## 2.0.0-next.9

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/noise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/noise",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"license": "MIT",
"type": "module",
"exports": {
Expand Down
7 changes: 7 additions & 0 deletions packages/phaserx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.0.0-next.10

### Patch Changes

- Updated dependencies []:
- @latticexyz/utils@2.0.0-next.10

## 2.0.0-next.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/phaserx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/phaserx",
"version": "2.0.0-next.9",
"version": "2.0.0-next.10",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git",
Expand Down
Loading

0 comments on commit 1b5d24e

Please sign in to comment.