<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/py-amqp.git/t, branch codeql</title>
<subtitle>github.com: celery/py-amqp.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/'/>
<entry>
<title>Fix typos</title>
<updated>2021-11-06T06:56:36+00:00</updated>
<author>
<name>Kian-Meng, Ang</name>
<email>kianmeng@cpan.org</email>
</author>
<published>2021-11-06T05:00:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=c1fe574f64e5afc09c22ff5c4f655a0168d8629f'/>
<id>c1fe574f64e5afc09c22ff5c4f655a0168d8629f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dependency to case</title>
<updated>2021-09-15T15:05:41+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@gmail.com</email>
</author>
<published>2021-09-15T10:38:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=fa4c4bb5a34d73acf1fe8860c6967a35fce5135d'/>
<id>fa4c4bb5a34d73acf1fe8860c6967a35fce5135d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix ordering of context.check_hostname and context.verify_mode so as to not raise ValueError if cert_reqs=ssl.CERT_NONE.</title>
<updated>2021-02-22T12:23:42+00:00</updated>
<author>
<name>Colton Hicks</name>
<email>github@coltonhicks.com</email>
</author>
<published>2021-02-18T21:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=1f599c7213b097df07d0afd7868072ff9febf4da'/>
<id>1f599c7213b097df07d0afd7868072ff9febf4da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing load_default_certs() call. (#350)</title>
<updated>2021-01-27T08:55:20+00:00</updated>
<author>
<name>Moisés Guimarães de Medeiros</name>
<email>moisesguimaraes@users.noreply.github.com</email>
</author>
<published>2021-01-27T08:55:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=0b8a832d32179d33152d886acd6f081f25ea4bf2'/>
<id>0b8a832d32179d33152d886acd6f081f25ea4bf2</id>
<content type='text'>
Fixes: #349</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: #349</pre>
</div>
</content>
</entry>
<entry>
<title>Fix _wrap_socket_sni (#347)</title>
<updated>2020-12-21T23:05:09+00:00</updated>
<author>
<name>Moisés Guimarães de Medeiros</name>
<email>moisesguimaraes@users.noreply.github.com</email>
</author>
<published>2020-12-21T23:05:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=343a00e828d9d2d33998ccaf96dca0b9417f04af'/>
<id>343a00e828d9d2d33998ccaf96dca0b9417f04af</id>
<content type='text'>
* Change the default value of ssl_version to None. When not set, the
  proper value between ssl.PROTOCOL_TLS_CLIENT and ssl.PROTOCOL_TLS_SERVER
  will be selected based on the param server_side in order to create
  a TLS Context object with better defaults that fit the desired
  connection side.

* Change the default value of cert_reqs to None. The default value
  of ctx.verify_mode is ssl.CERT_NONE, but when ssl.PROTOCOL_TLS_CLIENT
  is used, ctx.verify_mode defaults to ssl.CERT_REQUIRED.

* Fix context.check_hostname logic. Checking the hostname depends on
  having support of the SNI TLS extension and being provided with a
  server_hostname value. Another important thing to mention is that
  enabling hostname checking automatically sets verify_mode from
  ssl.CERT_NONE to ssl.CERT_REQUIRED in the stdlib ssl and it cannot
  be set back to ssl.CERT_NONE as long as hostname checking is enabled.

* Refactor the SNI tests to test one thing at a time and removing some
  tests that were being repeated over and over.

Signed-off-by: Moisés Guimarães de Medeiros &lt;guimaraes@pm.me&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Change the default value of ssl_version to None. When not set, the
  proper value between ssl.PROTOCOL_TLS_CLIENT and ssl.PROTOCOL_TLS_SERVER
  will be selected based on the param server_side in order to create
  a TLS Context object with better defaults that fit the desired
  connection side.

* Change the default value of cert_reqs to None. The default value
  of ctx.verify_mode is ssl.CERT_NONE, but when ssl.PROTOCOL_TLS_CLIENT
  is used, ctx.verify_mode defaults to ssl.CERT_REQUIRED.

* Fix context.check_hostname logic. Checking the hostname depends on
  having support of the SNI TLS extension and being provided with a
  server_hostname value. Another important thing to mention is that
  enabling hostname checking automatically sets verify_mode from
  ssl.CERT_NONE to ssl.CERT_REQUIRED in the stdlib ssl and it cannot
  be set back to ssl.CERT_NONE as long as hostname checking is enabled.

* Refactor the SNI tests to test one thing at a time and removing some
  tests that were being repeated over and over.

Signed-off-by: Moisés Guimarães de Medeiros &lt;guimaraes@pm.me&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Make flake8 happy</title>
<updated>2020-11-08T20:58:17+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@gmail.com</email>
</author>
<published>2020-11-08T20:58:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=986551a9f398a32a5954662883f3b8845bf9b5be'/>
<id>986551a9f398a32a5954662883f3b8845bf9b5be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>autopep8 + isort</title>
<updated>2020-11-08T16:42:57+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-11-08T16:42:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=84ba9fadf3364a21f3e603b4dc5afdf18c1afb91'/>
<id>84ba9fadf3364a21f3e603b4dc5afdf18c1afb91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Basic publish confirm timeout fix (#343)</title>
<updated>2020-11-08T16:21:13+00:00</updated>
<author>
<name>RezaSi</name>
<email>rezashiri88@gmail.com</email>
</author>
<published>2020-11-08T16:21:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=aec7daab8dacc4a6c2b265fea9a4d15648432e69'/>
<id>aec7daab8dacc4a6c2b265fea9a4d15648432e69</id>
<content type='text'>
* Reuse the timeout for publishing to wait for a response.

* Added the confirm_timeout keyword argument.

If a timeout was specified and confirm_timeout was not use the timeout.
Otherwise, use the confirm_timeout.

* Fix unit test.

* Add document for timeout and confirm_timeout in _basic_publish

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;
Co-authored-by: Reza Shiri &lt;rezashiri@cafebazaar.ir&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Reuse the timeout for publishing to wait for a response.

* Added the confirm_timeout keyword argument.

If a timeout was specified and confirm_timeout was not use the timeout.
Otherwise, use the confirm_timeout.

* Fix unit test.

* Add document for timeout and confirm_timeout in _basic_publish

Co-authored-by: Omer Katz &lt;omer.drow@gmail.com&gt;
Co-authored-by: Reza Shiri &lt;rezashiri@cafebazaar.ir&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Reintroduce ca_certs and ciphers parameters of SSLTransport._wrap_socket_sni() (#344)</title>
<updated>2020-11-08T10:56:48+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@users.noreply.github.com</email>
</author>
<published>2020-11-08T10:56:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=b3f371333ff7df793628809e8abdbf43fd4391ba'/>
<id>b3f371333ff7df793628809e8abdbf43fd4391ba</id>
<content type='text'>
This fixes issue introduced in commit: 53d677754b4e820acf673711532c1a1dc8e57124</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes issue introduced in commit: 53d677754b4e820acf673711532c1a1dc8e57124</pre>
</div>
</content>
</entry>
<entry>
<title>Cosmetic improvements to read_frame()</title>
<updated>2020-10-13T08:43:58+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@gmail.com</email>
</author>
<published>2020-10-09T08:37:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=61164474b7fa79c4589b0661fb27c187d33be0a0'/>
<id>61164474b7fa79c4589b0661fb27c187d33be0a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
