Skip to content

Commit 5bc2c40

Browse files
authored
Prepare v0.3 (#56)
Internal housekeeping; add and backfill a changelog.
1 parent 7200395 commit 5bc2c40

File tree

4 files changed

+60
-4
lines changed

4 files changed

+60
-4
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Changelog
2+
3+
## Upcoming
4+
5+
## 0.3.0
6+
7+
### Changed
8+
9+
- Made parameter names more consistent across the SDK. Both registration and authentication use `username` instead of `name` and `handle` parameters.
10+
11+
### Fixed
12+
13+
- Cancel pending requests `beforeunload`. This improves reliability by working around rare browser bugs, particularly during development.
14+
15+
## 0.2.0
16+
17+
### Added
18+
19+
- Support for automatic passkey upgrades
20+
21+
## 0.1.5
22+
23+
### Added
24+
25+
- New `async/await`-based API for autofilled requests
26+
- Improved APIs for availability checks
27+
28+
### Fixed
29+
30+
- License year and other internal housekeeping
31+
32+
## 0.1.4
33+
34+
### Fixed
35+
36+
- Cancel pending request when a new one is starting
37+
38+
## 0.1.3
39+
40+
**Note**: This version was not released due to a tagging error.
41+
42+
## 0.1.2
43+
44+
### Changed
45+
46+
- Send SDK version in request headers
47+
48+
## 0.1.1
49+
50+
### Changed
51+
52+
- User id and handle are no longer required during client registration phase
53+
54+
## 0.1.0
55+
56+
**Initial release**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const snapAuth = new SDK('pubkey_your_value')
4040

4141
### Directly linking (UMD)
4242
```html
43-
<script src="https://unpkg.com/@snapauth/sdk@0.2.0/dist/index.js"></script>
43+
<script src="https://unpkg.com/@snapauth/sdk@0.3.0/dist/index.js"></script>
4444
<script type="text/javascript">
4545
const snapAuth = new SnapAuth.SDK('pubkey_your_value')
4646
</script>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@snapauth/sdk",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "SnapAuth JS/TS SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)