Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/assigned-resolver-rename.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/calm-jobs-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clever-numbers-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eager-yaks-shout.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/ensapi-canonical-name.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-humans-wait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-crash-recovery-queued-chain-promotion.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forward-resolution-ensv2-datasource.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-cats-sink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loose-pets-vanish.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/materialize-canonical-name.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-taxes-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ripe-llamas-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-hairs-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swap-label-interpreted-index.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-items-crash.md

This file was deleted.

18 changes: 18 additions & 0 deletions apps/ensadmin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# ensadmin

## 1.14.0

### Minor Changes

- [#2090](https://github.com/namehash/ensnode/pull/2090) [`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583) Thanks [@tk-o](https://github.com/tk-o)! - Added indexing status based guard for Omnigraph API and Subgraph API views.

### Patch Changes

- [#2118](https://github.com/namehash/ensnode/pull/2118) [`bb7ad4a`](https://github.com/namehash/ensnode/commit/bb7ad4ae2c026d87ecb8d2a9ef751bf940bef923) Thanks [@tk-o](https://github.com/tk-o)! - Refined information presented on the "Connection" view.

- Updated dependencies [[`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583), [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9)]:
- @ensnode/ensnode-sdk@1.14.0
- @ensnode/ensnode-react@1.14.0
- @namehash/namehash-ui@1.14.0
- enssdk@1.14.0
- @ensnode/datasources@1.14.0
- @ensnode/scalar-react@0.0.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/ensadmin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ensadmin",
"version": "1.13.1",
"version": "1.14.0",
"private": true,
"type": "module",
"description": "Inspect the ENS Protocol like never before",
Expand Down
30 changes: 30 additions & 0 deletions apps/ensapi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# ensapi

## 1.14.0

### Minor Changes

- [#2101](https://github.com/namehash/ensnode/pull/2101) [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph (breaking)**: Renamed `Domain.resolver` to `Domain.assignedResolver` for clarity. The field's semantics are unchanged — it remains the Domain's _assigned_ Resolver, not its _effective_ Resolver.

- [#2101](https://github.com/namehash/ensnode/pull/2101) [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph (breaking)**: restructure `Domain.canonical` into a nullable `DomainCanonical` object. Removes top-level `Domain.canonical: Boolean!`, `Domain.name: InterpretedName`, and `Domain.path: [DomainInterface]`; adds `Domain.canonical: DomainCanonical` (null when the Domain is not Canonical) with subfields `{ name: InterpretedName!, path: [Domain!]!, node: Node! }`.

**Omnigraph (semantic change)**: `Domain.parent` now follows a single unidirectional pointer (`Registry.canonicalDomainId`) and does NOT enforce bidirectional canonical-edge agreement. Previously, `parent` was effectively null for non-canonical Domains and always pointed at a canonical Domain when non-null. With this change, a non-canonical Domain may have a non-null `parent`, and a canonical Domain's `parent` may itself be non-canonical. Consumers that relied on `parent ⇒ canonical` should additionally check `domain.canonical`.

- [#2102](https://github.com/namehash/ensnode/pull/2102) [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9) Thanks [@tk-o](https://github.com/tk-o)! - Continue to support protocol acceleration for data indexed from ENSv1 namespaces. Protocol acceleration for data indexed from ENSv2 namespaces will be supported in the near future.

- [#2090](https://github.com/namehash/ensnode/pull/2090) [`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583) Thanks [@tk-o](https://github.com/tk-o)! - Added indexing status based guard for Omnigraph API and Subgraph API routes.

### Patch Changes

- [#2104](https://github.com/namehash/ensnode/pull/2104) [`89c022b`](https://github.com/namehash/ensnode/commit/89c022b85669a6703b688b0b304e6caa12f1221b) Thanks [@shrugs](https://github.com/shrugs)! - Resolution API: Protocol Accelerated records now correctly resolve instead of incorrectly always returning `null`.

- [#2097](https://github.com/namehash/ensnode/pull/2097) [`1bc96f8`](https://github.com/namehash/ensnode/commit/1bc96f88c2e66f19fc4ab8bbda58753f5e414c6a) Thanks [@shrugs](https://github.com/shrugs)! - Forward Resolution is no longer disabled on ENSv1-only namespaces when the `ensv2` plugin is enabled. Forward Resolution is only (temporarily) disabled when a namespace has been upgraded to ENSv2. The Resolution API continues to operate in either case, just without Protocol Acceleration (temporarily) when ENSv2 is deployed.

- [#2101](https://github.com/namehash/ensnode/pull/2101) [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369) Thanks [@shrugs](https://github.com/shrugs)! - Omnigraph: The Domain interface now exposes `Domain.registry` and `Domain.subregistry` rather than being isolated to the concrete ENSv2 Domain entity, as in the unified model both ENSv1 and ENSv2 Domains have a parent and child Registry.

- Updated dependencies [[`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583), [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9), [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369), [`75e8aac`](https://github.com/namehash/ensnode/commit/75e8aac2abb044ce55119daab98d20ebcbda8304)]:
- @ensnode/ensnode-sdk@1.14.0
- @ensnode/ensdb-sdk@1.14.0
- @namehash/ens-referrals@1.14.0
- enssdk@1.14.0
- @ensnode/datasources@1.14.0
- @ensnode/ponder-subgraph@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/ensapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ensapi",
"version": "1.13.1",
"version": "1.14.0",
"private": true,
"type": "module",
"description": "ENSNode's ENS API",
Expand Down
18 changes: 18 additions & 0 deletions apps/ensindexer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# ensindexer

## 1.14.0

### Minor Changes

- [#2101](https://github.com/namehash/ensnode/pull/2101) [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369) Thanks [@shrugs](https://github.com/shrugs)! - **Materialize `Domain.canonicalName`, `canonicalLabelHashPath`, and `canonicalNode`** on every Canonical Domain. Indexes: hash on `canonicalName` (exact lookup), GIN trigram on `canonicalName` (substring), GIN on `canonicalLabelHashPath` (heal cascade), hash on `canonicalNode` (resolver-record joins).

### Patch Changes

- [#2108](https://github.com/namehash/ensnode/pull/2108) [`f61d04b`](https://github.com/namehash/ensnode/commit/f61d04b9bef5c0d4931ade6ab2425ac8874328b9) Thanks [@shrugs](https://github.com/shrugs)! - ENSIndexer: fix crash on startup after crash recovery when one or more chains were in Queued status pre-crash. The omnichain status snapshot builder now promotes such chains to Backfill once other chains' progress has advanced past their `startBlock` timestamp, instead of failing the `omnichainIndexingCursor < earliestQueuedStartBlock` invariant.

- Updated dependencies [[`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583), [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9), [`7dd0d3f`](https://github.com/namehash/ensnode/commit/7dd0d3ff2905caf357a74470d5630a9ca8bd3369), [`75e8aac`](https://github.com/namehash/ensnode/commit/75e8aac2abb044ce55119daab98d20ebcbda8304)]:
- @ensnode/ensnode-sdk@1.14.0
- @ensnode/ensdb-sdk@1.14.0
- @ensnode/ensrainbow-sdk@1.14.0
- enssdk@1.14.0
- @ensnode/datasources@1.14.0
- @ensnode/ponder-sdk@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/ensindexer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ensindexer",
"version": "1.13.1",
"version": "1.14.0",
"private": true,
"type": "module",
"description": "A multichain ENS indexer, powered by Ponder",
Expand Down
9 changes: 9 additions & 0 deletions apps/ensrainbow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ensrainbow

## 1.14.0

### Patch Changes

- Updated dependencies [[`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583), [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9)]:
- @ensnode/ensnode-sdk@1.14.0
- @ensnode/ensrainbow-sdk@1.14.0
- enssdk@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/ensrainbow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ensrainbow",
"version": "1.13.1",
"version": "1.14.0",
"private": true,
"type": "module",
"description": "ENSRainbow is an ENSNode service for healing ENS labels",
Expand Down
8 changes: 8 additions & 0 deletions apps/fallback-ensapi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# fallback-ensapi

## 1.14.0

### Patch Changes

- Updated dependencies [[`3132a77`](https://github.com/namehash/ensnode/commit/3132a77b809694a4677da69c8c546a4b41eaa583), [`1b6abb0`](https://github.com/namehash/ensnode/commit/1b6abb06ac364840770dfcc47526111fdf6fb2c9)]:
- @ensnode/ensnode-sdk@1.14.0
- @ensnode/datasources@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/fallback-ensapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "fallback-ensapi",
"version": "1.13.1",
"version": "1.14.0",
"type": "module",
"description": "Infrastructure-level Fallback for ENSApi",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion docker/services/ensadmin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
ensadmin:
container_name: ensadmin
image: ghcr.io/namehash/ensnode/ensadmin:${ENSNODE_VERSION:-1.13.1}
image: ghcr.io/namehash/ensnode/ensadmin:${ENSNODE_VERSION:-1.14.0}
build:
dockerfile: ./apps/ensadmin/Dockerfile
context: ../..
Expand Down
2 changes: 1 addition & 1 deletion docker/services/ensapi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
ensapi:
container_name: ensapi
image: ghcr.io/namehash/ensnode/ensapi:${ENSNODE_VERSION:-1.13.1}
image: ghcr.io/namehash/ensnode/ensapi:${ENSNODE_VERSION:-1.14.0}
build:
dockerfile: ./apps/ensapi/Dockerfile
context: ../..
Expand Down
2 changes: 1 addition & 1 deletion docker/services/ensindexer.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
ensindexer:
container_name: ensindexer
image: ghcr.io/namehash/ensnode/ensindexer:${ENSNODE_VERSION:-1.13.1}
image: ghcr.io/namehash/ensnode/ensindexer:${ENSNODE_VERSION:-1.14.0}
build:
dockerfile: ./apps/ensindexer/Dockerfile
context: ../..
Expand Down
2 changes: 1 addition & 1 deletion docker/services/ensrainbow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
ensrainbow:
container_name: ensrainbow
image: ghcr.io/namehash/ensnode/ensrainbow:${ENSNODE_VERSION:-1.13.1}
image: ghcr.io/namehash/ensnode/ensrainbow:${ENSNODE_VERSION:-1.14.0}
build:
dockerfile: ./apps/ensrainbow/Dockerfile
context: ../..
Expand Down
13 changes: 13 additions & 0 deletions docs/ensnode.io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @docs/ensnode

## 1.14.0

### Minor Changes

- [#2094](https://github.com/namehash/ensnode/pull/2094) [`f06399e`](https://github.com/namehash/ensnode/commit/f06399e9beb2ac8aa3b13ff2645cee2cdf89d74f) Thanks [@tk-o](https://github.com/tk-o)! - Updated database schemas page in ENSDb docs.

### Patch Changes

- [#2106](https://github.com/namehash/ensnode/pull/2106) [`c4b00ae`](https://github.com/namehash/ensnode/commit/c4b00ae68075ef8f1ceb1aabf8a4804db21c85ff) Thanks [@shrugs](https://github.com/shrugs)! - Updates the Omnigraph Integration Documentation with comprehensive getting started examples and walkthroughs.

- Updated dependencies []:
- @namehash/namehash-ui@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/ensnode.io/ensapi-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "ENSApi APIs",
"version": "1.13.1",
"version": "1.14.0",
"description": "REST APIs for the ENSNode stack as served by the ENSApi service"
},
"servers": [
Expand Down
2 changes: 1 addition & 1 deletion docs/ensnode.io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"license": "MIT",
"type": "module",
"version": "1.13.1",
"version": "1.14.0",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "astro dev",
Expand Down
7 changes: 7 additions & 0 deletions docs/ensrainbow.io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @docs/ensrainbow

## 1.14.0

### Patch Changes

- Updated dependencies []:
- @namehash/namehash-ui@1.14.0

## 1.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/ensrainbow.io/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@docs/ensrainbow",
"type": "module",
"version": "1.13.1",
"version": "1.14.0",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"private": true,
Expand Down
8 changes: 8 additions & 0 deletions examples/enskit-react-example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @ensnode/enskit-react-example

## 0.0.8

### Patch Changes

- Updated dependencies []:
- enssdk@1.14.0
- enskit@1.14.0

## 0.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/enskit-react-example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ensnode/enskit-react-example",
"private": true,
"version": "0.0.7",
"version": "0.0.8",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions examples/enssdk-example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @ensnode/enssdk-example

## 0.0.2

### Patch Changes

- Updated dependencies []:
- enssdk@1.14.0
2 changes: 1 addition & 1 deletion examples/enssdk-example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ensnode/enssdk-example",
"private": true,
"version": "0.0.1",
"version": "0.0.2",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
Loading