Commit Graph

122 Commits

Author SHA1 Message Date
Zuul 47f8c9b3da Merge "reno: Update master for unmaintained/zed" 2024-05-06 22:53:28 +00:00
Zuul 0322825daf Merge "Update master for stable/2023.1" 2024-05-06 19:38:10 +00:00
OpenStack Release Bot 102ca5ac22 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: Ifc6722acac43866f492acaa8c648fa32e822f158
2024-05-02 10:17:41 +09:00
OpenStack Release Bot 58cacf2be5 reno: Update master for unmaintained/zed
Update the zed release notes configuration to build from
unmaintained/zed.

Change-Id: I9f727d10c56a8976ffee4748a0815dd6bc5c605b
2024-04-26 16:14:09 +00:00
Zuul f8369d6986 Merge "reno: Update master for unmaintained/victoria" 2024-04-25 18:16:40 +00:00
Zuul f2b1624217 Merge "Support authentication with Redis Sentinel" 2024-04-23 10:33:58 +00:00
Zuul b0d1277957 Merge "redis: Add username" 2024-04-23 08:42:22 +00:00
Zuul b6186b7fe6 Merge "reno: Update master for unmaintained/wallaby" 2024-04-22 17:47:19 +00:00
Zuul 9db516f28f Merge "reno: Update master for unmaintained/xena" 2024-04-22 17:37:16 +00:00
Takashi Kajinami fbe83c8a7b Support authentication with Redis Sentinel
... so that users can enable authentication in both Redis and Redis
Sentinel.

Change-Id: I3e68e23cf89081cca829d4f78f1d1b35a11d9496
2024-04-19 22:16:58 +00:00
Takashi Kajinami a45f70e938 redis: Add username
Redis introduced ACL feature in 4.0.0, and this feature is supported by
redis-py since 3.4.0[1]. When ACL is enabled, authentication requires
username in addition to password.

This also fixes how password is parsed from uri string. The parameter
description has saied that password should be passed in the following
format
 redis://[:<password>]<host>...
but the actual format current code expects is
 redis://[<password>]<host>...
which is not compliant with standard URL format.

[1] 8df8cd54d1

Change-Id: I55f268eea13c7b45dceae85cfac86f3fb1562f1a
2024-04-19 22:16:45 +00:00
OpenStack Release Bot ad8a855dd3 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: I3322daa58e49a26b4a1c288a3e63c138cf423d2d
2024-04-15 02:23:17 +00:00
OpenStack Release Bot c03d128271 reno: Update master for unmaintained/xena
Update the xena release notes configuration to build from
unmaintained/xena.

Change-Id: Iaab3c9388995a4124ffdebe2e6ff4ca3bfced48f
2024-03-05 18:25:00 +00:00
OpenStack Release Bot 3cdfd5fab9 reno: Update master for unmaintained/wallaby
Update the wallaby release notes configuration to build from
unmaintained/wallaby.

Change-Id: I7faa6dd80cb35aa26561b3327a4dbd366ed42153
2024-03-05 18:24:26 +00:00
OpenStack Release Bot c53658cabb reno: Update master for unmaintained/victoria
Update the victoria release notes configuration to build from
unmaintained/victoria.

Change-Id: I142696fffa51603b89ffa8a82a79d4ba2861162e
2024-03-05 18:23:52 +00:00
OpenStack Release Bot f246df12e5 reno: Update master for unmaintained/yoga
Update the yoga release notes configuration to build from
unmaintained/yoga.

Change-Id: I3f3c8912006866e595ba3aa67abb0d906418bb5e
2024-02-05 15:53:04 +00:00
OpenStack Proposal Bot 333517e796 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I369a332154775ffa66c0c8aaf6a5cfcd141cbfad
2023-12-29 04:20:18 +00:00
OpenStack Release Bot f5230aa5e3 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: Ia900bd481c74b84b0ebd06884916693143851571
2023-09-15 14:06:30 +00:00
Tobias Urdin 928dfc618e Change StrictRedis usage to Redis
The StrictRedis class is only an alias for
Redis in >= 3.0.0

