summaryrefslogtreecommitdiff
path: root/releasenotes
Commit message (Collapse)AuthorAgeFilesLines
* Update master for stable/2023.1OpenStack Release Bot2023-02-242-0/+7
| | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/2023.1. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/2023.1. Sem-Ver: feature Change-Id: I4954e7590655ffbf44014b68dedacd9051e9d6a1
* Imported Translations from ZanataOpenStack Proposal Bot2022-11-051-2/+12
| | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: Ic909177a35589f59ea78fec6e741c2c954abc119
* Merge "Fix formatting of release list"5.0.0Zuul2022-07-141-12/+12
|\
| * Fix formatting of release listHervé Beraud2022-05-271-12/+12
| | | | | | | | Change-Id: Icd55bbb5111c12f150b8792c36e201d114ab14dc
* | Log when waiting to acquire lockGorka Eguileor2022-07-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We currently have no log entry when we start trying to acquire a lock. In general this is ok, but there are cases where it can be problematic, for example if we have a deadlock situation or if a lock takes a very long time to be acquired. In those scenarios looking at the logs we would see the operation proceed normally and suddenly go completely silent without knowing that it's waiting for a lock to be freed. This patch adds a debug log message right before trying to acquire the lock so we can detect those situations. Change-Id: I1354dfb98b0927ae167802ecc4ab1d34f6b4d720
* | Imported Translations from ZanataOpenStack Proposal Bot2022-06-211-2/+6
|/ | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: Ic6a8cb3efdddaa809b1381a7d9b96e50b7e9da9f
* Remove unnecessary unicode prefixes4.5.1songwenping2022-04-191-7/+7
| | | | Change-Id: I56651c1b83baaf443551686d7e8545eba2a0c7a1
* Update master for stable/victoriaOpenStack Release Bot2020-09-112-0/+7
| | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/victoria. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/victoria. Change-Id: Iabda8e0b114a46fb765249b55dbabf06429b9b06 Sem-Ver: feature
* Imported Translations from ZanataOpenStack Proposal Bot2020-07-101-2/+67
| | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I6ab357a5dca1e8f6e1a8d2b3febe79e961228fcc
* Add support for timeout to processutils.execute4.2.0Dmitry Tantsur2020-06-241-0/+5
| | | | | | This is a standard Python feature since 3.3. Change-Id: Ib13af5aab0ebbae532f1e46309ad6023ca94d6b9
* Fix pygments stylemelissaml2020-06-041-1/+1
| | | | | | | | New theme of docs respects pygments_style. more info: http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: I8847feba7669feed9edf9d7f7ba48af26760c298
* Switch to newer openstackdocstheme and reno versionsAndreas Jaeger2020-05-181-3/+3
| | | | | | | | | | | | | | | | Switch to openstackdocstheme 2.2.0 and reno 3.1.0 versions. Using these versions will allow especially: * Linking from HTML to PDF document * Allow parallel building of documents * Fix some rendering problems Update Sphinx version as well. openstackdocstheme renames some variables, so follow the renames. A couple of variables are also not needed anymore, remove them. Depends-On: https://review.opendev.org/728938 Change-Id: Ifd0f8e57c0052e5102aa914c8326159a72dad43c
* Update master for stable/ussuriOpenStack Release Bot2020-04-142-0/+7
| | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/ussuri. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/ussuri. Change-Id: I540a1fc2c509fff7cb92c34dc8fea50842252f5b Sem-Ver: feature
* Drop python 2.7 support and testing4.0.0Stephen Finucane2020-01-301-0/+5
| | | | | | | | Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I94e709093e01825069b44b6c485e49a81f8f14c1 Sem-Ver: api-break
* Bump the openstackdocstheme extension to 1.20pengyuesheng2019-10-121-13/+0
| | | | | | | | | | | | Some options are now automatically configured by the version 1.20: - project - html_last_updated_fmt - latex_engine - latex_elements - version - release. Change-Id: Ia04d1de7e10783350e3aa091eab64d1cbd7f070a
* Update master for stable/trainOpenStack Release Bot2019-09-202-0/+7
| | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/train. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/train. Change-Id: Ie17cfbe280e972a4b352f1a75fec9e4abb013937 Sem-Ver: feature
* Update master for stable/steinOpenStack Release Bot2019-03-182-0/+7
| | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/stein. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/stein. Change-Id: Ib25eb92c5012311de1030a16aa136ae164972f65 Sem-Ver: feature
* Merge "Add support for fair locks"3.29.0Zuul2018-11-051-0/+15
|\
| * Add support for fair locksChris Friesen2018-11-021-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for a "fair" variant of the lock. When there are multiple entities within a single process that are blocked waiting for the lock the fair lock will ensure that they acquire the lock in FIFO order. For now at least, when fair locks are in use we don't support the "semaphores" argument. If external locks are enabled, the inter-process ordering will be determined by the underlying OS lock ordering and process scheduling. Change-Id: I37577becff4978bf643c65fa9bc2d78d342ea35a
* | Imported Translations from Zanata3.28.13.28.0OpenStack Proposal Bot2018-09-171-3/+6
| | | | | | | | | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I5d05af2e828d00f229d213b7dd5f86a831992dae
* | Update reno for stable/rockyOpenStack Release Bot2018-07-262-0/+7
| | | | | | | | Change-Id: I42dc34aaddbce0948bc0c4a3a4079c7c3d9a46c2
* | Imported Translations from ZanataOpenStack Proposal Bot2018-03-011-3/+3
| | | | | | | | | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I38a631e8a24e8807dc59b14f368ab21caa02aba5
* | Imported Translations from ZanataOpenStack Proposal Bot2018-01-271-2/+5
| | | | | | | | | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I9565d035d907b2f36b7c8aab09b7d1923f72c553
* | Update reno for stable/queensOpenStack Release Bot2018-01-242-0/+7
| | | | | | | | Change-Id: I70ef6fd94323f529f4c0df47ce60bbb6ef878278
* | Imported Translations from ZanataOpenStack Proposal Bot2018-01-221-3/+19
| | | | | | | | | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I0fcad63b509e7d6c99e82d2a6db8c39ba87a479d
* | Add python_exec kwarg to processutils.execute()3.25.0Matthew Treinish2018-01-091-0/+5
|/ | | | | | | | | | | | | | | | | | | | | This commit adds a new kwarg to the process_utils.execute() function to specify the python executable to use when launching python to check prlimits. This is necessary when processutils.execute() is called from inside an API server running with uwsgi. In this case sys.executable is uwsgi (because uwsgi links libpython.so and is actually the interpreter) This doesn't work with the execute() function because it assumes the cpython interpreter CLI is used for the arguments it uses to call the prlimits module. To workaround this and enable API servers that may run under uwsgi to use this those applications can simply pass in an executable to use. Longer term it might be better to migrate the prlimits usage to call multiprocessing instead of subprocessing python. But that would require a more significant rewrite of both processutils and prlimit to facilitate that. Change-Id: I0ae60f0b4cc3700c783f6018e837358f0e053a09 Closes-Bug: #1712463
* Remove setting of version/release from releasenotesAndreas Jaeger2017-11-161-8/+4
| | | | | | | | | | | | | | | | | | Release notes are version independent, so remove version/release values. We've found that projects now require the service package to be installed in order to build release notes, and this is entirely due to the current convention of pulling in the version information. Release notes should not need installation in order to build, so this unnecessary version setting needs to be removed. This is needed for new release notes publishing, see I56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting at http://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html . Change-Id: I6a47a0c7bfacf38818c13b1304d13c0c4de71436
* Imported Translations from ZanataOpenStack Proposal Bot2017-10-041-3/+6
| | | | | | | For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: If4ffb7931ccf5d09dc0c48b3dba4226f459b5244
* Update reno for stable/pikeOpenStack Release Bot2017-07-282-0/+7
| | | | Change-Id: Ie7d1377de2a87efa5d77e08a530796c505214ab0
* Imported Translations from ZanataOpenStack Proposal Bot2017-07-121-4/+11
| | | | | | | For more information about this automatic import see: http://docs.openstack.org/developer/i18n/reviewing-translation-import.html Change-Id: Ia11093f4fd2fa12077a202872b3ed6ce79e34e83
* switch from oslosphinx to openstackdocsthemeDoug Hellmann2017-07-111-2/+8
| | | | | Change-Id: Ieadf9b992b269d54dd9c79523d5879b6ad71ba7c Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* Update reno for stable/ocataOpenStack Release Bot2017-01-202-0/+7
| | | | Change-Id: I8505c756222d7c58d6d29fea2685f385dfee262f
* Imported Translations from ZanataOpenStack Proposal Bot2016-10-261-0/+33
| | | | | | | For more information about this automatic import see: https://wiki.openstack.org/wiki/Translations/Infrastructure Change-Id: I69e37304aa12c92ec5fe645ec1425784c3e26d42
* Enable release notes translationAndreas Jaeger2016-10-061-0/+3
| | | | | | | | | | | | Releasenote translation publishing is being prepared. 'locale_dirs' needs to be defined in conf.py to generate translated version of the release notes. Note that this repository might not get translated release notes - or no translations at all - but we add the entry here nevertheless to prepare for it. Change-Id: I6fd9f1265f05a5d4e44355def5a6519a8021e25d
* Update reno for stable/newtonDoug Hellmann2016-09-022-2/+9
| | | | Change-Id: I995a3f604b4520a87444f444e58d17fe99ef26df
* Imported Translations from ZanataOpenStack Proposal Bot2016-07-011-0/+30
| | | | | | | For more information about this automatic import see: https://wiki.openstack.org/wiki/Translations/Infrastructure Change-Id: I3657f625009612562b2a40e7295089cf54151846
* Add reno for releasenotes managementKirill Bespalov2016-05-206-0/+289
An initial patch to add reno and create a base directory for release notes Change-Id: Ie3f6653a27a49d8b2fced3f399b1d4c8f0c95b7c