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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/as-sha256": "1.0.0",
"packages/persistent-merkle-tree": "1.0.1",
"packages/as-sha256": "1.1.0",
"packages/persistent-merkle-tree": "1.1.0",
"packages/persistent-ts": "1.0.0",
"packages/ssz": "1.0.2"
"packages/ssz": "1.1.0"
}
8 changes: 8 additions & 0 deletions packages/as-sha256/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v1.0.0...as-sha256-v1.1.0) (2025-03-12)


### Features

* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))
* improve type.hashTreeRoot() using batch ([#409](https://github.com/ChainSafe/ssz/issues/409)) ([66742f0](https://github.com/ChainSafe/ssz/commit/66742f0faf617f713744048609408365d6185780))

## [1.0.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v0.6.1...as-sha256-v1.0.0) (2025-01-23)


Expand Down
2 changes: 1 addition & 1 deletion packages/as-sha256/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/as-sha256",
"version": "1.0.0",
"version": "1.1.0",
"description": "An AssemblyScript implementation of SHA256",
"author": "ChainSafe Systems",
"license": "Apache-2.0",
Expand Down
14 changes: 14 additions & 0 deletions packages/persistent-merkle-tree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
* dependencies
* @chainsafe/as-sha256 bumped to 0.4.2

## [1.1.0](https://github.com/ChainSafe/ssz/compare/persistent-merkle-tree-v1.0.1...persistent-merkle-tree-v1.1.0) (2025-03-12)


### Features

* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @chainsafe/as-sha256 bumped from 1.0.0 to 1.1.0

## [1.0.1](https://github.com/ChainSafe/ssz/compare/persistent-merkle-tree-v1.0.0...persistent-merkle-tree-v1.0.1) (2025-01-23)


Expand Down
4 changes: 2 additions & 2 deletions packages/persistent-merkle-tree/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/persistent-merkle-tree",
"version": "1.0.1",
"version": "1.1.0",
"description": "Merkle tree implemented as a persistent datastructure",
"type": "module",
"exports": {
Expand Down Expand Up @@ -64,7 +64,7 @@
},
"homepage": "https://github.com/ChainSafe/persistent-merkle-tree#readme",
"dependencies": {
"@chainsafe/as-sha256": "1.0.0",
"@chainsafe/as-sha256": "1.1.0",
"@chainsafe/hashtree": "1.0.1",
"@noble/hashes": "^1.3.0"
}
Expand Down
22 changes: 22 additions & 0 deletions packages/ssz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
* dependencies
* @chainsafe/persistent-merkle-tree bumped from 1.0.0 to 1.0.1

## [1.1.0](https://github.com/ChainSafe/ssz/compare/ssz-v1.0.2...ssz-v1.1.0) (2025-03-12)


### Features

* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))
* forEach() api for ArrayComposite() ([#469](https://github.com/ChainSafe/ssz/issues/469)) ([7ad418c](https://github.com/ChainSafe/ssz/commit/7ad418ce08e6469b562244a14df65f05c1fffdc2))
* improve type.hashTreeRoot() using batch ([#409](https://github.com/ChainSafe/ssz/issues/409)) ([66742f0](https://github.com/ChainSafe/ssz/commit/66742f0faf617f713744048609408365d6185780))


### Bug Fixes

* do not rebind node if unchanged child ViewDUs ([#470](https://github.com/ChainSafe/ssz/issues/470)) ([ab23b30](https://github.com/ChainSafe/ssz/commit/ab23b30ce2d940883816ea9cfbbf2473165353ca))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @chainsafe/as-sha256 bumped from 1.0.0 to 1.1.0
* @chainsafe/persistent-merkle-tree bumped from 1.0.1 to 1.1.0

## [1.0.2](https://github.com/ChainSafe/ssz/compare/ssz-v1.0.1...ssz-v1.0.2) (2025-01-30)


Expand Down
6 changes: 3 additions & 3 deletions packages/ssz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "Apache-2.0",
"author": "ChainSafe Systems",
"homepage": "https://github.com/chainsafe/ssz",
"version": "1.0.2",
"version": "1.1.0",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down Expand Up @@ -36,8 +36,8 @@
"download-spec-tests": "node --loader ts-node/esm test/spec/downloadTests.ts"
},
"dependencies": {
"@chainsafe/as-sha256": "1.0.0",
"@chainsafe/persistent-merkle-tree": "1.0.1"
"@chainsafe/as-sha256": "1.1.0",
"@chainsafe/persistent-merkle-tree": "1.1.0"
},
"devDependencies": {
"@lodestar/spec-test-util": "^1.23.1",
Expand Down