Skip to content
Merged
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/canonical-fields-omnigraph.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/drop-domains-where-canonical.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ensnode-sdk-root-registry-bridged-target.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/omnigraph-domains-version-filter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/registrar-controller-non-utf8-label.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/resolver-bridged-registry-type.md

This file was deleted.

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

## 1.12.0

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- @ensnode/ensnode-react@1.12.0
- @namehash/namehash-ui@1.12.0
- enssdk@1.12.0
- @ensnode/datasources@1.12.0
- @ensnode/scalar-react@0.0.0

## 1.11.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.11.1",
"version": "1.12.0",
"private": true,
"type": "module",
"description": "Inspect the ENS Protocol like never before",
Expand Down
22 changes: 22 additions & 0 deletions apps/ensapi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# ensapi

## 1.12.0

### Minor Changes

- [#2061](https://github.com/namehash/ensnode/pull/2061) [`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph**: expose `Domain.canonical` and `Registry.canonical` on the Omnigraph schema. Both are non-null `Boolean!` fields indicating whether the entity participates in the Canonical Nametree.

- [#2061](https://github.com/namehash/ensnode/pull/2061) [`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph (breaking)**: drop the `canonical: Boolean = false` field from `DomainsWhereInput` (used by `Query.domains`). Every nameable Domain is canonical by definition, so the filter was redundant; the query now always scopes to Canonical Domains. Consumers passing `where: { canonical: true }` should drop the field; consumers relying on `canonical: false` (or default) to surface non-canonical Domains via this query no longer can — read `Domain.canonical` directly or scope by `Account.domains` / `Registry.domains` instead.

- [#2077](https://github.com/namehash/ensnode/pull/2077) [`c2e1047`](https://github.com/namehash/ensnode/commit/c2e10471b95cae47ba02044dd03f550589da8db3) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph**: add an `ENSProtocolVersion` enum (`ENSv1` | `ENSv2`) and `where: { version }` filter on `Query.domains` and `Account.domains`.

- [#2061](https://github.com/namehash/ensnode/pull/2061) [`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a) Thanks [@shrugs](https://github.com/shrugs)! - **Omnigraph (breaking)**: `Resolver.bridged` is no longer an `AccountId` scalar; it now returns the bridged target `Registry` interface. Consumers should change their selection from `bridged` (scalar) to `bridged { ... }` (Registry interface) — the new shape exposes the full `Registry` and allows navigation into the bridged sub-registry's canonical Domain etc.

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- @namehash/ens-referrals@1.12.0
- @ensnode/ensdb-sdk@1.12.0
- enssdk@1.12.0
- @ensnode/datasources@1.12.0
- @ensnode/ponder-subgraph@1.12.0

## 1.11.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.11.1",
"version": "1.12.0",
"private": true,
"type": "module",
"description": "ENSNode's ENS API",
Expand Down
14 changes: 14 additions & 0 deletions apps/ensindexer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# ensindexer

## 1.12.0

### Patch Changes

- [#2073](https://github.com/namehash/ensnode/pull/2073) [`9785be0`](https://github.com/namehash/ensnode/commit/9785be086fed0f99aa04fe43fdae18741a5b867b) Thanks [@shrugs](https://github.com/shrugs)! - **ENSIndexer ensv2 plugin**: correctly handle non-UTF-8 `string label` args in `RegistrarController:NameRegistered` and `:NameRenewed` events. ABI-decoding replaces non-UTF-8 byte sequences with U+FFFD, which then fails the labelhash round-trip. Previously this threw a fatal `Invariant(RegistrarController:NameRegistered)` and aborted the run; now the label is treated as unemitted and the heal path indexes the registration under the canonical `labelHash`.

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- @ensnode/ensdb-sdk@1.12.0
- @ensnode/ensrainbow-sdk@1.12.0
- enssdk@1.12.0
- @ensnode/datasources@1.12.0
- @ensnode/ponder-sdk@1.12.0

## 1.11.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.11.1",
"version": "1.12.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.12.0

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- @ensnode/ensrainbow-sdk@1.12.0
- enssdk@1.12.0

## 1.11.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.11.1",
"version": "1.12.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.12.0

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- @ensnode/datasources@1.12.0

## 1.11.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.11.1",
"version": "1.12.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.11.1}
image: ghcr.io/namehash/ensnode/ensadmin:${ENSNODE_VERSION:-1.12.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.11.1}
image: ghcr.io/namehash/ensnode/ensapi:${ENSNODE_VERSION:-1.12.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.11.1}
image: ghcr.io/namehash/ensnode/ensindexer:${ENSNODE_VERSION:-1.12.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.11.1}
image: ghcr.io/namehash/ensnode/ensrainbow:${ENSNODE_VERSION:-1.12.0}
build:
dockerfile: ./apps/ensrainbow/Dockerfile
context: ../..
Expand Down
7 changes: 7 additions & 0 deletions docs/ensnode.io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @docs/ensnode

## 1.12.0

### Patch Changes

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

## 1.11.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.11.1",
"version": "1.12.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.11.1",
"version": "1.12.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.12.0

### Patch Changes

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

## 1.11.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.11.1",
"version": "1.12.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.5

### Patch Changes

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

## 0.0.4

### 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.4",
"version": "0.0.5",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions packages/datasources/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @ensnode/ens-deployments

## 1.12.0

## 1.11.1

## 1.11.0
Expand Down
2 changes: 1 addition & 1 deletion packages/datasources/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ensnode/datasources",
"version": "1.11.1",
"version": "1.12.0",
"type": "module",
"description": "Catalog of ENSNode-related datasources including chain, contract addresses, start blocks, and event filters.",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/ens-referrals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @namehash/ens-referrals

## 1.12.0

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- enssdk@1.12.0

## 1.11.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ens-referrals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@namehash/ens-referrals",
"version": "1.11.1",
"version": "1.12.0",
"type": "module",
"description": "Utilities for ENS Referrals.",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/enscli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# enscli

## 1.12.0

## 1.11.1

## 1.11.0
Expand Down
2 changes: 1 addition & 1 deletion packages/enscli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "enscli",
"version": "1.11.1",
"version": "1.12.0",
"description": "Reserved for the ENSNode project by NameHash Labs. See https://ensnode.io",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/ensdb-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @ensnode/ensdb-sdk

## 1.12.0

### Patch Changes

- Updated dependencies [[`4fb7b33`](https://github.com/namehash/ensnode/commit/4fb7b332fd46ee9924dc9dfb55b5a21ff8b8554a)]:
- @ensnode/ensnode-sdk@1.12.0
- enssdk@1.12.0

## 1.11.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ensdb-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ensnode/ensdb-sdk",
"version": "1.11.1",
"version": "1.12.0",
"type": "module",
"description": "SDK for interacting with data in ENSDb",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/ensindexer-perf-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @ensnode/ensindexer-perf-testing

## 1.12.0

## 1.11.1

## 1.11.0
Expand Down
2 changes: 1 addition & 1 deletion packages/ensindexer-perf-testing/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ensnode/ensindexer-perf-testing",
"private": true,
"version": "1.11.1",
"version": "1.12.0",
"description": "Local Prometheus + Grafana bundle for benchmarking ENSIndexer throughput.",
"license": "MIT",
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions packages/enskit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# enskit

## 1.12.0

### Patch Changes

- Updated dependencies []:
- enssdk@1.12.0

## 1.11.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/enskit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enskit",
"version": "1.11.1",
"version": "1.12.0",
"type": "module",
"description": "The ENS toolkit for React applications",
"license": "MIT",
Expand Down
Loading
Loading