openid-client 2.4.4 → 2.4.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
@@ -2,6 +2,16 @@
2
2
 
3
3
  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.
4
4
 
5
+ <a name="2.4.5"></a>
6
+ ## [2.4.5](https://github.com/panva/node-openid-client/compare/v2.4.4...v2.4.5) (2018-11-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * upgrade min node-jose version to fix its performance in node ([e682dfc](https://github.com/panva/node-openid-client/commit/e682dfc))
12
+
13
+
14
+
5
15
  <a name="2.4.4"></a>
6
16
  ## [2.4.4](https://github.com/panva/node-openid-client/compare/v2.4.3...v2.4.4) (2018-10-18)
7
17
 
package/README.md CHANGED
@@ -57,7 +57,7 @@ versions, if you utilize these consider using the tilde ~ operator in your packa
57
57
  breaking changes may be introduced as part of these specification updates.
58
58
 
59
59
  ## Certification
60
- [<img width="184" height="96" align="right" src="https://cdn.rawgit.com/panva/node-openid-client/38cf016b/OpenID_Certified.png" alt="OpenID Certification">][openid-certified-link]
60
+ [<img width="184" height="96" align="right" src="https://cdn.jsdelivr.net/gh/panva/node-openid-client@38cf016b0837e6d4116de3780b28d222d5780bc9/OpenID_Certified.png" alt="OpenID Certification">][openid-certified-link]
61
61
  Filip Skokan has [certified][openid-certified-link] that [openid-client][npm-url]
62
62
  conforms to the RP Basic, RP Implicit, RP Hybrid, RP Config, RP Dynamic and RP Form Post profiles
63
63
  of the OpenID Connect™ protocol.
@@ -69,6 +69,12 @@ of the OpenID Connect™ protocol.
69
69
 
70
70
  [<img width="65" height="65" align="left" src="https://avatars.githubusercontent.com/u/2824157?s=75&v=4" alt="auth0-logo">][sponsor-auth0] If you want to quickly add OpenID Connect authentication to Node.js apps, feel free to check out Auth0's Node.js SDK and free plan at [auth0.com/overview][sponsor-auth0].<br><br>
71
71
 
72
+ <h2>Support</h2>
73
+
74
+ [<img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160" align="right">][support-patreon]
75
+ If you or your business use openid-client, please consider becoming a [Patron][support-patreon] so I can continue maintaining it and adding new features carefree. You may also donate one-time via [PayPal][support-paypal].
76
+ [<img src="https://cdn.jsdelivr.net/gh/gregoiresgt/payment-icons@183140a5ff8f39b5a19d59ebeb2c77f03c3a24d3/Assets/Payment/PayPal/Paypal@2x.png" width="100" align="right">][support-paypal]
77
+
72
78
 
73
79
  ## Get started
74
80
  On the off-chance you want to manage multiple clients for multiple issuers you need to first get
@@ -558,7 +564,8 @@ Issuer.useRequest();
558
564
  [request-library]: https://github.com/request/request
559
565
  [signed-userinfo]: https://openid.net/specs/openid-connect-core-1_0.html#UserInfoResponse
560
566
  [openid-certified-link]: https://openid.net/certification/
561
- [openid-certified-logo]: https://cdn.rawgit.com/panva/node-openid-client/master/OpenID_Certified.png
562
567
  [passport-url]: http://passportjs.org
563
568
  [npm-url]: https://www.npmjs.com/package/openid-client
564
569
  [sponsor-auth0]: https://auth0.com/overview?utm_source=GHsponsor&utm_medium=GHsponsor&utm_campaign=openid-client&utm_content=auth
570
+ [support-patreon]: https://www.patreon.com/panva
571
+ [support-paypal]: https://www.paypal.me/panva
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openid-client",
3
- "version": "2.4.4",
3
+ "version": "2.4.5",
4
4
  "description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js servers, supports passportjs",
5
5
  "keywords": [
6
6
  "auth",
@@ -43,7 +43,7 @@
43
43
  "got": "^8.3.2",
44
44
  "lodash": "^4.17.11",
45
45
  "lru-cache": "^4.1.3",
46
- "node-jose": "^1.0.0",
46
+ "node-jose": "^1.1.0",
47
47
  "oidc-token-hash": "^3.0.1",
48
48
  "p-any": "^1.1.0"
49
49
  },