Skip to content
Merged
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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [2.3.0]

Declares a package entry point map, publishes with provenance, and fixes RSA signature verification in browser bundles.

### Upgrading

- The package declares an `exports` map, so `@atomichub/vert` and its `package.json` are the only resolvable entries. Import from the package name rather than reaching into `dist`. (#3)

### Bug fixes

- `verify_rsa_sha256_sig` returns the right answer inside a browser bundle. It read node's `Buffer` from the global object, which a bundler rewrites to `globalThis`, where no `Buffer` exists. The throw that followed was caught and reported as an invalid signature, so a valid signature verified as invalid. (#11)

### Other changes

- The published tarball no longer carries the test files under `src`. (#3)
- Publishes authenticate through npm trusted publishing and carry provenance. (#3)
- Package metadata gains `keywords`, `sideEffects`, and an author entry for AtomicHub. (#3)

## [2.2.0]

Renames the package to `@atomichub/vert` and gates chain-specific host functions to the emulated chain.
Expand Down
Loading