* Update mistral-extra from branch 'master'
to 3d277e7b7bbce1fae76b420a662fce05784fe6fb
- Merge "Import additional hacking checks from mistral repo"
- Import additional hacking checks from mistral repo
Enable checks which are additionally enabled in mistral, to ensure
consistent format rule.
Change-Id: I3f9b2db850e827b5476fc2dfa8c9e46dc45a49c2
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update mistral-extra from branch 'master'
to 9e4d3b3a9fd1b62f2ad33ce216bc62636152e5e1
- Merge "Fix section name for scripts"
- Fix section name for scripts
Change-Id: I57456dbd6f6b1bc3271f059af8fea17ed4ed34c8
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update magnum-ui from branch 'master'
to ae73f2530541fea448882f9009a1acff6d2c43ab
- Merge "Add support for Python 3.14"
- Add support for Python 3.14
Change-Id: I023df89c997a0a7692d642e9de8c51d3f03c2b0a
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
* Update magnum-ui from branch 'master'
to 1b207665b8dac6cd83e45913b30928340334529a
- Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
Change-Id: I88b93fa13bcea7c768fb712201dc75abc56a9042
Signed-off-by: OpenStack Proposal Bot <openstack-infra@lists.openstack.org>
Generated-By: openstack/openstack-zuul-jobs:roles/prepare-zanata-client/files/common_translation_update.sh
* Update masakari from branch 'master'
to 5e4a7504e4b1edcd63526560b4bcd5eafa8fe614
- Merge "Remove unnecessary executable bit"
- Remove unnecessary executable bit
The file is not actually an executable script.
Change-Id: Ic9a24130dc86d3cdd2c9b2ce6d9aac762f1ad205
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update trove from branch 'master'
to 2ac2608dcd3ee497ecbfef7563b2628691528d53
- Merge "Skip remaining Swift checks when not in use"
- Skip remaining Swift checks when not in use
Trove previously performed mandatory checks for Swift authentication
during the replica creation flow and backup deletion, regardless of
the actual storage backend in use.
This caused errors in OpenStack setups where Swift is globally
disabled, resulting in "Swift is disabled for tenant <id>" messages.
This commit updates the code to conditionally verify Swift tokens
only if Swift is configured as the storage driver, allowing replica
operations to proceed normally in Cinder-only environments.
Change-Id: Ie7a96aba5546df4d00585132bd6999e398889ff9
Signed-off-by: Erkin Mussurmankulov <mangust404@gmail.com>
* Update grenade from branch 'master'
to 0a5e3bf3c360ef963637d83a58c9e862ed2f4b69
- Add quota sync to Cinder upgrade
Quota sync command isn't run anywhere in CI leading to many bugs
that went under radar. This is an effort to add it along with the
db sync command.
Signed-off-by: Rajat Dhasmana <rajatdhasmana@gmail.com>
Change-Id: I060821be21f166db4887909c16e58c018e9792bb
* Update kolla-ansible from branch 'master'
to 7d89d6afbef6fcb352c30f9fe04a72fbeca1f18f
- Merge "Test idempotence of reconfigure command in CI"
- Test idempotence of reconfigure command in CI
Idempotence isn't tested in CI and seems to have led to bugs,
especially in podman, where it would just break, and reconfiguring
would restart the entire cluster. Let's test it in CI to ensure
this doesn't happen.
Change-Id: I810fa1818bb9a0a11f200da2b782c2fde72f3b3a
Signed-off-by: Bertrand Lanson <bertrand.lanson@protonmail.com>
* Update kolla-ansible from branch 'master'
to fcfc5fe9a4adc0975bb9956eb7e7905f2cadab86
- Merge "Fix idempotence on podman volume comparison"
- Fix idempotence on podman volume comparison
Due to podman returning all mount option flags in Binds list,
The compare_volumes function could not be idempotent because some
flags would be skipped everytime, or analyzed when they shouldn't.
This new version fixes it by filtering out all default flags from podman
for both the requested and current volumes, making comparison
accurate. It also takes into account special privileged paths that have
the noexec flag added.
Closes-bug: #2131039
Change-Id: I173bcb2b1f8c5b81f8395924dfccf73b060100b9
Signed-off-by: Bertrand Lanson <bertrand.lanson@protonmail.com>
* Update kolla-ansible from branch 'master'
to 255271d24bccd10a8966793c0ecd595f53631c65
- Merge "Fix podman idempotence on comparing container dimensions"
- Fix podman idempotence on comparing container dimensions
Podman containers are created with default ulimites for RLIMIT_NOFILE
and RLIMIT_NPROC that are breaking idempotence for kolla_container in
check_container mode. We forbid users from setting them, so we should
also ignore them when checking dimensions to make the module idempotent.
Closes-bug: #2131038
Change-Id: If71589a666c4a3a8003a3419518fd7e4182c5e2b
Signed-off-by: Bertrand Lanson <bertrand.lanson@protonmail.com>
* Update placement from branch 'master'
to 5e61583504c4911ac862e1d0f2d7eb79e37066d0
- Merge "Fix compatibility with gabbi 4.x"
- Fix compatibility with gabbi 4.x
gabbi 4.x significantly reworked how interception happens [1]. One side
effect of this change is interception callable is now invoked during
test construction (via client creation [2], which is called by test
suite creation [3]) rather than during test execution. In placement, the
interception callable used is our WSGI app. This requires oslo.conf's
CONF singleton to be initialized first else we see errors like so:
=========================
Failures during discovery
=========================
--- import errors ---
Failed to call load_tests:
Traceback (most recent call last):
...
File ".../placement/placement/deploy.py", line 47, in deploy
if conf.api.auth_strategy == 'noauth2':
^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'api'
Because gabbi "creates" tests via the custom suite maker, it does not
appear to be possible to inject the Config fixture earlier in test
without breaking 'APIFixture' (which is currently responsible for doing
this). Instead, we opt to implement a "lazy" intercept function which
will only creation the app when actually invoked by a test.
[1] https://github.com/cdent/gabbi/commit/4d9d3b4
[2] https://github.com/cdent/gabbi/commit/4d9d3b4#diff-387442266e6c9ad9359689c282903e5b1e406bb31db94c5732384f8fb4ce45f2R36-R44
[3] https://github.com/cdent/gabbi/blob/4d9d3b4/gabbi/suitemaker.py#L59-L89
Change-Id: Ibf3a87bf986ed158dd049e72a329f643a87630e7
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
* Update designate-dashboard from branch 'master'
to efe5aa2bca9fe6d900163923db8e7e4682476552
- Merge "Imported Translations from Zanata"
- Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
Change-Id: Ic0504e60ee70b27c1e39b5efe2c022857d687d59
Signed-off-by: OpenStack Proposal Bot <openstack-infra@lists.openstack.org>
Generated-By: openstack/openstack-zuul-jobs:roles/prepare-zanata-client/files/common_translation_update.sh
* Update glance from branch 'master'
to 6009363d2a474c251f3953734b935e84c9c96c2d
- Merge "Avoid asserting internal processutils.execute call"
- Avoid asserting internal processutils.execute call
The method is indirectly called through processutils.trycmd, and
asserting call args can be easily broken by internal change in
oslo.concurrency (like [1]).
Assert the direct call interface instead.
[1] https://review.opendev.org/c/openstack/oslo.concurrency/+/967408
Change-Id: I01c771b8fdd4040eba5ae363265e44af59da8345
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update cinder from branch 'master'
to 9555cc8b6fcddf73b9eef705b4797c3374982d4d
- Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
Change-Id: I677e5f232c91bbcbfacbcecb399699a25609bfca
Signed-off-by: OpenStack Proposal Bot <openstack-infra@lists.openstack.org>
Generated-By: openstack/openstack-zuul-jobs:roles/prepare-zanata-client/files/common_translation_update.sh
* Update placement from branch 'master'
to ff0fc616be702ca56c007a1a3a03af90b147aa30
- Merge "Use cchardet>=2.2.0a2 for placement-perfload job"
- Use cchardet>=2.2.0a2 for placement-perfload job
The placement-perfload job is currently failing with the following
error because the current latest version of cchardet (2.1.7) does not
have support for Python 3.10, 3.11, and 3.12:
Building wheels for collected packages: cchardet
Building wheel for cchardet (pyproject.toml): started
Building wheel for cchardet (pyproject.toml): finished with status 'error'
error: subprocess-exited-with-error
× Building wheel for cchardet (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [17 lines of output]
running bdist_wheel
running build
running build_py
creating build/lib.linux-x86_64-cpython-312/cchardet
copying src/cchardet/__init__.py -> build/lib.linux-x86_64-cpython-312/cchardet
copying src/cchardet/version.py -> build/lib.linux-x86_64-cpython-312/cchardet
running build_ext
building 'cchardet._cchardet' extension
creating build/temp.linux-x86_64-cpython-312/src/cchardet
creating build/temp.linux-x86_64-cpython-312/src/ext/uchardet/src
creating build/temp.linux-x86_64-cpython-312/src/ext/uchardet/src/LangModels
x86_64-linux-gnu-g++ -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -fPIC -Isrc/ext/uchardet/src -I/home/zuul/src/opendev.org/openstack/placement/.placeload/include -I/usr/include/python3.12 -c src/cchardet/_cchardet.cpp -o build/temp.linux-x86_64-cpython-312/src/cchardet/_cchardet.o
src/cchardet/_cchardet.cpp:196:12: fatal error: longintrepr.h: No such file or directory
196 | #include "longintrepr.h"
| ^~~~~~~~~~~~~~~
compilation terminated.
error: command '/usr/bin/x86_64-linux-gnu-g++' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cchardet
This installs the alpha version which fixes it, for now.
Details in https://github.com/PyYoshi/cChardet/issues/81
Change-Id: I1ecd1bf54ef5aa68935e3f5809aed8de5cc2d79c
* Update openstack-helm from branch 'master'
to 134065b793c79b0fcae22d3d69adc7444c6c44ed
- Merge "[elasticsearch][kibana] Upgrade to v8.19.9"
- [elasticsearch][kibana] Upgrade to v8.19.9
+ use absolute paths for log files due to upstream changes
6876b8cf05
Change-Id: I544afed1ca99f184ed20c2dedc30834ec6e0aeeb
Signed-off-by: Arina Triandafilidi <atriandafilidi@mirantis.com>
* Update kolla-ansible from branch 'master'
to 53ff4641292603630bd82ba142e26a98e235ba42
- Merge "Fix idempotence on comparing capabilities for podman"
- Fix idempotence on comparing capabilities for podman
Currently, we add the AUDIT_WRITE capability for all unprivileged
podman containers. This causes a diff because the cap is popped from
params before comparing with the running container's actual values.
This patch fixes it by overriding compare_cap_add() to normalize
capability formats and account for auto-added AUDIT_WRITE, while
working around a bug in older Podman versions where AUDIT_WRITE
doesn't appear in the inspect API response.
Closes-bug: #2133434
Change-Id: I61fc50654fb06e041776fd394f6b1cab2f9903ba
Signed-off-by: Bertrand Lanson <bertrand.lanson@protonmail.com>
* Update designate-dashboard from branch 'master'
to 77ffb5bc1a1a05b7b83d0a4484dfcc217dba5d14
- Merge "Update master for stable/2025.2"
- Update master for stable/2025.2
Add file to the reno documentation build to show release notes for
stable/2025.2.
Use pbr instruction to increment the minor version number
automatically so that master versions are higher than the versions on
stable/2025.2.
Sem-Ver: feature
Change-Id: I241cc5b2c033ffb83e68e496b6d27a4c9972bfdd
Signed-off-by: OpenStack Release Bot <infra-root@openstack.org>
Generated-By: openstack/project-config:roles/copy-release-tools-scripts/files/release-tools/add_release_note_page.sh
* Update blazar-nova from branch 'master'
to 7cae7eafc33b79020d88224a62b4b414b84cc805
- Merge "tox: Drop basepython"
- tox: Drop basepython
Python 2 reached its EOL long time ago and we no longer expect any
user may attempt to run tox in Python 2.
Removing the option allows us to remove ignore_basepython_conflict and bump minimum version.
Change-Id: I0d41bf5f416b2b08039d87287bf668cb11c40606
Co-authored-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
* Update blazar-dashboard from branch 'master'
to 7a7e7e1ddd073a7cfc18d061de016ed8ab724d90
- Merge "Drop environments for nose"
- Drop environments for nose
Horizon dropped its usage of nose in 14.0.0[1] and these environments
have been unused since then.
[1] 1f80d94459856a8c477310cc0fe4b0e165d8c0c1
Also drop the VIRTUAL_ENV environment which is now automatically set
by tox.
Change-Id: Ie714348b7921a157159c3f1e2aefc97a2ef22067
Co-authored-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
* Update blazar-dashboard from branch 'master'
to 3c420f754472053a8575cded5ed0a37000926bf9
- Merge "tox: Drop basepython"
- tox: Drop basepython
Python 2 reached its EOL long time ago and we no longer expect any
user may attempt to run tox in Python 2.
Removing the option allows us to remove ignore_basepython_conflict.
Change-Id: Iffe5b1e44a909c531f7576e041b72f8ea3182542
Co-authored-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
* Update neutron-lib from branch 'master'
to 682cf9d57fa48e9c8ee70300495030a845d6b0b0
- Deprecate N536 check
It is equivalent to H203. Prefer the built-in one.
Change-Id: Ieadefa42d40c574a5a9004974b1509df4e5f7150
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update releases from branch 'master'
to 01b48d05713dd0003bd025bc1f466567cf495e26
- Merge "Add Oslo feature freeze"
- Add Oslo feature freeze
This patch adds Oslo project specific feature freeze for
2026.1 Gazpacho.
Change-Id: Ia06721136e291ed3a6bffc006f2d42e7eab8e59f
Signed-off-by: Előd Illés <elod.illes@est.tech>
* Update neutron-fwaas from branch 'master'
to ae14017e9c05508dd7a840cdaf2cf77a03f214f8
- Merge "Use common constants for firewall actions"
- Use common constants for firewall actions
... to replace hard-coded strings distributed.
Change-Id: I1fa38203e7c22840e76084faa9146920bc4dbe58
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update neutron-fwaas from branch 'master'
to 22a05c71ad2a0a13aeb5e14147857d2df315942c
- Merge "Accept only valid values for default ingress/egress action"
- Accept only valid values for default ingress/egress action
Catch any unsupported values while loading config files to avoid
problems in API processing.
Change-Id: I4bf241e88b3679fe18ab41f7bb114e464637513d
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update neutron-fwaas from branch 'master'
to 82c49a784111f8b75e651d017154b0a99a9057dc
- Merge "Drop redundant description of default values"
- Drop redundant description of default values
These are added to example config file automatically, according to
the default value defined in code.
Change-Id: If735e88ed9f2c3b91698336b44efb4e893b73785
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update neutron-vpnaas from branch 'master'
to bfd3f05c352334928d02be99401c96a9806c49fb
- pep8: Enable N535 eventlet checking hacking rule
With [1] eventlet usage was removed from vpnaas, so
it is safe to enable the hacking check for eventlet import.
[1]: https://review.opendev.org/c/openstack/neutron-vpnaas/+/956012
Change-Id: I688d50e38f1253b1b2a416ca9fd6f8998cb1f293
Signed-off-by: lajoskatona <lajos.katona@est.tech>
* Update neutron-vpnaas from branch 'master'
to 3b7bd4ffb13b57e4ee345109975bca598553c824
- Change test code to use project_id key
Related-Bug: #2137489
Change-Id: If3173712594f71ea411a6940eed5f0e326f40e38
Signed-off-by: lajoskatona <lajos.katona@est.tech>
* Update releases from branch 'master'
to 1a8b6c59384a871afd038eb558637d14558d04dd
- Merge "Release oslo.policy for Gazpacho-2 milestone"
- Release oslo.policy for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for oslo.policy.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I475e899a7f3039f45807e4e480987ce9ec7a537d
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to bbd205153089870b24713f1667b01c729446e5d5
- Merge "Release oslo.concurrency for Gazpacho-2 milestone"
- Release oslo.concurrency for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for oslo.concurrency.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I1774035b33181269a7b36e913343906144f8de15
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to 8578d0bf1dfa0a66e39c5bd3b8edcbd209f27960
- Merge "Release oslo.config for Gazpacho-2 milestone"
- Release oslo.config for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for oslo.config.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: Iaeb193cbd4567658af35582289faf9f1b64e4496
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to d17583046d4afbf0f4493cbcc52b8d94ea0d0be5
- Merge "Release python-adjutantclient for Gazpacho-2 milestone"
- Release python-adjutantclient for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for python-adjutantclient.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I96a4e3d4a667b81256dc1a2ba77a23f5a1bf6f5a
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to 49d35cd575a48be9d348e43ad52e8226d1d255b0
- Merge "Release python-manilaclient for Gazpacho-2 milestone"
- Release python-manilaclient for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for python-manilaclient.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I0f43d91f7c8c723698fab68636486682cd6838ef
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update neutron-fwaas from branch 'master'
to cd96ba8b8d621411232357a64ab22452a2d5665c
- Merge "Remove leftover of FWaaS v1"
- Remove leftover of FWaaS v1
... because FWaaS v1 was removed long ago by [1] in favor of FWaaS v2.
[1] 0e968fa0c7b03d44e37b08389dcc0366d883fac2
Change-Id: Ida1bd14b6481260c8338f3e39464cc632a87c50b
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
* Update releases from branch 'master'
to a1d2d77986017c37fdf2aae4e1fbe790ba8dbdf0
- Merge "Release oslo.messaging for Gazpacho-2 milestone"
- Release oslo.messaging for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for oslo.messaging.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I8e794c154472e6200b85e7db226af2588573d73a
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to 133e424684a82316db2359ce198bda41d22109b5
- Merge "Release python-zaqarclient for Gazpacho-2 milestone"
- Release python-zaqarclient for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for python-zaqarclient.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I86a34ba4c54219e291afb134b22e0cea53506311
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to 32f6b2fa40f849adeda45323b1f0c3cc4f0f158f
- Merge "Release python-neutronclient for Gazpacho-2 milestone"
- Release python-neutronclient for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for python-neutronclient.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I9498cb7aa263580ab8ef1b0f567f004fbeb91a1f
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh
* Update releases from branch 'master'
to a097cd90971ed0f0c487882bb71522c3b78608e7
- Release python-openstackclient for Gazpacho-2 milestone
This is the Gazpacho-2 milestone release for python-openstackclient.
Clients and libraries following the cycle-with-intermediary release
model are encouraged to release each milestone to make sure updates
are made available.
If the team is happy with the current release hash, please +1 this
patch and we will process the release. If you need to get some
important changes merged first, leave a -1 and update the patch with
a new commit hash to use once it is ready.
If a release is definitely not wanted at this time, please -1 and
leave a comment explaining that and we can abandon the patch.
Any patches with no response will be assumed to be OK and will be
processed after January 8th.
Change-Id: I315d9fcf15ed4a247f9f3a081e426638c661e9fa
Signed-off-by: Elod Illes <elod.illes@est.tech>
Generated-By: openstack/releases:tools/process_auto_releases.sh