Skip to content

Commit

Permalink
Version Packages (#3205)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 20, 2024
1 parent 58f101e commit 972933d
Show file tree
Hide file tree
Showing 59 changed files with 290 additions and 57 deletions.
5 changes: 0 additions & 5 deletions .changeset/flat-bulldogs-smash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-parrots-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-ducks-relate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/red-gifts-cheat.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/thick-countries-double.md

This file was deleted.

34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## Version 2.2.7

Release date: Fri Sep 20 2024

### Patch changes

**[feat(cli): quieter automine (#3212)](https://github.com/latticexyz/mud/commit/58f101e45ad50e064779cbc441246a22b70efa07)** (@latticexyz/cli)

Reduced the log noise from enabling/disabling automine on non-Anvil chains.

**[fix(explorer): better observer decorator types (#3206)](https://github.com/latticexyz/mud/commit/5a6c03c6bc02c980ca051dadd8e20560ac25c771)** (@latticexyz/explorer)

Fixed `observer` decorator types so it can be used in more places.

**[feat(explorer): filterable tables selector (#3203)](https://github.com/latticexyz/mud/commit/7ac2a0d5ffd3f65d89318fc5778121ddf45bb5e1)** (@latticexyz/explorer)

Table selector of the Explore tab now has an input for searching/filtering tables by name.

**[fix(store): better enumValues type (#3211)](https://github.com/latticexyz/mud/commit/a08ba5e31e90bf3208919bc1d5e08c1ba9524130)** (@latticexyz/store)

Improved config output type of `enumValues`.

**[refactor: waitForStateChange -> waitForTransaction (#3210)](https://github.com/latticexyz/mud/commit/d21c1d1817ec2394007b28c90fec5a81f1fdd3d0)** (@latticexyz/explorer)

Renamed optional `waitForStateChange` param in `observer()` decorator to `waitForTransaction` to better align with `@latticexyz/store-sync` packages.

```diff
const { waitForTransaction } = syncToZustand(...);
-observer({ waitForStateChange: waitForTransaction });
+observer({ waitForTransaction });
```

---

## Version 2.2.6

Release date: Thu Sep 19 2024
Expand Down
34 changes: 34 additions & 0 deletions docs/pages/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## Version 2.2.7

Release date: Fri Sep 20 2024

### Patch changes

**[feat(cli): quieter automine (#3212)](https://github.com/latticexyz/mud/commit/58f101e45ad50e064779cbc441246a22b70efa07)** (@latticexyz/cli)

Reduced the log noise from enabling/disabling automine on non-Anvil chains.

**[fix(explorer): better observer decorator types (#3206)](https://github.com/latticexyz/mud/commit/5a6c03c6bc02c980ca051dadd8e20560ac25c771)** (@latticexyz/explorer)

Fixed `observer` decorator types so it can be used in more places.

**[feat(explorer): filterable tables selector (#3203)](https://github.com/latticexyz/mud/commit/7ac2a0d5ffd3f65d89318fc5778121ddf45bb5e1)** (@latticexyz/explorer)

Table selector of the Explore tab now has an input for searching/filtering tables by name.

**[fix(store): better enumValues type (#3211)](https://github.com/latticexyz/mud/commit/a08ba5e31e90bf3208919bc1d5e08c1ba9524130)** (@latticexyz/store)

Improved config output type of `enumValues`.

**[refactor: waitForStateChange -> waitForTransaction (#3210)](https://github.com/latticexyz/mud/commit/d21c1d1817ec2394007b28c90fec5a81f1fdd3d0)** (@latticexyz/explorer)

Renamed optional `waitForStateChange` param in `observer()` decorator to `waitForTransaction` to better align with `@latticexyz/store-sync` packages.

```diff
const { waitForTransaction } = syncToZustand(...);
-observer({ waitForStateChange: waitForTransaction });
+observer({ waitForTransaction });
```

---

## Version 2.2.6

Release date: Thu Sep 19 2024
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.2.7

## 2.2.6

## 2.2.5
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.2.6",
"version": "2.2.7",
"description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/block-logs-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @latticexyz/block-logs-stream

## 2.2.7

### Patch Changes

- @latticexyz/common@2.2.7

## 2.2.6

### 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.2.6",
"version": "2.2.7",
"description": "Create a stream of EVM block logs for events",
"repository": {
"type": "git",
Expand Down
17 changes: 17 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## 2.2.7

### Patch Changes

- 58f101e: Reduced the log noise from enabling/disabling automine on non-Anvil chains.
- Updated dependencies [a08ba5e]
- @latticexyz/store@2.2.7
- @latticexyz/world@2.2.7
- @latticexyz/world-module-metadata@2.2.7
- @latticexyz/abi-ts@2.2.7
- @latticexyz/common@2.2.7
- @latticexyz/config@2.2.7
- @latticexyz/gas-report@2.2.7
- @latticexyz/protocol-parser@2.2.7
- @latticexyz/schema-type@2.2.7
- @latticexyz/utils@2.2.7

## 2.2.6

### Patch 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.2.6",
"version": "2.2.7",
"description": "Command line interface for mud",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.2.7

### Patch Changes

- @latticexyz/schema-type@2.2.7

## 2.2.6

### Patch 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.2.6",
"version": "2.2.7",
"description": "Common low level logic shared between packages",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.2.7

### Patch Changes

- @latticexyz/common@2.2.7
- @latticexyz/schema-type@2.2.7

## 2.2.6

### Patch 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.2.6",
"version": "2.2.7",
"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.2.7

## 2.2.6

## 2.2.5
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.2.6",
"version": "2.2.7",
"description": "Create a new MUD project",
"license": "MIT",
"author": "Lattice <mud@lattice.xyz>",
Expand Down
14 changes: 14 additions & 0 deletions packages/dev-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @latticexyz/dev-tools

## 2.2.7

### Patch Changes

- Updated dependencies [a08ba5e]
- @latticexyz/store@2.2.7
- @latticexyz/react@2.2.7
- @latticexyz/store-sync@2.2.7
- @latticexyz/world@2.2.7
- @latticexyz/common@2.2.7
- @latticexyz/recs@2.2.7
- @latticexyz/schema-type@2.2.7
- @latticexyz/utils@2.2.7

## 2.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.2.6",
"version": "2.2.7",
"description": "MUD developer tools",
"repository": {
"type": "git",
Expand Down
22 changes: 22 additions & 0 deletions packages/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @latticexyz/explorer

## 2.2.7

### Patch Changes

- 5a6c03c: Fixed `observer` decorator types so it can be used in more places.
- 7ac2a0d: Table selector of the Explore tab now has an input for searching/filtering tables by name.
- d21c1d1: Renamed optional `waitForStateChange` param in `observer()` decorator to `waitForTransaction` to better align with `@latticexyz/store-sync` packages.

```diff
const { waitForTransaction } = syncToZustand(...);
-observer({ waitForStateChange: waitForTransaction });
+observer({ waitForTransaction });
```

- Updated dependencies [a08ba5e]
- @latticexyz/store@2.2.7
- @latticexyz/store-sync@2.2.7
- @latticexyz/world@2.2.7
- @latticexyz/common@2.2.7
- @latticexyz/protocol-parser@2.2.7
- @latticexyz/schema-type@2.2.7

## 2.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/explorer",
"version": "2.2.6",
"version": "2.2.7",
"description": "World Explorer is a tool for visually exploring and manipulating the state of worlds",
"type": "module",
"exports": {
Expand Down
6 changes: 6 additions & 0 deletions packages/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @latticexyz/faucet

## 2.2.7

### Patch Changes

- @latticexyz/common@2.2.7

## 2.2.6

### Patch 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.2.6",
"version": "2.2.7",
"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.2.7

## 2.2.6

## 2.2.5
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.2.6",
"version": "2.2.7",
"description": "Gas reporter for specific lines within forge tests",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/protocol-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @latticexyz/protocol-parser

## 2.2.7

### Patch Changes

- @latticexyz/common@2.2.7
- @latticexyz/config@2.2.7
- @latticexyz/schema-type@2.2.7

## 2.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/protocol-parser",
"version": "2.2.6",
"version": "2.2.7",
"description": "Parser utilities for the MUD protocol",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2.2.7

### Patch Changes

- Updated dependencies [a08ba5e]
- @latticexyz/store@2.2.7
- @latticexyz/recs@2.2.7

## 2.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/react",
"version": "2.2.6",
"version": "2.2.7",
"description": "React tools for MUD client.",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/recs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.2.7

### Patch Changes

- @latticexyz/schema-type@2.2.7
- @latticexyz/utils@2.2.7

## 2.2.6

### Patch Changes
Expand Down
Loading

0 comments on commit 972933d

Please sign in to comment.