<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/taskflow.git/openstack-common.conf, branch 0.6.0</title>
<subtitle>opendev.org: openstack/taskflow.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/'/>
<entry>
<title>Move over to using oslo.utils [reflection, uuidutils]</title>
<updated>2014-12-18T21:55:41+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2014-12-09T02:58:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=4e514f41e57983e728db9025126df6f791a2594a'/>
<id>4e514f41e57983e728db9025126df6f791a2594a</id>
<content type='text'>
The reflection module is now part of oslo.utils so we should
remove our local version and use that version instead; this
also goes for the uuidutils module which is now part of
oslo.utils as well so we no longer need our local version
copied from the incubator...

Note that one reflection method `find_subclasses` which was to
specific to taskflow is now moved to the misc utility module
instead of its prior home in the reflection module.

Change-Id: I069881c80b0b2916cc0c414992b80171f7eeb79f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The reflection module is now part of oslo.utils so we should
remove our local version and use that version instead; this
also goes for the uuidutils module which is now part of
oslo.utils as well so we no longer need our local version
copied from the incubator...

Note that one reflection method `find_subclasses` which was to
specific to taskflow is now moved to the misc utility module
instead of its prior home in the reflection module.

Change-Id: I069881c80b0b2916cc0c414992b80171f7eeb79f
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to using oslo.utils and oslo.serialization</title>
<updated>2014-09-20T16:03:11+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2014-09-11T00:13:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=aaa51fd689db73f40088eba7a07ac8a131aad528'/>
<id>aaa51fd689db73f40088eba7a07ac8a131aad528</id>
<content type='text'>
Instead of copying modules from the incubator into taskflow
we can now directly use these same modules from supported
libraries instead so this moves the usage of everything except
uuidutils which wasn't moved over to using those newly published
libraries.

Part of blueprint integrate-and-use-oslo-utils-serialization

Change-Id: I1183bda96e1ddb062d9cab91990186f0f56f0a0e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of copying modules from the incubator into taskflow
we can now directly use these same modules from supported
libraries instead so this moves the usage of everything except
uuidutils which wasn't moved over to using those newly published
libraries.

Part of blueprint integrate-and-use-oslo-utils-serialization

Change-Id: I1183bda96e1ddb062d9cab91990186f0f56f0a0e
</pre>
</div>
</content>
</entry>
<entry>
<title>Synced jsonutils from oslo-incubator</title>
<updated>2014-05-27T10:23:36+00:00</updated>
<author>
<name>Ihar Hrachyshka</name>
<email>ihrachys@redhat.com</email>
</author>
<published>2014-05-27T08:22:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=e60ce2db7ee8225534aa15c6470cde284011366d'/>
<id>e60ce2db7ee8225534aa15c6470cde284011366d</id>
<content type='text'>
The sync includes change that makes sure we get unicode-only dicts from
jsonutils no matter which json module implementation is selected.

The latest commit in oslo-incubator:
- 0f4586c0076183c6356eec682c8a593648125abd

The sync adds a new 'strutils' module that is now used in jsonutils.

Change-Id: Ic815ca3df94c33edec9104172048b2cd94b92e3f
Closes-Bug: 1314129
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The sync includes change that makes sure we get unicode-only dicts from
jsonutils no matter which json module implementation is selected.

The latest commit in oslo-incubator:
- 0f4586c0076183c6356eec682c8a593648125abd

The sync adds a new 'strutils' module that is now used in jsonutils.

Change-Id: Ic815ca3df94c33edec9104172048b2cd94b92e3f
Closes-Bug: 1314129
</pre>
</div>
</content>
</entry>
<entry>
<title>Integrate urlparse for configuration augmentation</title>
<updated>2014-04-28T19:13:59+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2014-04-04T00:49:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=cb2ea424c7fd5637e03fcf9d306a3e1cb9f4acc0'/>
<id>cb2ea424c7fd5637e03fcf9d306a3e1cb9f4acc0</id>
<content type='text'>
Allow the uri passed to various entrypoints to itself
contain most of the configuration for that entrypoint
by using the RFC 3986 uri format to allow for additional
parameters to be used in configuring and selecting those
entrypoints.

Also bring over network_utils from oslo since it provides
a more compliant url splitting support.

Part of blueprint persistence-uris

Change-Id: I8e5d8584d2cac4f9b338fa155f220cdfd52bb7d9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow the uri passed to various entrypoints to itself
contain most of the configuration for that entrypoint
by using the RFC 3986 uri format to allow for additional
parameters to be used in configuring and selecting those
entrypoints.

Also bring over network_utils from oslo since it provides
a more compliant url splitting support.

Part of blueprint persistence-uris

