Skip to content

Commit

Permalink
changelog and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
shuowu committed Aug 11, 2021
1 parent b846896 commit 35d8fbb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog

## 5.3.0
## 5.3.1

### Bug Fixes

- [#893](https://github.com/okta/okta-auth-js/pull/893) Fixes MFA keep returning `MFA_REQUIRED` status

## 5.3.0

### Features

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@okta/okta-auth-js",
"description": "The Okta Auth SDK",
"version": "5.3.0",
"version": "5.3.1",
"homepage": "https://github.com/okta/okta-auth-js",
"license": "Apache-2.0",
"type": "commonjs",
Expand Down
6 changes: 3 additions & 3 deletions samples/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ const samples = [
'social-idp-with-widget'
],
useEnv: true
}
},
].map(function(sampleConfig) {
if (!sampleConfig.name) {
throw new Error('sample "name" is required');
}
if (!sampleConfig.template) {
throw new Error('sample "template" is required');
if (!sampleConfig.template) {
throw new Error('sample "template" is required');
}
const mergedConfig = Object.assign({}, templateDefaults[sampleConfig.template], sampleConfig);
return mergedConfig;
Expand Down

0 comments on commit 35d8fbb

Please sign in to comment.