Change-Id: I5136852af5d0b4dc3542948a4114e06f0e4a0060
2023-03-10 21:03:42 +00:00
Zuul c7ff5ee8cf Merge "remove unicode prefix from code" 2022-09-16 07:51:19 +00:00
OpenStack Release Bot 95852e2d5b 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: I71b02bc7a535678dab6a2808aa8fae4de7782dc1
2022-09-15 15:59:02 +00:00
niuke 4a035775a0 remove unicode prefix from code
Change-Id: Ib26f5d6b8415fdf454783b7120434ffd43ed5559
2022-08-15 10:05:54 +08:00
OpenStack Release Bot 175a56e339 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: I9a4cf8fe5121378e50e43654fc005ab27a35d027
2022-03-11 11:54:56 +00:00
wanghao 0f6ddd5709 Fix tempest error
pymongo has removed the ensure_index since 4.0.0.
So we need to update ensure_index to create_index
Fix the error that couldn't create subscription sucessfully.

Change-Id: Ic27e6e885ec5a575ebc168d91eee761177013b9d
2021-12-14 09:19:27 +08:00
wanghao bd1719c472 Add release notes for xena
Change-Id: Ic3230bf65d7c206071ebacd5a23410d05d1fdc7b
2021-10-08 11:03:20 +08:00
wanghao 7344381344 Add release notes foldler for wallaby
Add release notes folder

Change-Id: I3c734f4e82e2d3d5b4b311d4371ae38c950d02e6
2021-04-19 09:55:19 +08:00
wanghao 9b6edcf6ca Support extra specs to subscription confirming
Introduce "EXTRA-SPEC" request header to handling
the extra information when confirming subscription.
Developer could extend the tasks to support more functions.
User needs to specify the task name in value of "EXTRA-SPEC".

Change-Id: I9bca9a772d0f5a37c0d780c320ea2307c745a1e8
Implements: blueprint support-extra-specs-to-subscription-confirming
2021-03-17 17:47:45 +08:00
Zuul 6b6d90c3b7 Merge "Imported Translations from Zanata" 2021-03-12 06:56:15 +00:00
Ghanshyam Mann 948e88c268 [goal] Deprecate the JSON formatted policy file
As per the community goal of migrating the policy file
the format from JSON to YAML[1], we need to do two things:

1. Change the default value of '[oslo_policy] policy_file''
config option from 'policy.json' to 'policy.yaml' with
upgrade checks.

2. Deprecate the JSON formatted policy file on the project side
via warning in doc and releasenotes.

Also replace policy.json to policy.yaml ref from doc and tests.

[1]https://governance.openstack.org/tc/goals/selected/wallaby/migrate-policy-format-from-json-to-yaml.html

Change-Id: I595b8c7cad7bb02486c8f0dd29fdc40789fc8e50
2021-02-17 00:58:28 +00:00
OpenStack Proposal Bot 8a457497d8 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I072ef69111e6d7f66d19df88d86f8b20dbb71be2
2021-01-15 10:09:10 +00:00
Zuul 60cd2da34f Merge "Update master for stable/victoria" 2020-10-01 03:47:40 +00:00
wanghao 0e435a3522 Add releasenotes for victoria
Change-Id: I99ee33ff4db84084da19dee448484f6e54209673
2020-09-27 09:36:23 +08:00
OpenStack Release Bot f52643dc53 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: Iadecd39d0ef76e87a4389d38864a681706c7249d
Sem-Ver: feature
2020-09-23 14:38:46 +00:00
wanghao e12c65a369 Encrypted Messages in Queue
The queue in Zaqar will support to encrypt
messages before storing them into storage backends,
also could support to decrypt messages when those
are claimed by consumer. This feature will enhance
the security of messaging service.

Implements: blueprint encrypted-messages-in-queue
Signed-off-by: wanghao <sxmatch1986@gmail.com>
Change-Id: Icecfb9a232cfeefc2f9603934696bb2dcd56bc9c
2020-07-23 14:07:54 +08:00
melissaml e195c8112b 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.

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.

