Commit Graph

39 Commits

Author SHA1 Message Date
Zuul 6c79680289 Merge "reno: Update master for unmaintained/xena" 2024-03-12 14:29:16 +00:00
Zuul 715973346b Merge "reno: Update master for unmaintained/wallaby" 2024-03-12 14:21:18 +00:00
Zuul d1da0b2444 Merge "reno: Update master for unmaintained/victoria" 2024-03-12 13:14:14 +00:00
OpenStack Release Bot c1c8e7cbe0 Update master for stable/2024.1
Add file to the reno documentation build to show release notes for
stable/2024.1.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/2024.1.

Sem-Ver: feature
Change-Id: I3a45f1bf54ce651f19004ae3b5b0831efb0c01c4
2024-03-08 14:23:51 +00:00
OpenStack Release Bot 6186a35926 reno: Update master for unmaintained/xena
Update the xena release notes configuration to build from
unmaintained/xena.

Change-Id: I02f2037ac0e3ba2880787d8c3db8d9a19f75b04c
2024-03-07 14:27:50 +00:00
OpenStack Release Bot 002f4aaf78 reno: Update master for unmaintained/wallaby
Update the wallaby release notes configuration to build from
unmaintained/wallaby.

Change-Id: I5cd7e9726b93fdfbef456937e1a1e07105a87420
2024-03-07 14:23:30 +00:00
OpenStack Release Bot 7dcaceb90e reno: Update master for unmaintained/victoria
Update the victoria release notes configuration to build from
unmaintained/victoria.

Change-Id: I4e6070cb1d6a38907ce24b2bab2a561fc13752f7
2024-03-07 14:18:33 +00:00
OpenStack Release Bot 25db0cf2f7 reno: Update master for unmaintained/yoga
Update the yoga release notes configuration to build from
unmaintained/yoga.

Change-Id: I75759e3b0b2607b083a216431dfbf1cf40297df0
2024-02-06 14:29:59 +00:00
OpenStack Release Bot ab48a36d35 Update master for stable/2023.2
Add file to the reno documentation build to show release notes for
stable/2023.2.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/2023.2.

Sem-Ver: feature
Change-Id: I7873c48560e9cd36acea0ace623a56255789077a
2023-09-07 09:38:59 +00:00
OpenStack Proposal Bot efe0cdc8cb Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I0a85370e6afb1c2875b687067d294d6ada6a96d1
2023-06-22 04:36:31 +00:00
OpenStack Release Bot 638a788cea Update master for stable/2023.1
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: I879d4b36f8334af65d4b5357718d91c9614b339f
2023-02-24 15:25:00 +00:00
OpenStack Proposal Bot fb5a423bd4 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I5af1a69bd62a85ddec406aff30dbc2ff7a294fd0
2022-10-01 03:58:31 +00:00
OpenStack Release Bot dbed7ef8ac Update master for stable/zed
Add file to the reno documentation build to show release notes for
stable/zed.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/zed.

Sem-Ver: feature
Change-Id: I183aca80eb86d8bf0bc4aeb08ca8494bc92c1c11
2022-09-09 09:19:03 +00:00
OpenStack Proposal Bot cec2b8e8f0 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: Ia3c6e0783baaa4853c3a3373ca14f6b88ddd2515
2022-06-21 03:59:03 +00:00
songwenping d901c42655 Remove unnecessary unicode prefixes
Change-Id: If5bc9397a87cc8d4260e50b793ed352dbd012c0c
2022-04-19 19:36:41 +08:00
OpenStack Release Bot 7f2dcd0e9f Update master for stable/yoga
Add file to the reno documentation build to show release notes for
stable/yoga.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/yoga.

Sem-Ver: feature
Change-Id: I93b5a3ec5d179253c8c6b3c4ab262782456aa8da
2022-03-04 17:20:21 +00:00
OpenStack Release Bot c2e6c12a4e Update master for stable/xena
Add file to the reno documentation build to show release notes for
stable/xena.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/xena.

Sem-Ver: feature
Change-Id: I26521b17621bee1f5c4cf5aa2fd9b4f4f5f8abf2
2021-09-10 14:40:07 +00:00
OpenStack Release Bot 0a3da61911 Update master for stable/wallaby
Add file to the reno documentation build to show release notes for
stable/wallaby.

Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/wallaby.

Sem-Ver: feature
Change-Id: Ia0ffbb9e95fe324557718f73b932410d4dac2a8c
2021-03-18 11:32:17 +00:00
Ade Lee 9f0f31eb8b Replace md5 with oslo version
md5 is not an approved algorithm in FIPS mode, and trying to
instantiate a hashlib.md5() will fail when the system is running in
FIPS mode.

md5 is allowed when in a non-security context.  There is a plan to
add a keyword parameter (usedforsecurity) to hashlib.md5() to annotate
whether or not the instance is being used in a security context.

In the case where it is not, the instantiation of md5 will be allowed.
See https://bugs.python.org/issue9216 for more details.

Some downstream python versions already support this parameter.  To
support these versions, a new encapsulation of md5() has been added to
oslo_utils.  See https://review.opendev.org/#/c/750031/

This patch is to replace the instances of hashlib.md5() with this new
encapsulation, adding an annotation indicating whether the usage is
a security context or not.

