Skip to content

Commit

Permalink
chore(release): 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Nov 21, 2022
1 parent 2858d06 commit f274bf9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [2.0.1](https://github.com/panva/oauth4webapi/compare/v2.0.0...v2.0.1) (2022-11-21)


### Fixes

* claims parameter encoding in issued request objects ([3eb165a](https://github.com/panva/oauth4webapi/commit/3eb165a425212a12cf9e48f899a999d32dd9ec86))


### Performance

* cache public DPoP CryptoKey's JWK representation for re-use ([2858d06](https://github.com/panva/oauth4webapi/commit/2858d069325da31d72bfb45dad637b5ec54e4850))

## [2.0.0](https://github.com/panva/oauth4webapi/compare/v1.4.1...v2.0.0) (2022-11-20)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import * as oauth2 from 'oauth4webapi'
**`example`** Deno import

```js
import * as oauth2 from 'https://deno.land/x/oauth4webapi@v2.0.0/mod.ts'
import * as oauth2 from 'https://deno.land/x/oauth4webapi@v2.0.1/mod.ts'
```

- Authorization Code Flow - OpenID Connect [source](examples/code.ts), or plain OAuth 2 [source](examples/oauth.ts)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oauth4webapi",
"version": "2.0.0",
"version": "2.0.1",
"description": "OAuth 2 / OpenID Connect for Web Platform API JavaScript runtimes",
"keywords": [
"auth",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let USER_AGENT: string
// @ts-ignore
if (typeof navigator === 'undefined' || !navigator.userAgent?.startsWith?.('Mozilla/5.0 ')) {
const NAME = 'oauth4webapi'
const VERSION = 'v2.0.0'
const VERSION = 'v2.0.1'
USER_AGENT = `${NAME}/${VERSION}`
}

Expand Down

0 comments on commit f274bf9

Please sign in to comment.