Remove docs requirements from lower-constraints, they are not
needed during install or test but only for docs building.

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.

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

Change-Id: Ie623e7a2389c292ffc71a285f0fc2d4bb9820c3f
2020-05-26 14:03:34 +08:00
wanghao 699bbff966 Add realeasenotes index for ussuri cycle
Change-Id: Ia2de10db5f33de83b5e09556b175c71466d3bf2f
2020-05-15 09:22:09 +08:00
Andreas Jaeger b6e1688b24 Doc cleanups
Switch to newer openstackdocstheme and remove settings that
are default now.

Change-Id: I27895a6fb91ba3be37831a697098718082eec00f
2020-05-13 17:49:28 +08:00
wanghao 7aa2522e3d Support query queues with count
Zaqar will support query queues with 'with_count' to
return the amount of the queues. This will help users to
quickly get the exact total number of queues which they own.

Change-Id: I1d2cdc802ecd76c01671cd5660ae79dd39505d43
Implements: blueprint query-queues-with-count
Signed-off-by: wanghao <sxmatch1986@gmail.com>
2020-01-10 14:52:10 +08:00
Ghanshyam Mann 22ade4fa77 [ussuri][goal] Drop python 2.7 support and testing
OpenStack is dropping the py2.7 support in ussuri cycle.

Zaqar is ready with python 3 and ok to drop the
python 2.7 support.

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

Depends-On: https://review.opendev.org/#/c/693631/

Change-Id: I0fde9d2f16f3cc77be3d4cab482fa0fb7ab9e7fc
2019-12-13 00:22:57 +00:00
OpenStack Release Bot e443cf6a25 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: I482fbdae6fc44a64ad2baa18bbb3897aa4c4f60a
Sem-Ver: feature
2019-09-25 09:07:24 +00:00
OpenStack Proposal Bot 0a5f0ed5d9 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I9d91a31798aaaa54fa0edb6adb98d6130cfe4249
2019-07-08 06:23:10 +00:00
Zuul 8c44135374 Merge "Imported Translations from Zanata" 2019-06-05 11:34:05 +00:00
OpenStack Release Bot ddd6338b66 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: I6fbfa3862a6cc4b9135f33144e096634d44d3ef8
Sem-Ver: feature
2019-06-05 00:39:25 +00:00
OpenStack Proposal Bot e52889fe7c Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I1320837fc4bf5201af089b3a284e2c80441a0e59
2019-05-06 09:23:34 +00:00
Zuul cf01152b3a Merge "Introduce the Topic resource into Zaqar-1" 2019-03-19 07:45:20 +00:00
wanghao 88f0dd7c8f Introduce the Topic resource into Zaqar-1
This patch will Introduce the Topic resource into Zaqar
and implement the storage in mongodb.

Change-Id: I6d37c93aa75d7df78d3939044b0e8fefa5d9a5f5
Implements: bp introduce-topic-resource-for-notification
2019-03-07 10:16:39 +08:00
gecong1973 d1a01d5919 Add releasenotes for bp remove-pool-group-totally
Change-Id: I8f69e8eb21271d2265199838fcf0b16a87b8bc2d
2019-03-05 22:55:01 -08:00
OpenStack Proposal Bot 56390fe51f Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I4752ba84fce488de25b5a0b109fb465888a5dbc4
2019-02-01 08:08:28 +00:00
Zuul 3942dd87e3 Merge "Support delete messages with claim_ids" 2018-12-24 04:43:11 +00:00
whoami-rajat 37fc134d11 Add zaqar-status upgrade check command framework
This adds basic framework for zaqar-status upgrade
check commands. For now it has only "check_placeholder"
check implemented.
Real checks can be added to this tool in the future.

Change-Id: I855b4b72284df308c3bb250fd3a3f0fc643b4abf
Story: 2003657
Task: 26165
2018-12-12 06:08:06 +00:00