In this case, md5 is computed as one of the object hashes for the
purposes of object versioning.

Change-Id: Idf36897d690a20d23123950618643d0b9e085f6c
Depends-On: https://review.opendev.org/#/c/760160
2020-10-29 13:30:07 -04:00
OpenStack Release Bot ec6f504516 Update master for stable/victoria
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: I40d078d93ce1d63bbc1b7bafa6221b6f3f136de6
Sem-Ver: feature
2020-09-11 21:02:11 +00:00
Zuul b1eeb2c125 Merge "Switch to newer openstackdocstheme and reno versions" 2020-05-26 13:00:57 +00:00
Andreas Jaeger dd091c8010 Switch to newer openstackdocstheme and reno versions
Switch to openstackdocstheme 2.2.1 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
before the next release removes them. A couple of variables are also
not needed anymore, remove them.

Set openstackdocs_auto_name to use 'project' as name.

Change pygments_style to 'native' since old theme version always used
'native' and the theme now respects the setting and using 'sphinx' can
lead to some strange rendering.

See also
http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html

Change-Id: I5ebcae5db6b0f9f4dbf0754ace544b6c1e341ec7
2020-05-25 12:02:01 +00:00
OpenStack Proposal Bot f1cc6d3239 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: Icca83ad3a75582e2c78267f06ea9ceb66374683e
2020-05-22 09:23:21 +00:00
OpenStack Release Bot 0e037db891 Update master for stable/ussuri
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: Id0d673620b1e3497a9a667d9238c27e0bcf5d7ca
Sem-Ver: feature
2020-04-14 10:18:32 +00:00
Hervé Beraud 1327088489 [ussuri][goal] Drop python 2.7 support and testing
OpenStack is dropping the py2.7 support in Ussuri cycle.

Complete discussion & schedule can be found in
-
http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html
- https://etherpad.openstack.org/p/drop-python2-support

Ussuri Communtiy-wide goal:
https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html

Change-Id: Ic8653cdf5a3d9c36ea608a0cd91d72e0a5921a26
Sem-Ver: api-break
2020-02-07 07:56:16 -08:00
OpenStack Release Bot 30147030b2 Update master for stable/train
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: Iac77828961761bca78979e4b00aecccc59627e07
Sem-Ver: feature
2019-09-20 16:40:37 +00:00
OpenStack Release Bot e560e83322 Update master for stable/stein
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: I17ab24e4b2c66a0f2e284d6dccbf80fb82f7a630
Sem-Ver: feature
2019-03-18 14:47:34 +00:00
OpenStack Proposal Bot 8080113f05 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I0ef964a0a6b7ba0ef4424c0b4a71315ad6f2a73f
2018-08-13 07:05:11 +00:00
OpenStack Release Bot ab9eb32601 Update reno for stable/rocky
Change-Id: Ib44a6fd8d96481c9c9585e1e0cffadb8f1cb92e4
2018-07-26 12:40:48 +00:00
OpenStack Proposal Bot 372c737c65 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: Ic76d6715821711d18f6f32689e6c3eaa8df5f4fc
2018-03-01 06:08:56 +00:00
OpenStack Proposal Bot 2b87863660 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I2328cfbf45e19839dfaabccad72c32702db37e73
2018-02-07 06:29:47 +00:00
OpenStack Release Bot a5fe70e519 Update reno for stable/queens
Change-Id: Ib3217769421cc79a83cb9f9cc3f7f955c3b01dec
2018-01-24 18:08:39 +00:00
Andreas Jaeger 98cea0fa98 Fix wrong indent of releasenotes
Remove extra indent of releasenotes index, it produces a gray bar left
to it at the index page
https://docs.openstack.org/releasenotes/oslo.versionedobjects/

Change-Id: I04afb470e6e7f8a4a7a2a77b645d1a74fd1f5390
2018-01-03 07:46:22 +01:00
Andreas Jaeger 5367cf49c8 Remove setting of version/release from releasenotes
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: I98b4a685f88d5575bcc92c117beb3508989222cd
2017-11-16 21:52:40 +01:00
OpenStack Proposal Bot 15c83a2654 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I76c7ed0cc0a617cba7aa050b00aac5e64c0d69e2
2017-10-22 06:19:28 +00:00
OpenStack Release Bot c1d5654c7f Update reno for stable/pike
Change-Id: I5b71ca0b0a05bac4abd70cfcdfacd2e3ffd611a6
2017-07-28 21:05:45 +00:00
Akihiro Motoki 464c9b62b8 switch from oslosphinx to openstackdocstheme
Change-Id: Ieadb6ebd1b2714a07cc5c479a1c13da43c95fabc
2017-07-01 21:02:48 +09:00
OpenStack Release Bot c20c406533 Update reno for stable/ocata
Change-Id: I7bcb03e8caf12c52a842dd01e97ed222d4626277
2017-01-20 19:16:03 +00:00
ChangBo Guo(gcb) 71de5fd023 Add reno for release notes management
The release management team have indicated this is their preferred way
to collect release notes in future.

Closes-Bug: #1634356

Change-Id: Iac926d87064af92ea7e2e8eb24c72effca2641bc
2016-11-03 14:43:46 +08:00