Skip to content

Commit

Permalink
Version Packages (#3219)
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] authored Sep 23, 2024
1 parent 4fffb79 commit c7b8f01
Show file tree
Hide file tree
Showing 59 changed files with 287 additions and 54 deletions.
6 changes: 0 additions & 6 deletions .changeset/early-poems-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-walls-attend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-crabs-trade.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/large-windows-sort.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-llamas-learn.md

This file was deleted.

30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
30 changes: 30 additions & 0 deletions docs/pages/changelog.mdx
Original file line number Diff line number Diff line change
@@ -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
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.8

## 2.2.7

## 2.2.6
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.7",
"version": "2.2.8",
"description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions packages/block-logs-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"description": "Create a stream of EVM block logs for events",
"repository": {
"type": "git",
Expand Down
20 changes: 20 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"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.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
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.7",
"version": "2.2.8",
"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.2.8

### Patch Changes

- Updated dependencies [7c7bdb2]
- @latticexyz/common@2.2.8
- @latticexyz/schema-type@2.2.8

## 2.2.7

### 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.7",
"version": "2.2.8",
"description": "Config for Store and World",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/create-mud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"description": "Create a new MUD project",
"license": "MIT",
"author": "Lattice <[email protected]>",
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.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
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.7",
"version": "2.2.8",
"description": "MUD developer tools",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"description": "World Explorer is a tool for visually exploring and manipulating the state of worlds",
"type": "module",
"exports": {
Expand Down
7 changes: 7 additions & 0 deletions packages/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @latticexyz/faucet

## 2.2.8

### Patch Changes

- Updated dependencies [7c7bdb2]
- @latticexyz/common@2.2.8

## 2.2.7

### 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.7",
"version": "2.2.8",
"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.8

## 2.2.7

## 2.2.6
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.7",
"version": "2.2.8",
"description": "Gas reporter for specific lines within forge tests",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions packages/protocol-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"description": "Parser utilities for the MUD protocol",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.7",
"version": "2.2.8",
"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.8

### Patch Changes

- @latticexyz/schema-type@2.2.8
- @latticexyz/utils@2.2.8

## 2.2.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/recs/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading

0 comments on commit c7b8f01

Please sign in to comment.