Skip to content

Commit

Permalink
Version Packages (#3238)
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 Oct 7, 2024
1 parent 645b7e0 commit a28e548
Show file tree
Hide file tree
Showing 62 changed files with 394 additions and 95 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-starfishes-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-colts-smile.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-mangos-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-dragons-sit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-experts-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-kangaroos-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-dodos-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-impalas-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nervous-clouds-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sour-bats-compare.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/ten-llamas-protect.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/thirty-eels-grab.md

This file was deleted.

67 changes: 67 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,70 @@
## Version 2.2.11

Release date: Mon Oct 07 2024

### Patch changes

**[feat(explorer): show transactions (#3062)](https://github.com/latticexyz/mud/commit/bbd5e315d18e2a3cdbd9a20023b680eac77d74b6)** (@latticexyz/explorer)

Observe tab is now populated by transactions flowing through the world, in addition to local transactions when using the `observer` transport wrapper.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/block-logs-stream)

`fetchLogs` and `blockRangeToLogs` now accept a `getLogs` option to override the default behavior.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/store)

Added `getStoreLogs` and `flattenStoreLogs` to aid in fetching data from store contracts. For now, these are internal exports and considered unstable/experimental.

**[feat(store-sync): add client support for streaming logs from indexer (#3226)](https://github.com/latticexyz/mud/commit/61930eeade86d8ce46392449a797ef6291f0ce62)** (@latticexyz/store-sync)

Added support for streaming logs from the indexer.

**[fix(explorer): expand selected transaction table row by hash/writeId (#3263)](https://github.com/latticexyz/mud/commit/645b7e09f191b41ad296c23f212da1739f17add5)** (@latticexyz/explorer)

Fixed row expansion in the transactions table where an incorrect row would expand when new transactions appeared.

**[fix(cli): update state block in dev runner redeploy (#3243)](https://github.com/latticexyz/mud/commit/111bb1b6c767a6f9654dde1a711d1db784f0770a)** (@latticexyz/cli)

Fixed a dev runner bug where the state block of a previous deploy was not updated during a redeploy, causing failed deploys due to fetching outdated world state.

**[fix(explorer): allow overriding internal indexer env variables (#3237)](https://github.com/latticexyz/mud/commit/85bbeb8be12597f28cd1506dae0d44b34c1427e4)** (@latticexyz/explorer)

It is now possible to pass in environment variables like `RPC_HTTP_URL` to the internal local indexer when running the explorer locally.

**[feat(explorer): integrate rejected transactions (#3251)](https://github.com/latticexyz/mud/commit/71eb34804ee9a6c74a10f896f41bf6f74cfc889c)** (@latticexyz/explorer)

Observe tab is now populated by rejected transactions coming from the `observer` transport wrapper.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/cli)

Deployer now has a better method for fetching store logs from the world that should be more efficient and resilient to block range errors and rate limiting.

**[feat(store): add unwrap() function to ResourceIdInstance (#3249)](https://github.com/latticexyz/mud/commit/13e56891c7d6b66d53047e0d2de38ffea6fd2524)** (@latticexyz/store)

Added an `unwrap` function to the `ResourceIdInstance` library to make it easier to unwrap a `ResourceId` with `resourceId.unwrap()`.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/common)

Added `logSort` method to help when sorting logs fetched from RPC, where they come back ordered relative to the topics used.

```ts
import { logSort } from "@latticexyz/common";

const logs = getLogs(...);
logs.sort(logSort);
```

**[feat(cli): mud pull (#3171)](https://github.com/latticexyz/mud/commit/9e53a51f3b6bf04f5a0074e2c61dc88a9a63ceec)** (@latticexyz/cli)

Added a `mud pull` command that downloads state from an existing world and uses it to generate a MUD config with tables and system interfaces. This makes it much easier to extend worlds.

```
mud pull --worldAddress 0x… --rpc https://…
```

---

## Version 2.2.10

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

Release date: Mon Oct 07 2024

### Patch changes

**[feat(explorer): show transactions (#3062)](https://github.com/latticexyz/mud/commit/bbd5e315d18e2a3cdbd9a20023b680eac77d74b6)** (@latticexyz/explorer)

Observe tab is now populated by transactions flowing through the world, in addition to local transactions when using the `observer` transport wrapper.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/block-logs-stream)

`fetchLogs` and `blockRangeToLogs` now accept a `getLogs` option to override the default behavior.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/store)

Added `getStoreLogs` and `flattenStoreLogs` to aid in fetching data from store contracts. For now, these are internal exports and considered unstable/experimental.

**[feat(store-sync): add client support for streaming logs from indexer (#3226)](https://github.com/latticexyz/mud/commit/61930eeade86d8ce46392449a797ef6291f0ce62)** (@latticexyz/store-sync)

Added support for streaming logs from the indexer.

**[fix(explorer): expand selected transaction table row by hash/writeId (#3263)](https://github.com/latticexyz/mud/commit/645b7e09f191b41ad296c23f212da1739f17add5)** (@latticexyz/explorer)

Fixed row expansion in the transactions table where an incorrect row would expand when new transactions appeared.

**[fix(cli): update state block in dev runner redeploy (#3243)](https://github.com/latticexyz/mud/commit/111bb1b6c767a6f9654dde1a711d1db784f0770a)** (@latticexyz/cli)

Fixed a dev runner bug where the state block of a previous deploy was not updated during a redeploy, causing failed deploys due to fetching outdated world state.

**[fix(explorer): allow overriding internal indexer env variables (#3237)](https://github.com/latticexyz/mud/commit/85bbeb8be12597f28cd1506dae0d44b34c1427e4)** (@latticexyz/explorer)

It is now possible to pass in environment variables like `RPC_HTTP_URL` to the internal local indexer when running the explorer locally.

**[feat(explorer): integrate rejected transactions (#3251)](https://github.com/latticexyz/mud/commit/71eb34804ee9a6c74a10f896f41bf6f74cfc889c)** (@latticexyz/explorer)

Observe tab is now populated by rejected transactions coming from the `observer` transport wrapper.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/cli)

Deployer now has a better method for fetching store logs from the world that should be more efficient and resilient to block range errors and rate limiting.

**[feat(store): add unwrap() function to ResourceIdInstance (#3249)](https://github.com/latticexyz/mud/commit/13e56891c7d6b66d53047e0d2de38ffea6fd2524)** (@latticexyz/store)

Added an `unwrap` function to the `ResourceIdInstance` library to make it easier to unwrap a `ResourceId` with `resourceId.unwrap()`.

**[feat(cli,store): fetch table-specific logs (#3245)](https://github.com/latticexyz/mud/commit/7ddcf64a222f184b1902a1dc93089064465b6acf)** (@latticexyz/common)

Added `logSort` method to help when sorting logs fetched from RPC, where they come back ordered relative to the topics used.

```ts
import { logSort } from "@latticexyz/common";

const logs = getLogs(...);
logs.sort(logSort);
```

**[feat(cli): mud pull (#3171)](https://github.com/latticexyz/mud/commit/9e53a51f3b6bf04f5a0074e2c61dc88a9a63ceec)** (@latticexyz/cli)

Added a `mud pull` command that downloads state from an existing world and uses it to generate a MUD config with tables and system interfaces. This makes it much easier to extend worlds.

```
mud pull --worldAddress 0x… --rpc https://…
```

---

## Version 2.2.10

Release date: Thu Sep 26 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.11

## 2.2.10

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

## 2.2.11

### Patch Changes

- 7ddcf64: `fetchLogs` and `blockRangeToLogs` now accept a `getLogs` option to override the default behavior.
- Updated dependencies [7ddcf64]
- @latticexyz/common@2.2.11

## 2.2.10

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

## 2.2.11

### Patch Changes

- 111bb1b: Fixed a dev runner bug where the state block of a previous deploy was not updated during a redeploy, causing failed deploys due to fetching outdated world state.
- 7ddcf64: Deployer now has a better method for fetching store logs from the world that should be more efficient and resilient to block range errors and rate limiting.
- 9e53a51: Added a `mud pull` command that downloads state from an existing world and uses it to generate a MUD config with tables and system interfaces. This makes it much easier to extend worlds.

```
mud pull --worldAddress 0x… --rpc https://…
```

- Updated dependencies [7ddcf64]
- Updated dependencies [7ddcf64]
- Updated dependencies [13e5689]
- Updated dependencies [7ddcf64]
- @latticexyz/block-logs-stream@2.2.11
- @latticexyz/store@2.2.11
- @latticexyz/common@2.2.11
- @latticexyz/world@2.2.11
- @latticexyz/world-module-metadata@2.2.11
- @latticexyz/config@2.2.11
- @latticexyz/protocol-parser@2.2.11
- @latticexyz/abi-ts@2.2.11
- @latticexyz/gas-report@2.2.11
- @latticexyz/schema-type@2.2.11
- @latticexyz/utils@2.2.11

## 2.2.10

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

## 2.2.11

### Patch Changes

- 7ddcf64: Added `logSort` method to help when sorting logs fetched from RPC, where they come back ordered relative to the topics used.

```ts
import { logSort } from "@latticexyz/common";

const logs = getLogs(...);
logs.sort(logSort);
```

- @latticexyz/schema-type@2.2.11

## 2.2.10

### 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.10",
"version": "2.2.11",
"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.11

### Patch Changes

- Updated dependencies [7ddcf64]
- @latticexyz/common@2.2.11
- @latticexyz/schema-type@2.2.11

## 2.2.10

### 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.10",
"version": "2.2.11",
"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.11

## 2.2.10

### Patch 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.2.10",
"version": "2.2.11",
"description": "Create a new MUD project",
"license": "MIT",
"author": "Lattice <[email protected]>",
Expand Down
17 changes: 17 additions & 0 deletions packages/dev-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @latticexyz/dev-tools

## 2.2.11

### Patch Changes

- Updated dependencies [7ddcf64]
- Updated dependencies [61930ee]
- Updated dependencies [13e5689]
- Updated dependencies [7ddcf64]
- @latticexyz/store@2.2.11
- @latticexyz/store-sync@2.2.11
- @latticexyz/common@2.2.11
- @latticexyz/react@2.2.11
- @latticexyz/world@2.2.11
- @latticexyz/recs@2.2.11
- @latticexyz/schema-type@2.2.11
- @latticexyz/utils@2.2.11

## 2.2.10

### Patch Changes
Expand Down
Loading

0 comments on commit a28e548

Please sign in to comment.