Skip to content

Commit

Permalink
Update the changelog for PR #9
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Mar 13, 2022
1 parent 069b9af commit cb15d48
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Renamed `NodeMetadataPayload.decentralized_identity_evidence` to `operator_signature`. ([#10])
- Declared `NodeMetadataPayload.operator_signature` as `recoverable::Signature` instead of just a byte array. This allows the user to detect an invalid signature on `NodeMetadata` creation. ([#11])
- Renamed `NodeMetadataPayload.certificate_bytes` to `certificate_der` (although it is not deserialized on the Rust side, so the DER format is not strictly enforced). ([#13])
- Changed some method and field names in WASM bindings to conform to JS style (camel case). New names are: `TreasureMap.publisherVerifyingKey`, `TreasureMap.bobVerifyingKey`, `TreasureMap.encryptedKfrag`, `RetrievalKit.queriedAddresses`, `RevocationOrder.verifySignature`, `NodeMetadataPayload.verifyingKey`, `NodeMetadataPayload.encryptingKey`, `NodeMetadataPayload.timestampEpoch`, `MetadataRequest.announceNodes`. ([#9])


### Added

- `TreasureMap::make_revocation_orders()` (with the corresponding methods in Python and WASM bindings). ([#9])
- `HRAC.fromBytes()` in WASM bindings. ([#9])
- `RevocationOrder.stakingProviderAddress` in WASM bindings. ([#9])
- `MetadataResponse.verify()` in WASM bindings. ([#9])
- `impl From<[u8; 16]>` for `HRAC`. ([#9])
- Made `RevocationOrder.staking_provider_address` public. ([#9])


### Fixed

- Some methods in WASM bindings that were previously taking `self` are now taking `&self`, leading to a more idiomatic behavior in JS. ([#9])


[#9]: https://github.com/nucypher/nucypher-core/pull/9
[#10]: https://github.com/nucypher/nucypher-core/pull/10
[#11]: https://github.com/nucypher/nucypher-core/pull/11
[#13]: https://github.com/nucypher/nucypher-core/pull/13
Expand Down

0 comments on commit cb15d48

Please sign in to comment.