Skip to content

Commit

Permalink
Merge pull request #430 from ForgeRock/release-work
Browse files Browse the repository at this point in the history
chore: release-work
  • Loading branch information
ryanbas21 authored Mar 12, 2024
2 parents b71c0dd + 69a5714 commit 1592197
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
[ForgeRock Javascript SDK package](./packages/javascript-sdk/CHANGELOG.md)

[ForgeRock Token Vault package](./packages/token-vault/CHANGELOG.md)

[ForgeRock Ping Protect package](./packages/ping-protect/CHANGELOG.md)
12 changes: 12 additions & 0 deletions packages/javascript-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [4.4.0] - 2024-03-12

Features:

feat(javascript-sdk): add config.setAsync for wellknown endpoint support
feat(javascript-sdk): handle-device-name-in-response

Fixes
fix(javascript-sdk): add PingOne login error to allowed errors
fix(javascript-sdk): sessionStorage conflict
fix(javascript-sdk): circular-dependency

## [4.3.0] - 2024-01-04

Features
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@forgerock/javascript-sdk",
"version": "4.3.0",
"version": "4.4.0",
"description": "ForgeRock JavaScript SDK",
"author": "ForgeRock",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript-sdk/src/fr-qr-code/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import HiddenValueCallback from '../fr-auth/callbacks/hidden-value-callback';
import TextOutputCallback from '../fr-auth/callbacks/text-output-callback';
import FRStep from '../fr-auth/fr-step';

type QRCodeData = {
export type QRCodeData = {
message: string;
use: string;
uri: string;
Expand Down
5 changes: 5 additions & 0 deletions packages/ping-protect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## [4.4.0] - 2024-03-12

feat(ping-protect): Add a new module for Ping Protect and allow for use of .wellknown endpoint for configuration of PingOne as an oauth server
14 changes: 5 additions & 9 deletions packages/ping-protect/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{
"name": "@forgerock/ping-protect",
"version": "0.0.1",
"version": "4.4.0",
"private": false,
"type": "commonjs",
"module": "./index.mjs",
"main": "./index.js",
"module": "./src/index.js",
"main": "./src/index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.mjs"
}
".": "./src/index.js"
},
"peerDependencies": {
"@forgerock/javascript-sdk": "^4.1.2"
"@forgerock/javascript-sdk": "^4.4.0"
}
}
5 changes: 4 additions & 1 deletion packages/ping-protect/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"outputPath": "dist/packages/ping-protect",
"main": "packages/ping-protect/src/index.ts",
"tsConfig": "packages/ping-protect/tsconfig.lib.json",
"assets": ["packages/ping-protect/*.md"]
"assets": [
"packages/ping-protect/*.md",
"packages/ping-protect/src/lib/ping-signals-sdk.js"
]
}
},
"lint": {
Expand Down

0 comments on commit 1592197

Please sign in to comment.