Skip to content

Commit

Permalink
doc(ts-sdk): update change log
Browse files Browse the repository at this point in the history
  • Loading branch information
jjleng authored and banool committed Sep 15, 2022
1 parent 5090886 commit 14f1dd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ecosystem/typescript/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ All notable changes to the Aptos Node SDK will be captured in this file. This ch
- **[Deprecated]** The `getEventsByEventKey` function is now deprecated. In the next release it will be removed entirely. You must migrate to the new function, `getEventsByCreationNumber`, by then.
- Included in the `Event` struct (which is what the events endpoints return) is a new field called `guid`. This is a more easily interpretable representation of an event identifier than the `key` field. See the [API changelog](https://github.com/aptos-labs/aptos-core/blob/main/api/doc/CHANGELOG.md) for an example of the new field.
- **[Deprecated]** The `key` field in the `Event` struct is now deprecated. In the next release it will be removed entirely. You must migrate to using the `guid` field by then.
- Removed NPM dependencies ed25519-hd-key and typescript-memoize.
- Added IIFE bundle that can be served from CDN. No NPM is required to use the SDK in browser environment.

## 1.3.12 (2022-09-08)

Expand Down
2 changes: 1 addition & 1 deletion ecosystem/typescript/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"prepack": "yarn build",
"build": "yarn build:clean && yarn _build:node && yarn _build:browser",
"build:clean": "rm -rf dist",
"_build:browser": "tsup --platform browser --format iife --global-name aptosSDK",
"_build:browser": "tsup --platform browser --format iife --global-name aptosSDK --minify",
"_build:node": "tsup --format cjs,esm --dts",
"lint": "eslint \"**/*.ts\"",
"test": "jest",
Expand Down

0 comments on commit 14f1dd4

Please sign in to comment.