From f274bf914fc828f7eb288087a9f3ecee0b7e6849 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 21 Nov 2022 12:55:24 +0100 Subject: [PATCH] chore(release): 2.0.1 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/index.ts | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed0fda46..0e349d65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 137e4d9c..2c8c6734 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 275a3d7a..7228dadb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "oauth4webapi", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "oauth4webapi", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "devDependencies": { "@esbuild-kit/esm-loader": "^2.5.0", diff --git a/package.json b/package.json index 7f15f693..a7d3b76d 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/index.ts b/src/index.ts index cea91216..db6f66a0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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}` }