@okta/okta-auth-js 6.7.4 → 6.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 6.7.5
4
+
5
+ ### Fixes
6
+ - [#1269](https://github.com/okta/okta-auth-js/pull/1269) Fixes ESM exports
7
+ - Adds `default` export under `./browser` to support `Jest@28.1+`
8
+ - Adds work-around for webpack/webpack#13457 to support Module Federation (with ESM bundles)
9
+
3
10
  ## 6.7.4
4
11
 
5
12
  ### Fixes
@@ -21,7 +21,7 @@ var _features = require("./features");
21
21
  class OktaUserAgent {
22
22
  constructor() {
23
23
  // add base sdk env
24
- this.environments = [`okta-auth-js/${"6.7.4"}`];
24
+ this.environments = [`okta-auth-js/${"6.7.5"}`];
25
25
  }
26
26
 
27
27
  addEnvironment(env) {
@@ -36,7 +36,7 @@ class OktaUserAgent {
36
36
  }
37
37
 
38
38
  getVersion() {
39
- return "6.7.4";
39
+ return "6.7.5";
40
40
  }
41
41
 
42
42
  maybeAddNodeEnvironment() {