<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/taskflow.git/taskflow, branch master</title>
<subtitle>opendev.org: openstack/taskflow.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/'/>
<entry>
<title>Merge "Fix parsing of zookeeper jobboard backend options"</title>
<updated>2023-04-19T00:11:52+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2023-04-19T00:11:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=5c1b7e58dd54c474544c5393d46772b78a061646'/>
<id>5c1b7e58dd54c474544c5393d46772b78a061646</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare taskflow for sqlalchemy2</title>
<updated>2023-02-27T07:18:54+00:00</updated>
<author>
<name>Gregory Thiemonge</name>
<email>gthiemon@redhat.com</email>
</author>
<published>2023-02-27T07:05:56+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=77bc3cb7f83b0cc47f04ccda5125613e06690958'/>
<id>77bc3cb7f83b0cc47f04ccda5125613e06690958</id>
<content type='text'>
* convert_unicode engine option is no longer supported
* use positional arguments for select, lists are no longer supported
* insert no longer accepts keyword constructor arguments
* explicitly convert Rows to dicts

Change-Id: I858d60b3d142e8ade8b2c0154872c8bfc19a42ba
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* convert_unicode engine option is no longer supported
* use positional arguments for select, lists are no longer supported
* insert no longer accepts keyword constructor arguments
* explicitly convert Rows to dicts

Change-Id: I858d60b3d142e8ade8b2c0154872c8bfc19a42ba
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Replace abc.abstractproperty with property and abc.abstractmethod"</title>
<updated>2023-02-17T15:08:24+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2023-02-17T15:08:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=325d45629d6c620ca323c59ad37405187d859a88'/>
<id>325d45629d6c620ca323c59ad37405187d859a88</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Change StrictRedis usage to Redis"</title>
<updated>2023-02-17T13:27:20+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2023-02-17T13:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=e5e572ab8e407d2779b96d3aac333713f79b3533'/>
<id>e5e572ab8e407d2779b96d3aac333713f79b3533</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix parsing of zookeeper jobboard backend options</title>
<updated>2023-01-12T08:59:29+00:00</updated>
<author>
<name>Gregory Thiemonge</name>
<email>gthiemon@redhat.com</email>
</author>
<published>2022-12-09T07:14:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=086b3e4335194cbe2bbfcd8c422fa21952124b44'/>
<id>086b3e4335194cbe2bbfcd8c422fa21952124b44</id>
<content type='text'>
Fix the zookeeper backend options when values are passed as strings,
a "False" string is now treated as the False boolean.

Closes-Bug: #1999174
Change-Id: I048faf06d89ebf980efe0598e647f2ec89f65ada
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the zookeeper backend options when values are passed as strings,
a "False" string is now treated as the False boolean.

Closes-Bug: #1999174
Change-Id: I048faf06d89ebf980efe0598e647f2ec89f65ada
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test_while_is_not with python 3.11</title>
<updated>2022-12-05T17:21:48+00:00</updated>
<author>
<name>Gregory Thiemonge</name>
<email>gthiemon@redhat.com</email>
</author>
<published>2022-12-05T17:18:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=5bcac4c7d4503be8161bcf159981199e3ea89d4d'/>
<id>5bcac4c7d4503be8161bcf159981199e3ea89d4d</id>
<content type='text'>
The test_while_is_not function relied on strings and literals to test
the 'while_is_not' function. But the while_is_not function uses the 'is'
operator to test the equivalency of 2 objects.
This triggers a bug with python 3.11 where using 'is' with literals is
not advised (it is not recommended since python 3.8 [0]).
The test now uses objects from a specific class to evaluate the
while_is_not function.

[0] https://docs.python.org/3/whatsnew/3.8.html#changes-in-python-behavior

Change-Id: I38a0135aaf73e25aa20a11c0685d5c2a7b587a07
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The test_while_is_not function relied on strings and literals to test
the 'while_is_not' function. But the while_is_not function uses the 'is'
operator to test the equivalency of 2 objects.
This triggers a bug with python 3.11 where using 'is' with literals is
not advised (it is not recommended since python 3.8 [0]).
The test now uses objects from a specific class to evaluate the
while_is_not function.

[0] https://docs.python.org/3/whatsnew/3.8.html#changes-in-python-behavior

Change-Id: I38a0135aaf73e25aa20a11c0685d5c2a7b587a07
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Adapt to new jsonschema versions"</title>
<updated>2022-11-21T10:31:01+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2022-11-21T10:31:01+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=012b7c5aa901b220479da2a71bb6005edd0506e1'/>
<id>012b7c5aa901b220479da2a71bb6005edd0506e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change StrictRedis usage to Redis</title>
<updated>2022-09-29T08:37:05+00:00</updated>
<author>
<name>Tobias Urdin</name>
<email>tobias.urdin@binero.com</email>
</author>
<published>2022-09-28T10:21:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=4ff2d00178c1c5f3fe65c0ba6b0986df618cab78'/>
<id>4ff2d00178c1c5f3fe65c0ba6b0986df618cab78</id>
<content type='text'>
The StrictRedis class is only an alias for
Redis in &gt;= 3.0.0

Change-Id: Ief27531f120a50805053c214cb61bb4151678d70
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The StrictRedis class is only an alias for
Redis in &gt;= 3.0.0

Change-Id: Ief27531f120a50805053c214cb61bb4151678d70
</pre>
</div>
</content>
</entry>
<entry>
<title>Adapt to new jsonschema versions</title>
<updated>2022-08-03T19:16:02+00:00</updated>
<author>
<name>Corey Bryant</name>
<email>corey.bryant@canonical.com</email>
</author>
<published>2022-08-02T20:07:04+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=4bd0ab33272064cc4e44fe2d652ecf7a11b07274'/>
<id>4bd0ab33272064cc4e44fe2d652ecf7a11b07274</id>
<content type='text'>
This change provides fixes that were dectected by unit
test failures with new jsonschema (and py310).

The types argument has been removed in favor of providing a
type_checker to jsonschema.validators.extend:
https://github.com/python-jsonschema/jsonschema/issues/577

Closes-Bug: #1983412
Change-Id: I86f12b3d264320308e7f4841910fc21a6e8b3fa9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change provides fixes that were dectected by unit
test failures with new jsonschema (and py310).

The types argument has been removed in favor of providing a
type_checker to jsonschema.validators.extend:
https://github.com/python-jsonschema/jsonschema/issues/577

Closes-Bug: #1983412
Change-Id: I86f12b3d264320308e7f4841910fc21a6e8b3fa9
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace abc.abstractproperty with property and abc.abstractmethod</title>
<updated>2022-08-03T12:37:13+00:00</updated>
<author>
<name>ljhuang</name>
<email>huang.liujie@99cloud.net</email>
</author>
<published>2022-08-03T08:21:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=56413aa3c5e630257afcb2c2874c46cd7a3955b1'/>
<id>56413aa3c5e630257afcb2c2874c46cd7a3955b1</id>
<content type='text'>
Replace abc.abstractproperty with property and abc.abstractmethod,
as abc.abstractproperty has been deprecated since python3.3[1]

[1]https://docs.python.org/3.8/whatsnew/3.3.html?highlight=deprecated#abc

Change-Id: I1bcecd99d8856c26621a5304d9f7f01f8f111918
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace abc.abstractproperty with property and abc.abstractmethod,
as abc.abstractproperty has been deprecated since python3.3[1]

[1]https://docs.python.org/3.8/whatsnew/3.3.html?highlight=deprecated#abc

Change-Id: I1bcecd99d8856c26621a5304d9f7f01f8f111918
</pre>
</div>
</content>
</entry>
</feed>
