<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/oauthlib.git/tests, branch 3.2.0-dev</title>
<subtitle>github.com: idan/oauthlib.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/'/>
<entry>
<title>failing test for Authorization: Basic</title>
<updated>2021-05-29T13:58:56+00:00</updated>
<author>
<name>Alan Crosswell</name>
<email>alan@columbia.edu</email>
</author>
<published>2021-05-26T19:02:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=7ecb5e19417dc4a9c85518d822dc1e3fcf4d5e3e'/>
<id>7ecb5e19417dc4a9c85518d822dc1e3fcf4d5e3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use better regex for IPv6 to allow a lot more valid IPv6 addresses (#753)</title>
<updated>2021-05-10T11:10:32+00:00</updated>
<author>
<name>Paul Dekkers</name>
<email>paul.dekkers@surf.nl</email>
</author>
<published>2021-05-10T11:10:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=2b8a44855a51ad5a5b0c348a08c2564a2e197ea2'/>
<id>2b8a44855a51ad5a5b0c348a08c2564a2e197ea2</id>
<content type='text'>
* Use better regex for IPv6 to allow a lot more valid IPv6 addresses

* Adding some unit tests for is_absolute_uri in uri_validate

* Make unit tests Python 3.6 compatible

* Remove redundant import after unit test simplification for py36

* update Changelog

* Remove redundant coding line</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use better regex for IPv6 to allow a lot more valid IPv6 addresses

* Adding some unit tests for is_absolute_uri in uri_validate

* Make unit tests Python 3.6 compatible

* Remove redundant import after unit test simplification for py36

* update Changelog

* Remove redundant coding line</pre>
</div>
</content>
</entry>
<entry>
<title>Properly handle prompt=none</title>
<updated>2021-05-01T08:12:17+00:00</updated>
<author>
<name>Nikos Sklikas</name>
<email>nsklikas@admin.grnet.gr</email>
</author>
<published>2021-04-27T07:08:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=2f1d7d8e357b307b3d5f41006d2b0a0698e40e63'/>
<id>2f1d7d8e357b307b3d5f41006d2b0a0698e40e63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use request.nonce when generating hybrid id token</title>
<updated>2021-02-12T05:31:48+00:00</updated>
<author>
<name>Tom Evans</name>
<email>tevans@mintel.com</email>
</author>
<published>2021-02-01T13:44:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=89162b8a7a911f094674d0a77199ae226b71a656'/>
<id>89162b8a7a911f094674d0a77199ae226b71a656</id>
<content type='text'>
Like with the implicit grant, we need to override add_id_token to pass
the nonce from the current request to GrantBase.add_id_token in order
for the ID token to have the correct nonce.

Add test that the nonce is in ID token from hybrid OIDC flow.

Fixes: #746
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Like with the implicit grant, we need to override add_id_token to pass
the nonce from the current request to GrantBase.add_id_token in order
for the ID token to have the correct nonce.

Add test that the nonce is in ID token from hybrid OIDC flow.

Fixes: #746
</pre>
</div>
</content>
</entry>
<entry>
<title>OAuth 1.0a signature methods: RSA-SHA256, RSA-SHA512 and HMAC-SHA512 (#723)</title>
<updated>2020-06-03T03:01:25+00:00</updated>
<author>
<name>Hoylen Sue</name>
<email>hoylen@hoylen.com</email>
</author>
<published>2020-06-03T03:01:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=bda81b3cb6306dec19a6e60113e21b2933d0950c'/>
<id>bda81b3cb6306dec19a6e60113e21b2933d0950c</id>
<content type='text'>
* Adding support for RSA-SHA256.

* Added support for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods.

* Made version dependencies consistent.

* Updated OAuth1 signature tests.

* Fixed parsing of netloc/host. Deprecated old functions.

* Refactored and expanded tests to include signature validate.

* Update docs for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods.

* Updated code comments in oauth1 signatures module.

* Updated changelog.

* Update docs/feature_matrix.rst

Co-Authored-By: Omer Katz &lt;omer.drow@gmail.com&gt;

* Used parenthesis instead of backslash to break lines.

* Fixed typo

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Adding support for RSA-SHA256.

* Added support for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods.

* Made version dependencies consistent.

* Updated OAuth1 signature tests.

* Fixed parsing of netloc/host. Deprecated old functions.

* Refactored and expanded tests to include signature validate.

* Update docs for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods.

* Updated code comments in oauth1 signatures module.

* Updated changelog.

* Update docs/feature_matrix.rst

Co-Authored-By: Omer Katz &lt;omer.drow@gmail.com&gt;

* Used parenthesis instead of backslash to break lines.

* Fixed typo

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Sorted tests import per isort 4.3.21</title>
<updated>2020-04-10T12:01:28+00:00</updated>
<author>
<name>Anton Ruhlov</name>
<email>anton@paxful.com</email>
</author>
<published>2020-04-10T12:01:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=a1057f9a82dd77e46aebaa217816af2c5759bab3'/>
<id>a1057f9a82dd77e46aebaa217816af2c5759bab3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use unittest.mock instead of external mock</title>
<updated>2020-03-16T11:27:34+00:00</updated>
<author>
<name>Michał Górny</name>
<email>mgorny@gentoo.org</email>
</author>
<published>2020-03-16T11:27:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=394c019f88e4decaec45b54f94f6a8a4c77d1b27'/>
<id>394c019f88e4decaec45b54f94f6a8a4c77d1b27</id>
<content type='text'>
Replace the use of external 'mock' package with built-in Python
unittest.mock (present since py3.3).  This also fixes all test failures
for me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace the use of external 'mock' package with built-in Python
unittest.mock (present since py3.3).  This also fixes all test failures
for me.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into rm-2.7</title>
<updated>2019-08-29T10:52:59+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2019-08-29T10:52:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=11bf0eca2857f5330237e574630dd916d53cd573'/>
<id>11bf0eca2857f5330237e574630dd916d53cd573</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove unneeded additional collect_parameters assertion in the signature_base_string test. Fixes python 2.7 test failure.</title>
<updated>2019-08-19T02:38:01+00:00</updated>
<author>
<name>Ashley Sommer</name>
<email>ashleysommer@gmail.com</email>
</author>
<published>2019-08-19T02:38:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=081175621f8533fe9d9d1fbf2c36f71d754f933b'/>
<id>081175621f8533fe9d9d1fbf2c36f71d754f933b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The future is now</title>
<updated>2019-08-15T09:31:29+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2019-08-15T09:31:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/oauthlib.git/commit/?id=25dee45f9991bf009bcc5eebd5987046a4bf7779'/>
<id>25dee45f9991bf009bcc5eebd5987046a4bf7779</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
