Skip to content

Commit

Permalink
chore(release): 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Apr 13, 2023
1 parent 678b12d commit bb2d34d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.2.1](https://github.com/panva/oauth4webapi/compare/v2.2.0...v2.2.1) (2023-04-13)


### Fixes

* return undefined from getValidatedIdTokenClaims as documented ([678b12d](https://github.com/panva/oauth4webapi/commit/678b12d4e113b4b5d599590a9b104330bf82ee56))

## [2.2.0](https://github.com/panva/oauth4webapi/compare/v2.1.0...v2.2.0) (2023-03-10)


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/[email protected].0/mod.ts'
import * as oauth2 from 'https://deno.land/x/[email protected].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.2.0",
"version": "2.2.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.2.0'
const VERSION = 'v2.2.1'
USER_AGENT = `${NAME}/${VERSION}`
}

Expand Down

0 comments on commit bb2d34d

Please sign in to comment.