Change-Id: I8e5d8584d2cac4f9b338fa155f220cdfd52bb7d9
</pre>
</div>
</content>
</entry>
<entry>
<title>import run_cross_tests.sh from incubator</title>
<updated>2014-04-04T13:43:25+00:00</updated>
<author>
<name>Doug Hellmann</name>
<email>doug.hellmann@dreamhost.com</email>
</author>
<published>2014-04-04T13:43:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=5fb1a166b6a39261bfe9119cad942e137217175f'/>
<id>5fb1a166b6a39261bfe9119cad942e137217175f</id>
<content type='text'>
Change-Id: I0f35dcd5a3aece55a2924f18093efdaa62968640
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I0f35dcd5a3aece55a2924f18093efdaa62968640
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of openstack.common.py3kcompat</title>
<updated>2014-03-03T08:28:54+00:00</updated>
<author>
<name>Ivan A. Melnikov</name>
<email>imelnikov@griddynamics.com</email>
</author>
<published>2014-03-03T08:25:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=0102c34d835d201b4c444f4762fcae4956e951ef'/>
<id>0102c34d835d201b4c444f4762fcae4956e951ef</id>
<content type='text'>
py3kcompat was removed from oslo-incubator because everything it
provided was already in six version we depend on (see oslo-incubator
change I06b90f789ae21f2ef8b8071b4298bfc0406482a6). So we should
use six for urlparse, too.

Change-Id: I0ab7119c985c247c2f701e3bb6b16353cf7399f0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
py3kcompat was removed from oslo-incubator because everything it
provided was already in six version we depend on (see oslo-incubator
change I06b90f789ae21f2ef8b8071b4298bfc0406482a6). So we should
use six for urlparse, too.

Change-Id: I0ab7119c985c247c2f701e3bb6b16353cf7399f0
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to just using tox</title>
<updated>2014-01-02T18:38:15+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@gmail.com</email>
</author>
<published>2013-12-26T18:01:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=d58427d3174f2fabb45fba69842d73133d24e12b'/>
<id>d58427d3174f2fabb45fba69842d73133d24e12b</id>
<content type='text'>
Instead of requiring all the complicated
venv management logic that tox already provides
just use tox directly instead. This maps more
closely to what jenkins does, and how most other
python development occurs (which does not typically
rely on custom venv scripts).

Change-Id: Iff6cf0a7eb24ddd2ef65ddd723d0e4cb803b9bb9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of requiring all the complicated
venv management logic that tox already provides
just use tox directly instead. This maps more
closely to what jenkins does, and how most other
python development occurs (which does not typically
rely on custom venv scripts).

Change-Id: Iff6cf0a7eb24ddd2ef65ddd723d0e4cb803b9bb9
</pre>
</div>
</content>
</entry>
<entry>
<title>Update oslo-incubator copy to oslo-incubator commit 8b2b0b743</title>
<updated>2013-12-21T19:28:31+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2013-12-21T19:25:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=533e3046e0d7e3092ebf19375ed6273ebc3c2beb'/>
<id>533e3046e0d7e3092ebf19375ed6273ebc3c2beb</id>
<content type='text'>
- Remove versionutils as it is not used and it has
  started to pull in oslo.cfg via its direct usage
  of the oslo-incubator log module

Change-Id: I364f00d9734b67fe5c7566ccd7a76e6eb18751c2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove versionutils as it is not used and it has
  started to pull in oslo.cfg via its direct usage
  of the oslo-incubator log module

Change-Id: I364f00d9734b67fe5c7566ccd7a76e6eb18751c2
</pre>
</div>
</content>
</entry>
<entry>
<title>Update oslo and bring py3kcompat in</title>
<updated>2013-10-17T07:44:33+00:00</updated>
<author>
<name>Ivan A. Melnikov</name>
<email>imelnikov@griddynamics.com</email>
</author>
<published>2013-10-17T07:42:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=d382a20517fb40d4ab869c53be512757e8c93570'/>
<id>d382a20517fb40d4ab869c53be512757e8c93570</id>
<content type='text'>
Related-bug: #1240827
Change-Id: I8f4c78f1ff1cb73fca8af9f6df8392d1636ae95f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related-bug: #1240827
Change-Id: I8f4c78f1ff1cb73fca8af9f6df8392d1636ae95f
</pre>
</div>
</content>
</entry>
<entry>
<title>Update oslo copy and bring over versionutils</title>
<updated>2013-10-10T02:19:47+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2013-10-10T02:17:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=50d438384aa88254c55ac7f0f3b79e37374545f6'/>
<id>50d438384aa88254c55ac7f0f3b79e37374545f6</id>
<content type='text'>
Change-Id: I93ab20ae26033574e1f25ecc8276ffe291994ce6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I93ab20ae26033574e1f25ecc8276ffe291994ce6
</pre>
</div>
</content>
</entry>
</feed>
