Skip to content

Commit ed1f075

Browse files
committed
docs: add app tagging secret migration note
1 parent 4e1306e commit ed1f075

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

docs/docs-developers/docs/resources/migration_notes.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,22 @@ Aztec is in active development. Each version may introduce breaking changes that
99

1010
## TBD
1111

12+
### [Aztec.js] `ExtendedDirectionalAppTaggingSecret` renamed to `AppTaggingSecret`
13+
14+
`ExtendedDirectionalAppTaggingSecret` has been renamed to `AppTaggingSecret`.
15+
16+
**Migration:**
17+
18+
```diff
19+
- import { ExtendedDirectionalAppTaggingSecret } from '@aztec/stdlib/logs';
20+
+ import { AppTaggingSecret } from '@aztec/stdlib/logs';
21+
22+
- ExtendedDirectionalAppTaggingSecret.fromString(value)
23+
+ AppTaggingSecret.fromString(value)
24+
```
25+
26+
**Impact**: Code importing or referencing `ExtendedDirectionalAppTaggingSecret` should update to `AppTaggingSecret`.
27+
1228
### [Aztec.nr] `public_checks` helpers moved to `aztec-nr`
1329

1430
The `privately_check_timestamp`, `privately_check_block_number`, and related caller helpers previously in `noir-contracts/contracts/protocol/public_checks_contract/src/utils.nr` are now in `aztec-nr/aztec/src/public_checks.nr`. Consumer contracts should update their imports:

0 commit comments

Comments
 (0)