Skip to content

Commit

Permalink
2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Dec 18, 2017
1 parent dedcd9a commit 76b599d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Yay for [SemVer](http://semver.org/).
**Table of Contents**

<!-- TOC START min:2 max:3 link:true update:true -->
- [2.9.0](#290)
- [2.9.x](#29x)
- [2.9.1](#291)
- [2.9.0](#290)
- [2.8.x](#28x)
- [2.8.3](#283)
- [2.8.2](#282)
Expand Down Expand Up @@ -50,7 +52,12 @@ Yay for [SemVer](http://semver.org/).

<!-- TOC END -->

## 2.9.0
## 2.9.x
### 2.9.1
- [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.9.0...v2.9.1)
- fixed `useRequest` to be a static method as documented

### 2.9.0
- [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.8.3...v2.9.0)
- added and documented the optional use of [request][request-library] instead of [got][got-library]
for deployments requiring http(s) proxies to reach out to the internet wilderness
Expand Down
4 changes: 2 additions & 2 deletions lib/provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ class Provider extends events.EventEmitter {
get RegistrationAccessToken() { return instance(this).RegistrationAccessToken; }
get initialized() { return instance(this).initialized; }

useGot() { // eslint-disable-line class-methods-use-this
static useGot() { // eslint-disable-line class-methods-use-this
/* istanbul ignore next */
httpWrapper.useGot();
}
useRequest() { // eslint-disable-line class-methods-use-this
static useRequest() { // eslint-disable-line class-methods-use-this
/* istanbul ignore next */
httpWrapper.useRequest();
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"update-configuration",
"test"
],
"version": "2.9.0",
"version": "2.9.1",
"files": [
"lib"
],
Expand Down

0 comments on commit 76b599d

Please sign in to comment.