Changelog
*Sourced from [requests-oauthlib's changelog](https://github.com/requests/requests-oauthlib/blob/master/HISTORY.rst).*
> v1.2.0 (14 January 2019)
> ========================
>
> - This project now depends on OAuthlib 3.0.0 and above. It does **not** support versions of OAuthlib before 3.0.0.
> - Updated oauth2 tests to use 'sess' for an OAuth2Session instance instead of auth because OAuth2Session objects and methods acceept an auth paramether which is typically an instance of requests.auth.HTTPBasicAuth
> - OAuth2Session.fetch\_token previously tried to guess how and where to provide "client" and "user" credentials incorrectly. This was incompatible with some OAuth servers and incompatible with breaking changes in oauthlib that seek to correctly provide the client\_id. The older implementation also did not raise the correct exceptions when username and password are not present on Legacy clients.
> - Avoid automatic netrc authentication for OAuth2Session.
>
> v1.1.0 (9 January 2019)
> =======================
>
> - Adjusted version specifier for `oauthlib` dependency: this project is not yet compatible with `oauthlib` 3.0.0.
> - Dropped dependency on `nose`.
> - Minor changes to clean up the code and make it more readable/maintainable.
>
> v1.0.0 (4 June 2018)
> ====================
>
> - **Removed support for Python 2.6 and Python 3.3.** This project now supports Python 2.7, and Python 3.4 and above.
> - Added several examples to the documentation.
> - Added plentymarkets compliance fix.
> - Added a `token` property to OAuth1Session, to match the corresponding `token` property on OAuth2Session.
Commits
- [`1495328`](https://github.com/requests/requests-oauthlib/commit/1495328dea94b38e3675476cb889e2e3a038355b) v1.2.0
- [`b3c227a`](https://github.com/requests/requests-oauthlib/commit/b3c227a88df5b904ff257b7e39200107ff96ee44) Merge pull request [#357](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/357) from singingwolfboy/oauthlib3
- [`53481e3`](https://github.com/requests/requests-oauthlib/commit/53481e3ab661eff2b22c7f3928f5936e5220291b) Add note to HISTORY indicating oauthlib 3.0.0
- [`41706b5`](https://github.com/requests/requests-oauthlib/commit/41706b5543c67cc9632df2af9d4bf48e2fbf3c79) Adjust dependency version specifier
- [`a1ed2de`](https://github.com/requests/requests-oauthlib/commit/a1ed2debeddd1f9b21d486b44ebeca74609fce67) Fix str/bytes problem
- [`0adb58e`](https://github.com/requests/requests-oauthlib/commit/0adb58e3944642a2817d8a98ecfeb42239ee34fc) Compatibility with oauthlib 3.0.0
- [`e859dbd`](https://github.com/requests/requests-oauthlib/commit/e859dbd15b842245f0081194d42d5f62972fe614) Avoid requests automatic auth ([#279](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/279))
- [`4fb0db5`](https://github.com/requests/requests-oauthlib/commit/4fb0db5d7f388bb05e3252a854cf8c83d57c27d0) Fallback on unittest.mock
- [`4784955`](https://github.com/requests/requests-oauthlib/commit/4784955f033f078b8e4861bda710a86947594f29) v1.1.0
- [`bbc2e13`](https://github.com/requests/requests-oauthlib/commit/bbc2e13dd490bad611a4a6539c9518a0b48630d2) Correct dependency for 'rsa' extra ([#355](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/355))
- Additional commits viewable in [compare view](https://github.com/requests/requests-oauthlib/compare/v0.8.0...v1.2.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps requests-oauthlib from 0.8.0 to 1.2.0.
Changelog
*Sourced from [requests-oauthlib's changelog](https://github.com/requests/requests-oauthlib/blob/master/HISTORY.rst).* > v1.2.0 (14 January 2019) > ======================== > > - This project now depends on OAuthlib 3.0.0 and above. It does **not** support versions of OAuthlib before 3.0.0. > - Updated oauth2 tests to use 'sess' for an OAuth2Session instance instead of auth because OAuth2Session objects and methods acceept an auth paramether which is typically an instance of requests.auth.HTTPBasicAuth > - OAuth2Session.fetch\_token previously tried to guess how and where to provide "client" and "user" credentials incorrectly. This was incompatible with some OAuth servers and incompatible with breaking changes in oauthlib that seek to correctly provide the client\_id. The older implementation also did not raise the correct exceptions when username and password are not present on Legacy clients. > - Avoid automatic netrc authentication for OAuth2Session. > > v1.1.0 (9 January 2019) > ======================= > > - Adjusted version specifier for `oauthlib` dependency: this project is not yet compatible with `oauthlib` 3.0.0. > - Dropped dependency on `nose`. > - Minor changes to clean up the code and make it more readable/maintainable. > > v1.0.0 (4 June 2018) > ==================== > > - **Removed support for Python 2.6 and Python 3.3.** This project now supports Python 2.7, and Python 3.4 and above. > - Added several examples to the documentation. > - Added plentymarkets compliance fix. > - Added a `token` property to OAuth1Session, to match the corresponding `token` property on OAuth2Session.Commits
- [`1495328`](https://github.com/requests/requests-oauthlib/commit/1495328dea94b38e3675476cb889e2e3a038355b) v1.2.0 - [`b3c227a`](https://github.com/requests/requests-oauthlib/commit/b3c227a88df5b904ff257b7e39200107ff96ee44) Merge pull request [#357](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/357) from singingwolfboy/oauthlib3 - [`53481e3`](https://github.com/requests/requests-oauthlib/commit/53481e3ab661eff2b22c7f3928f5936e5220291b) Add note to HISTORY indicating oauthlib 3.0.0 - [`41706b5`](https://github.com/requests/requests-oauthlib/commit/41706b5543c67cc9632df2af9d4bf48e2fbf3c79) Adjust dependency version specifier - [`a1ed2de`](https://github.com/requests/requests-oauthlib/commit/a1ed2debeddd1f9b21d486b44ebeca74609fce67) Fix str/bytes problem - [`0adb58e`](https://github.com/requests/requests-oauthlib/commit/0adb58e3944642a2817d8a98ecfeb42239ee34fc) Compatibility with oauthlib 3.0.0 - [`e859dbd`](https://github.com/requests/requests-oauthlib/commit/e859dbd15b842245f0081194d42d5f62972fe614) Avoid requests automatic auth ([#279](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/279)) - [`4fb0db5`](https://github.com/requests/requests-oauthlib/commit/4fb0db5d7f388bb05e3252a854cf8c83d57c27d0) Fallback on unittest.mock - [`4784955`](https://github.com/requests/requests-oauthlib/commit/4784955f033f078b8e4861bda710a86947594f29) v1.1.0 - [`bbc2e13`](https://github.com/requests/requests-oauthlib/commit/bbc2e13dd490bad611a4a6539c9518a0b48630d2) Correct dependency for 'rsa' extra ([#355](https://github-redirect.dependabot.com/requests/requests-oauthlib/issues/355)) - Additional commits viewable in [compare view](https://github.com/requests/requests-oauthlib/compare/v0.8.0...v1.2.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.