Skip to content

Commit

Permalink
chore: version
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Sep 11, 2023
1 parent 667c359 commit 66ea249
Show file tree
Hide file tree
Showing 19 changed files with 85 additions and 48 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-phones-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brown-owls-drive.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/cyan-seas-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fresh-hairs-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-clocks-pretend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-glasses-own.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-pumas-design.md

This file was deleted.

13 changes: 13 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @bns-x/api-types

## 0.3.4

### Patch Changes

- 667c359: Updates the search API to support address searching
- 8a8ae84: Fixes an issue where the name owned by an address was wrong when the BNS name had been transferred away from the address
- 7b47087: Adds DB schema and trpc endpoints to fetch bridged names, as well as to lookup an inscription ID for a given name.
- 9814f88: Includes explicit types for `getNameDetails` TRPC endpoint
- Updated dependencies [b3d7adb]
- Updated dependencies [8c9135e]
- @bns-x/core@0.3.0
- @bns-x/client@0.3.4

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bns-x/api",
"version": "0.3.3",
"version": "0.3.4",
"description": "",
"files": [
"dist"
Expand Down
19 changes: 19 additions & 0 deletions contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# contracts

## 0.2.0

### Minor Changes

- b3d7adb: A new migrator contract, `wrapper-migrator-v2` has been added.

The key change for this contract is that it uses Clarity 2.0 functions. Specifically, the `to-consensus-buff?` method is used to hash a wrapper contract's identifier, which can be used to verify signatures.

Previously, the migrator relied on the wrapper contract "registering" itself, which would allow mapping a wrapper principal to an integer. Prior to Clarity 2, integers were one of the only data types that could be hashed.

The main benefit of this new contract is that it is less faulty to re-orgs when multiple wrapper contracts are deployed. Previously, in some cases, a re-org could cause a wrapper contracts "ID" to change, which would invalidate signatures. Additionally, migrations can now occur before wrapper contract deployments are confirmed.

### Patch Changes

- Updated dependencies [b3d7adb]
- Updated dependencies [8c9135e]
- @bns-x/core@0.3.0
- @bns-x/client@0.3.4

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"devDependencies": {
"tsx": "^3.12.3"
},
"version": "0.1.3"
"version": "0.2.0"
}
9 changes: 9 additions & 0 deletions packages/bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @bns-x/bridge

## 0.2.6

### Patch Changes

- Updated dependencies [b3d7adb]
- Updated dependencies [8c9135e]
- @bns-x/core@0.3.0
2 changes: 1 addition & 1 deletion packages/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bns-x/bridge",
"version": "0.2.5",
"version": "0.2.6",
"license": "MIT",
"private": false,
"publishConfig": {
Expand Down
8 changes: 8 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @bns-x/client

## 0.3.4

### Patch Changes

- Updated dependencies [b3d7adb]
- Updated dependencies [8c9135e]
- @bns-x/core@0.3.0

## 0.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bns-x/client",
"version": "0.3.3",
"version": "0.3.4",
"license": "MIT",
"private": false,
"publishConfig": {
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @bns-x/core

## 0.3.0

### Minor Changes

- b3d7adb: A new migrator contract, `wrapper-migrator-v2` has been added.

The key change for this contract is that it uses Clarity 2.0 functions. Specifically, the `to-consensus-buff?` method is used to hash a wrapper contract's identifier, which can be used to verify signatures.

Previously, the migrator relied on the wrapper contract "registering" itself, which would allow mapping a wrapper principal to an integer. Prior to Clarity 2, integers were one of the only data types that could be hashed.

The main benefit of this new contract is that it is less faulty to re-orgs when multiple wrapper contracts are deployed. Previously, in some cases, a re-org could cause a wrapper contracts "ID" to change, which would invalidate signatures. Additionally, migrations can now occur before wrapper contract deployments are confirmed.

### Patch Changes

- 8c9135e: Adds client-side namespace properties, which are pulled from on-chain data.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bns-x/core",
"version": "0.2.1",
"version": "0.3.0",
"private": false,
"publishConfig": {
"access": "public"
Expand Down
14 changes: 14 additions & 0 deletions web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# web

## 0.3.0

### Minor Changes

- 9814f88: Dots now includes a "registration" page, where you can easily register a name on any namespace.

### Patch Changes

- Updated dependencies [b3d7adb]
- Updated dependencies [8c9135e]
- @bns-x/core@0.3.0
- @bns-x/bridge@0.2.6
- @bns-x/client@0.3.4

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web",
"private": true,
"version": "0.2.6",
"version": "0.3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
Expand Down

0 comments on commit 66ea249

Please sign in to comment.