swift 2.23.3__py3-none-any.whl → 2.35.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. swift/__init__.py +29 -50
  2. swift/account/auditor.py +21 -118
  3. swift/account/backend.py +33 -28
  4. swift/account/reaper.py +37 -28
  5. swift/account/replicator.py +22 -0
  6. swift/account/server.py +60 -26
  7. swift/account/utils.py +28 -11
  8. swift-2.23.3.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
  9. swift-2.23.3.data/scripts/swift-config → swift/cli/config.py +2 -2
  10. swift/cli/container_deleter.py +5 -11
  11. swift-2.23.3.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
  12. swift/cli/dispersion_report.py +10 -9
  13. swift-2.23.3.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
  14. swift/cli/form_signature.py +3 -7
  15. swift-2.23.3.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
  16. swift/cli/info.py +154 -14
  17. swift/cli/manage_shard_ranges.py +705 -37
  18. swift-2.23.3.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
  19. swift-2.23.3.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
  20. swift/cli/recon.py +196 -67
  21. swift-2.23.3.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
  22. swift-2.23.3.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
  23. swift/cli/relinker.py +807 -126
  24. swift/cli/reload.py +135 -0
  25. swift/cli/ringbuilder.py +217 -20
  26. swift/cli/ringcomposer.py +0 -1
  27. swift/cli/shard-info.py +4 -3
  28. swift/common/base_storage_server.py +9 -20
  29. swift/common/bufferedhttp.py +48 -74
  30. swift/common/constraints.py +20 -15
  31. swift/common/container_sync_realms.py +9 -11
  32. swift/common/daemon.py +25 -8
  33. swift/common/db.py +195 -128
  34. swift/common/db_auditor.py +168 -0
  35. swift/common/db_replicator.py +95 -55
  36. swift/common/digest.py +141 -0
  37. swift/common/direct_client.py +144 -33
  38. swift/common/error_limiter.py +93 -0
  39. swift/common/exceptions.py +25 -1
  40. swift/common/header_key_dict.py +2 -9
  41. swift/common/http_protocol.py +373 -0
  42. swift/common/internal_client.py +129 -59
  43. swift/common/linkat.py +3 -4
  44. swift/common/manager.py +284 -67
  45. swift/common/memcached.py +390 -145
  46. swift/common/middleware/__init__.py +4 -0
  47. swift/common/middleware/account_quotas.py +211 -46
  48. swift/common/middleware/acl.py +3 -8
  49. swift/common/middleware/backend_ratelimit.py +230 -0
  50. swift/common/middleware/bulk.py +22 -34
  51. swift/common/middleware/catch_errors.py +1 -3
  52. swift/common/middleware/cname_lookup.py +6 -11
  53. swift/common/middleware/container_quotas.py +1 -1
  54. swift/common/middleware/container_sync.py +39 -17
  55. swift/common/middleware/copy.py +12 -0
  56. swift/common/middleware/crossdomain.py +22 -9
  57. swift/common/middleware/crypto/__init__.py +2 -1
  58. swift/common/middleware/crypto/crypto_utils.py +11 -15
  59. swift/common/middleware/crypto/decrypter.py +28 -11
  60. swift/common/middleware/crypto/encrypter.py +12 -17
  61. swift/common/middleware/crypto/keymaster.py +8 -15
  62. swift/common/middleware/crypto/kms_keymaster.py +2 -1
  63. swift/common/middleware/dlo.py +15 -11
  64. swift/common/middleware/domain_remap.py +5 -4
  65. swift/common/middleware/etag_quoter.py +128 -0
  66. swift/common/middleware/formpost.py +73 -70
  67. swift/common/middleware/gatekeeper.py +8 -1
  68. swift/common/middleware/keystoneauth.py +33 -3
  69. swift/common/middleware/list_endpoints.py +4 -4
  70. swift/common/middleware/listing_formats.py +85 -49
  71. swift/common/middleware/memcache.py +4 -95
  72. swift/common/middleware/name_check.py +3 -2
  73. swift/common/middleware/proxy_logging.py +160 -92
  74. swift/common/middleware/ratelimit.py +17 -10
  75. swift/common/middleware/read_only.py +6 -4
  76. swift/common/middleware/recon.py +59 -22
  77. swift/common/middleware/s3api/acl_handlers.py +25 -3
  78. swift/common/middleware/s3api/acl_utils.py +6 -1
  79. swift/common/middleware/s3api/controllers/__init__.py +6 -0
  80. swift/common/middleware/s3api/controllers/acl.py +3 -2
  81. swift/common/middleware/s3api/controllers/bucket.py +242 -137
  82. swift/common/middleware/s3api/controllers/logging.py +2 -2
  83. swift/common/middleware/s3api/controllers/multi_delete.py +43 -20
  84. swift/common/middleware/s3api/controllers/multi_upload.py +219 -133
  85. swift/common/middleware/s3api/controllers/obj.py +112 -8
  86. swift/common/middleware/s3api/controllers/object_lock.py +44 -0
  87. swift/common/middleware/s3api/controllers/s3_acl.py +2 -2
  88. swift/common/middleware/s3api/controllers/tagging.py +57 -0
  89. swift/common/middleware/s3api/controllers/versioning.py +36 -7
  90. swift/common/middleware/s3api/etree.py +22 -9
  91. swift/common/middleware/s3api/exception.py +0 -4
  92. swift/common/middleware/s3api/s3api.py +113 -41
  93. swift/common/middleware/s3api/s3request.py +384 -218
  94. swift/common/middleware/s3api/s3response.py +126 -23
  95. swift/common/middleware/s3api/s3token.py +16 -17
  96. swift/common/middleware/s3api/schema/delete.rng +1 -1
  97. swift/common/middleware/s3api/subresource.py +7 -10
  98. swift/common/middleware/s3api/utils.py +27 -10
  99. swift/common/middleware/slo.py +665 -358
  100. swift/common/middleware/staticweb.py +64 -37
  101. swift/common/middleware/symlink.py +51 -18
  102. swift/common/middleware/tempauth.py +76 -58
  103. swift/common/middleware/tempurl.py +191 -173
  104. swift/common/middleware/versioned_writes/__init__.py +51 -0
  105. swift/common/middleware/{versioned_writes.py → versioned_writes/legacy.py} +27 -26
  106. swift/common/middleware/versioned_writes/object_versioning.py +1482 -0
  107. swift/common/middleware/x_profile/exceptions.py +1 -4
  108. swift/common/middleware/x_profile/html_viewer.py +18 -19
  109. swift/common/middleware/x_profile/profile_model.py +1 -2
  110. swift/common/middleware/xprofile.py +10 -10
  111. swift-2.23.3.data/scripts/swift-container-server → swift/common/recon.py +13 -8
  112. swift/common/registry.py +147 -0
  113. swift/common/request_helpers.py +324 -57
  114. swift/common/ring/builder.py +67 -25
  115. swift/common/ring/composite_builder.py +1 -1
  116. swift/common/ring/ring.py +177 -51
  117. swift/common/ring/utils.py +1 -1
  118. swift/common/splice.py +10 -6
  119. swift/common/statsd_client.py +205 -0
  120. swift/common/storage_policy.py +49 -44
  121. swift/common/swob.py +86 -102
  122. swift/common/{utils.py → utils/__init__.py} +2163 -2772
  123. swift/common/utils/base.py +131 -0
  124. swift/common/utils/config.py +433 -0
  125. swift/common/utils/ipaddrs.py +256 -0
  126. swift/common/utils/libc.py +345 -0
  127. swift/common/utils/logs.py +859 -0
  128. swift/common/utils/timestamp.py +412 -0
  129. swift/common/wsgi.py +553 -535
  130. swift/container/auditor.py +14 -100
  131. swift/container/backend.py +490 -231
  132. swift/container/reconciler.py +126 -37
  133. swift/container/replicator.py +96 -22
  134. swift/container/server.py +358 -165
  135. swift/container/sharder.py +1540 -684
  136. swift/container/sync.py +94 -88
  137. swift/container/updater.py +53 -32
  138. swift/obj/auditor.py +153 -35
  139. swift/obj/diskfile.py +466 -217
  140. swift/obj/expirer.py +406 -124
  141. swift/obj/mem_diskfile.py +7 -4
  142. swift/obj/mem_server.py +1 -0
  143. swift/obj/reconstructor.py +523 -262
  144. swift/obj/replicator.py +249 -188
  145. swift/obj/server.py +207 -122
  146. swift/obj/ssync_receiver.py +145 -85
  147. swift/obj/ssync_sender.py +113 -54
  148. swift/obj/updater.py +652 -139
  149. swift/obj/watchers/__init__.py +0 -0
  150. swift/obj/watchers/dark_data.py +213 -0
  151. swift/proxy/controllers/account.py +11 -11
  152. swift/proxy/controllers/base.py +848 -604
  153. swift/proxy/controllers/container.py +433 -92
  154. swift/proxy/controllers/info.py +3 -2
  155. swift/proxy/controllers/obj.py +1000 -489
  156. swift/proxy/server.py +185 -112
  157. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/AUTHORS +58 -11
  158. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/METADATA +51 -56
  159. swift-2.35.0.dist-info/RECORD +201 -0
  160. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
  161. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
  162. swift-2.35.0.dist-info/pbr.json +1 -0
  163. swift/locale/de/LC_MESSAGES/swift.po +0 -1216
  164. swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
  165. swift/locale/es/LC_MESSAGES/swift.po +0 -1085
  166. swift/locale/fr/LC_MESSAGES/swift.po +0 -909
  167. swift/locale/it/LC_MESSAGES/swift.po +0 -894
  168. swift/locale/ja/LC_MESSAGES/swift.po +0 -965
  169. swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
  170. swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
  171. swift/locale/ru/LC_MESSAGES/swift.po +0 -891
  172. swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
  173. swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
  174. swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
  175. swift-2.23.3.data/scripts/swift-account-auditor +0 -23
  176. swift-2.23.3.data/scripts/swift-account-info +0 -51
  177. swift-2.23.3.data/scripts/swift-account-reaper +0 -23
  178. swift-2.23.3.data/scripts/swift-account-replicator +0 -34
  179. swift-2.23.3.data/scripts/swift-account-server +0 -23
  180. swift-2.23.3.data/scripts/swift-container-auditor +0 -23
  181. swift-2.23.3.data/scripts/swift-container-info +0 -55
  182. swift-2.23.3.data/scripts/swift-container-reconciler +0 -21
  183. swift-2.23.3.data/scripts/swift-container-replicator +0 -34
  184. swift-2.23.3.data/scripts/swift-container-sharder +0 -37
  185. swift-2.23.3.data/scripts/swift-container-sync +0 -23
  186. swift-2.23.3.data/scripts/swift-container-updater +0 -23
  187. swift-2.23.3.data/scripts/swift-dispersion-report +0 -24
  188. swift-2.23.3.data/scripts/swift-form-signature +0 -20
  189. swift-2.23.3.data/scripts/swift-init +0 -119
  190. swift-2.23.3.data/scripts/swift-object-auditor +0 -29
  191. swift-2.23.3.data/scripts/swift-object-expirer +0 -33
  192. swift-2.23.3.data/scripts/swift-object-info +0 -60
  193. swift-2.23.3.data/scripts/swift-object-reconstructor +0 -33
  194. swift-2.23.3.data/scripts/swift-object-relinker +0 -41
  195. swift-2.23.3.data/scripts/swift-object-replicator +0 -37
  196. swift-2.23.3.data/scripts/swift-object-server +0 -27
  197. swift-2.23.3.data/scripts/swift-object-updater +0 -23
  198. swift-2.23.3.data/scripts/swift-proxy-server +0 -23
  199. swift-2.23.3.data/scripts/swift-recon +0 -24
  200. swift-2.23.3.data/scripts/swift-ring-builder +0 -24
  201. swift-2.23.3.data/scripts/swift-ring-builder-analyzer +0 -22
  202. swift-2.23.3.data/scripts/swift-ring-composer +0 -22
  203. swift-2.23.3.dist-info/RECORD +0 -220
  204. swift-2.23.3.dist-info/pbr.json +0 -1
  205. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/LICENSE +0 -0
  206. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  Maintainer
2
2
  ----------
3
3
  OpenStack Foundation
4
- IRC: #openstack on irc.freenode.net
4
+ IRC: #openstack on irc.oftc.net
5
5
 
6
6
  Original Authors
7
7
  ----------------
@@ -32,12 +32,15 @@ Janie Richling (jrichli@us.ibm.com)
32
32
  Michael Barton (mike@weirdlooking.com)
33
33
  Mahati Chamarthy (mahati.chamarthy@gmail.com)
34
34
  Samuel Merritt (sam@swiftstack.com)
35
- Alistair Coles (alistairncoles@gmail.com)
35
+ Romain Le Disez (romain.ledisez@ovh.net)
36
36
 
37
37
  Contributors
38
38
  ------------
39
39
  Aaron Rosen (arosen@nicira.com)
40
+ Ade Lee (alee@redhat.com)
40
41
  Adrian Smith (adrian_f_smith@dell.com)
42
+ Adrien Pensart (adrien.pensart@corp.ovh.com)
43
+ afariasa (afariasa@redhat.com)
41
44
  Akihiro Motoki (amotoki@gmail.com)
42
45
  Akihito Takai (takaiak@nttdata.co.jp)
43
46
  Alex Gaynor (alex.gaynor@gmail.com)
@@ -45,6 +48,7 @@ Alex Holden (alex@alexjonasholden.com)
45
48
  Alex Pecoraro (alex.pecoraro@emc.com)
46
49
  Alex Szarka (szarka@inf.u-szeged.hu)
47
50
  Alex Yang (alex890714@gmail.com)
51
+ Alexander Fadeev (fadeevab.com@gmail.com)
48
52
  Alexandra Settle (asettle@suse.com)
49
53
  Alexandre Lécuyer (alexandre.lecuyer@corp.ovh.com)
50
54
  Alfredo Moralejo (amoralej@redhat.com)
@@ -55,12 +59,17 @@ Andrew Hale (andy@wwwdata.eu)
55
59
  Andrew Welleck (awellec@us.ibm.com)
56
60
  Andy McCrae (andy.mccrae@gmail.com)
57
61
  Anh Tran (anhtt@vn.fujitsu.com)
62
+ Anish Kachinthaya (anishk23733@gmail.com)
58
63
  Ankur Gupta (ankur.gupta@intel.com)
59
64
  Anne Gentle (anne@openstack.org)
65
+ aolivo (aolivo@blizzard.com)
60
66
  Arnaud JOST (arnaud.jost@ovh.net)
61
67
  arzhna (arzhna@gmail.com)
68
+ Ashwin Nair (nairashwin952013@gmail.com)
62
69
  Atsushi Sakai (sakaia@jp.fujitsu.com)
70
+ Aymeric Ducroquetz (aymeric.ducroquetz@ovhcloud.com)
63
71
  Azhagu Selvan SP (tamizhgeek@gmail.com)
72
+ Azmain Adib (adib1905@gmail.com)
64
73
  baiwenteng (baiwenteng@inspur.com)
65
74
  Ben Keller (bjkeller@us.ibm.com)
66
75
  Ben Martin (blmartin@us.ibm.com)
@@ -77,6 +86,7 @@ Brian Reitz (brian.reitz@oracle.com)
77
86
  Bryan Keller (kellerbr@us.ibm.com)
78
87
  Béla Vancsics (vancsics@inf.u-szeged.hu)
79
88
  Caleb Tennis (caleb.tennis@gmail.com)
89
+ Callum Dickinson (callum.dickinson@catalystcloud.nz)
80
90
  Cao Xuan Hoang (hoangcx@vn.fujitsu.com)
81
91
  Carlos Cavanna (ccavanna@ca.ibm.com)
82
92
  Catherine Northcott (catherine@northcott.nz)
@@ -90,7 +100,10 @@ cheng (li.chenga@h3c.com)
90
100
  Cheng Li (shcli@cn.ibm.com)
91
101
  chengebj5238 (chengebj@inspur.com)
92
102
  chenxiangui (chenxiangui@inspur.com)
103
+ Chetan Mishra (chetan.s115@gmail.com)
104
+ Chinemerem Chigbo (chinemeremchigbo@Outlook.com)
93
105
  Chmouel Boudjnah (chmouel@enovance.com)
106
+ Chris Smart (distroguy@gmail.com)
94
107
  Chris Wedgwood (cw@f00f.org)
95
108
  Christian Berendt (berendt@b1-systems.de)
96
109
  Christian Hugo (hugo.christian@web.de)
@@ -110,6 +123,7 @@ Cory Wright (cory.wright@rackspace.com)
110
123
  Cristian A Sanchez (cristian.a.sanchez@intel.com)
111
124
  CY Chiang (cychiang@cht.com.tw)
112
125
  Cyril Roelandt (cyril@redhat.com)
126
+ Daanish Khan (daanish1337@gmail.com)
113
127
  Dae S. Kim (dae@velatum.com)
114
128
  Daisuke Morita (morita.daisuke@ntti3.com)
115
129
  Dan Dillinger (dan.dillinger@sonian.net)
@@ -137,9 +151,11 @@ Dmitriy Ukhlov (dukhlov@mirantis.com)
137
151
  Dmitry Ukov (dukov@mirantis.com)
138
152
  Dolph Mathews (dolph.mathews@gmail.com)
139
153
  Donagh McCabe (donagh.mccabe@gmail.com)
154
+ dongu (gmj03003@gmail.com)
140
155
  Doron Chen (cdoron@il.ibm.com)
141
156
  Doug Hellmann (doug@doughellmann.com)
142
157
  Doug Weimer (dweimer@gmail.com)
158
+ Dr. Jens Harbott (harbott@osism.tech)
143
159
  Dragos Manolescu (dragosm@hp.com)
144
160
  Drew Balfour (andrew.balfour@oracle.com)
145
161
  Eamonn O'Toole (eamonn.otoole@hpe.com)
@@ -147,6 +163,7 @@ Ed Leafe (ed.leafe@rackspace.com)
147
163
  Edward Hope-Morley (opentastic@gmail.com)
148
164
  Ehud Kaldor (ehud@unfairfunction.org)
149
165
  Ellen Leahy (ellen.mar.leahy@hpe.com)
166
+ Elod Illes (elod.illes@est.tech)
150
167
  Emett Speer (speer.emett@gmail.com)
151
168
  Emile Snyder (emile.snyder@gmail.com)
152
169
  Emmanuel Cazenave (contact@emcaz.fr)
@@ -162,6 +179,7 @@ Ferenc Horváth (hferenc@inf.u-szeged.hu)
162
179
  Filippo Giunchedi (fgiunchedi@wikimedia.org)
163
180
  Flavio Percoco (flaper87@gmail.com)
164
181
  Florent Flament (florent.flament-ext@cloudwatt.com)
182
+ Florent Vennetier (florent.vennetier@ovhcloud.com)
165
183
  Florian Hines (syn@ronin.io)
166
184
  François Charlier (francois.charlier@enovance.com)
167
185
  Fujita Tomonori (fujita.tomonori@lab.ntt.co.jp)
@@ -192,6 +210,7 @@ Hanxi Liu (hanxi.liu@easystack.cn)
192
210
  Harshada Mangesh Kakad (harshadak@metsi.co.uk)
193
211
  Harshit Chitalia (harshit@acelio.com)
194
212
  HCLTech-SSW (hcl_ss_oss@hcl.com)
213
+ Hervé Beraud (hberaud@redhat.com)
195
214
  hgangwx (hgangwx@cn.ibm.com)
196
215
  Hisashi Osanai (osanai.hisashi@gmail.com)
197
216
  Hodong Hwang (hodong.hwang@kt.com)
@@ -203,7 +222,9 @@ Hugo Kuo (tonytkdk@gmail.com)
203
222
  Ilya Kharin (ikharin@mirantis.com)
204
223
  Ionuț Arțăriși (iartarisi@suse.cz)
205
224
  Iryoung Jeong (iryoung@gmail.com)
225
+ its-not-a-bug-its-a-feature (david.cole@sohonet.com)
206
226
  Jaivish Kothari (jaivish.kothari@nectechnologies.in)
227
+ Jake Yip (jake.yip@ardc.edu.au)
207
228
  James E. Blair (jeblair@openstack.org)
208
229
  James Page (james.page@ubuntu.com)
209
230
  Jamie Lennox (jlennox@redhat.com)
@@ -217,7 +238,10 @@ Jesse Andrews (anotherjesse@gmail.com)
217
238
  Ji-Wei (ji.wei3@zte.com.cn)
218
239
  Jian Zhang (jian.zhang@intel.com)
219
240
  Jiangmiao Gao (tolbkni@gmail.com)
241
+ Jianjian Huo (jhuo@nvidia.com)
242
+ jiaqi07 (wangjiaqi07@inspur.com)
220
243
  Jing Liuqing (jing.liuqing@99cloud.net)
244
+ jinyuanliu (liujinyuan@inspur.com)
221
245
  Joanna H. Huang (joanna.huitzu.huang@gmail.com)
222
246
  Joe Arnold (joe@swiftstack.com)
223
247
  Joe Gordon (jogo@cloudscaling.com)
@@ -240,18 +264,20 @@ Kazuhiro Miyahara (miyahara.kazuhiro@lab.ntt.co.jp)
240
264
  Ke Liang (ke.liang@easystack.cn)
241
265
  Kenichiro Matsuda (matsuda_kenichi@jp.fujitsu.com)
242
266
  Keshava Bharadwaj (kb.sankethi@gmail.com)
267
+ kim woo seok (rladntjr4@gmail.com)
243
268
  Kiyoung Jung (kiyoung.jung@kt.com)
244
269
  Koert van der Veer (koert@cloudvps.com)
245
- Kota Tsuyuzaki (kota.tsuyuzaki.pc@hco.ntt.co.jp)
270
+ Konrad Kügler (swamblumat-eclipsebugs@yahoo.de)
271
+ Kota Tsuyuzaki (bloodeagle40234@gmail.com)
246
272
  Ksenia Demina (kdemina@mirantis.com)
247
273
  Kuan-Lin Chen (kuanlinchen@synology.com)
248
274
  Kun Huang (gareth@unitedstack.com)
249
275
  Larry Rensing (lr699s@att.com)
250
276
  Leah Klearman (lklrmn@gmail.com)
251
- Lee Yarwood (lyarwood@redhat.com)
252
277
  Li Riqiang (lrqrun@gmail.com)
253
278
  Liang Jingtao (liang.jingtao@zte.com.cn)
254
279
  lijunbo (lijunbo@fiberhome.com)
280
+ likui (likui@yovole.com)
255
281
  Lin Yang (lin.a.yang@intel.com)
256
282
  Lingxian Kong (anlin.kong@gmail.com)
257
283
  lingyongxu (lyxu@fiberhome.com)
@@ -260,14 +286,15 @@ liujiong (liujiong@gohighsec.com)
260
286
  liuyamin (liuyamin@fiberhome.com)
261
287
  Lokesh S (lokesh.s@hp.com)
262
288
  Lorcan Browne (lorcan.browne@hpe.com)
289
+ Luciano Lo Giudice (luciano.logiudice@canonical.com)
263
290
  Luis de Bethencourt (luis@debethencourt.com)
264
291
  Luong Anh Tuan (tuanla@vn.fujitsu.com)
265
292
  lvxianguo (lvxianguo@inspur.com)
266
293
  M V P Nitesh (m.nitesh@nectechnologies.in)
267
294
  Madhuri Kumari (madhuri.rai07@gmail.com)
268
295
  Mahati Chamarthy (mahati.chamarthy@gmail.com)
269
- malei (malei@maleideMacBook-Pro.local)
270
- Mandell Degerness (mdegerness@swiftstack.com)
296
+ Mandell Degerness (mdegerness@nvidia.com)
297
+ manuvakery1 (manu.km@idrive.com)
271
298
  maoshuai (fwsakura@163.com)
272
299
  Marcelo Martins (btorch@gmail.com)
273
300
  Maria Malyarova (savoreux69@gmail.com)
@@ -281,6 +308,7 @@ Mathias Bjoerkqvist (mbj@zurich.ibm.com)
281
308
  Matt Kassawara (mkassawara@gmail.com)
282
309
  Matt Riedemann (mriedem@us.ibm.com)
283
310
  Matthew Oliver (matt@oliver.net.au)
311
+ Matthew Vernon (mvernon@wikimedia.org)
284
312
  Matthieu Huin (mhu@enovance.com)
285
313
  Mauro Stettler (mauro.stettler@gmail.com)
286
314
  Mehdi Abaakouk (sileht@redhat.com)
@@ -293,11 +321,14 @@ Mingyu Li (li.mingyu@99cloud.net)
293
321
  Minwoo Bae (minwoob@us.ibm.com)
294
322
  Mitsuhiro SHIGEMATSU (shigematsu.mitsuhiro@lab.ntt.co.jp)
295
323
  mmcardle (mark.mcardle@sohonet.com)
324
+ Mohamed Hassaneen (mohammedashoor89@gmail.com)
325
+ Mohammed Al-Jawaheri (mjawaheri02@gmail.com)
296
326
  Mohit Motiani (mohit.motiani@intel.com)
297
327
  Monty Taylor (mordred@inaugust.com)
298
328
  Morgan Fainberg (morgan.fainberg@gmail.com)
299
329
  Morita Kazutaka (morita.kazutaka@gmail.com)
300
330
  Motonobu Ichimura (motonobu@gmail.com)
331
+ Nada El-Mestkawy (nadamaged05@gmail.com)
301
332
  Nadeem Syed (snadeem.hameed@gmail.com)
302
333
  Nakagawa Masaaki (nakagawamsa@nttdata.co.jp)
303
334
  Nakul Dahiwade (nakul.dahiwade@intel.com)
@@ -306,17 +337,21 @@ Nandini Tata (nandini.tata@intel.com)
306
337
  Naoto Nishizono (nishizono.naoto@po.ntts.co.jp)
307
338
  Nassim Babaci (nassim.babaci@cloudwatt.com)
308
339
  Nathan Kinder (nkinder@redhat.com)
340
+ nathang15 (nguyennathan1502@gmail.com)
309
341
  Nelson Almeida (nelsonmarcos@gmail.com)
310
342
  Newptone (xingchao@unitedstack.com)
343
+ ngcjny (noguchi.junya@fujitsu.com)
311
344
  Ngo Quoc Cuong (cuongnq@vn.fujitsu.com)
312
345
  Nguyen Hai (nguyentrihai93@gmail.com)
313
346
  Nguyen Hung Phuong (phuongnh@vn.fujitsu.com)
314
347
  Nguyen Phuong An (AnNP@vn.fujitsu.com)
315
348
  Nguyen Quoc Viet (nguyenqviet98@gmail.com)
349
+ Nicholas Njihia (nicholas.njihia@canonical.com)
316
350
  Nicolas Helgeson (nh202b@att.com)
317
351
  Nicolas Trangez (ikke@nicolast.be)
318
352
  Ning Zhang (ning@zmanda.com)
319
353
  Nirmal Thacker (nirmalthacker@gmail.com)
354
+ niuke (niuke19970315@163.com)
320
355
  npraveen35 (npraveen35@gmail.com)
321
356
  Olga Saprycheva (osapryc@us.ibm.com)
322
357
  Ondrej Novy (ondrej.novy@firma.seznam.cz)
@@ -330,10 +365,11 @@ Pavel Kvasnička (pavel.kvasnicka@firma.seznam.cz)
330
365
  Pawel Palucki (pawel.palucki@gmail.com)
331
366
  Pearl Yajing Tan (pearl.y.tan@seagate.com)
332
367
  pengyuesheng (pengyuesheng@gohighsec.com)
333
- Pete Zaitcev (zaitcev@kotori.zaitcev.us)
368
+ Pete Zaitcev (zaitcev@yahoo.com)
334
369
  Peter Lisák (peter.lisak@gmail.com)
335
370
  Peter Portante (peter.portante@redhat.com)
336
371
  Petr Kovar (pkovar@redhat.com)
372
+ Philippe SERAPHIN (philippe.seraphin@infomaniak.com)
337
373
  Pradeep Kumar Singh (pradeep.singh@nectechnologies.in)
338
374
  Prashanth Pai (ppai@redhat.com)
339
375
  Pádraig Brady (pbrady@redhat.com)
@@ -343,12 +379,13 @@ Rainer Toebbicke (Rainer.Toebbicke@cern.ch)
343
379
  rajat29 (rajat.sharma@nectechnologies.in)
344
380
  Ray Chen (oldsharp@163.com)
345
381
  Rebecca Finn (rebeccax.finn@intel.com)
382
+ Renich Bon Ćirić (renich@cloudsigma.com)
346
383
  Ricardo Ferreira (ricardo.sff@gmail.com)
347
384
  Richard Hawkins (richard.hawkins@rackspace.com)
385
+ ricolin (ricolin@ricolky.com)
348
386
  Robert Francis (robefran@ca.ibm.com)
349
387
  Robin Naundorf (r.naundorf@fh-muenster.de)
350
- Romain de Joux (romain.de-joux@corp.ovh.com)
351
- Romain Le Disez (romain.ledisez@ovh.net)
388
+ Romain de Joux (romain.de-joux@ovhcloud.com)
352
389
  Russ Nelson (russ@crynwr.com)
353
390
  Russell Bryant (rbryant@redhat.com)
354
391
  Sachin Patil (psachin@redhat.com)
@@ -360,6 +397,7 @@ Sascha Peilicke (saschpe@gmx.de)
360
397
  Saverio Proto (saverio.proto@switch.ch)
361
398
  Scott Simpson (sasimpson@gmail.com)
362
399
  Sean McGinnis (sean.mcginnis@gmail.com)
400
+ SeongSoo Cho (ppiyakk2@printf.kr)
363
401
  Sergey Kraynev (skraynev@mirantis.com)
364
402
  Sergey Lukjanov (slukjanov@mirantis.com)
365
403
  Shane Wang (shane.wang@intel.com)
@@ -368,6 +406,7 @@ shaofeng_cheng (chengsf@winhong.com)
368
406
  Shashank Kumar Shankar (shashank.kumar.shankar@intel.com)
369
407
  Shashirekha Gundur (shashirekha.j.gundur@intel.com)
370
408
  Shilla Saebi (shilla.saebi@gmail.com)
409
+ Shreeya Deshpande (shreeyad@nvidia.com)
371
410
  Shri Javadekar (shrinand@maginatics.com)
372
411
  Simeon Gourlin (simeon.gourlin@infomaniak.com)
373
412
  Sivasathurappan Radhakrishnan (siva.radhakrishnan@intel.com)
@@ -378,14 +417,16 @@ Steve Kowalik (steven@wedontsleep.org)
378
417
  Steve Martinelli (stevemar@ca.ibm.com)
379
418
  Steven Lang (Steven.Lang@hgst.com)
380
419
  Sushil Kumar (sushil.kumar2@globallogic.com)
381
- Takashi Kajinami (tkajinam@redhat.com)
382
- Takashi Natsume (natsume.takashi@lab.ntt.co.jp)
420
+ Takashi Kajinami (kajinamit@oss.nttdata.com)
421
+ Takashi Natsume (takanattie@gmail.com)
383
422
  TheSriram (sriram@klusterkloud.com)
384
423
  Thiago da Silva (thiagodasilva@gmail.com)
424
+ Thibault Person (thibault.person@ovhcloud.com)
385
425
  Thierry Carrez (thierry@openstack.org)
386
426
  Thomas Goirand (thomas@goirand.fr)
387
427
  Thomas Herve (therve@redhat.com)
388
428
  Thomas Leaman (thomas.leaman@hp.com)
429
+ Tiago Primini (primini@gmail.com)
389
430
  Tim Burke (tim.burke@gmail.com)
390
431
  Timothy Okwii (tokwii@cisco.com)
391
432
  Timur Alperovich (timur.alperovich@gmail.com)
@@ -396,6 +437,7 @@ Tomas Matlocha (tomas.matlocha@firma.seznam.cz)
396
437
  tone-zhang (tone.zhang@linaro.org)
397
438
  Tong Li (litong01@us.ibm.com)
398
439
  Tovin Seven (vinhnt@vn.fujitsu.com)
440
+ Tra Bui (trabui.0517@gmail.com)
399
441
  Travis McPeak (tmcpeak@us.ibm.com)
400
442
  Tushar Gohad (tushar.gohad@intel.com)
401
443
  Van Hung Pham (hungpv@vn.fujitsu.com)
@@ -415,12 +457,15 @@ wangdequn (wangdequn@inspur.com)
415
457
  wanghongtaozz (wanghongtaozz@inspur.com)
416
458
  wanghui (wang_hui@inspur.com)
417
459
  wangqi (wang.qi@99cloud.net)
460
+ Wei LingFei (weilingfei@uniontech.com)
418
461
  whoami-rajat (rajatdhasmana@gmail.com)
462
+ wu.shiming (wushiming@yovole.com)
419
463
  Wu Wenxiang (wu.wenxiang@99cloud.net)
420
464
  Wyllys Ingersoll (wyllys.ingersoll@evault.com)
421
465
  xhancar (pavel.hancar@gmail.com)
422
466
  XieYingYun (smokony@sina.com)
423
467
  Yaguang Wang (yaguang.wang@intel.com)
468
+ Yan Xiao (yanxiao@nvidia.com)
424
469
  yanghuichan (yanghc@fiberhome.com)
425
470
  Yatin Kumbhare (yatinkumbhare@gmail.com)
426
471
  Ye Jia Xu (xyj.asmy@gmail.com)
@@ -438,9 +483,11 @@ zengjia (zengjia@awcloud.com)
438
483
  Zhang Guoqing (zhang.guoqing@99cloud.net)
439
484
  Zhang Jinnan (ben.os@99cloud.net)
440
485
  zhang.lei (zhang.lei@99cloud.net)
486
+ zhangboye (zhangboye@inspur.com)
441
487
  zhangdebo1987 (zhangdebo@inspur.com)
442
488
  zhangyanxian (zhangyanxianmail@163.com)
443
489
  Zhao Lei (zhaolei@cn.fujitsu.com)
490
+ zhaoleilc (15247232416@163.com)
444
491
  Zheng Yao (zheng.yao1@zte.com.cn)
445
492
  zheng yin (yin.zheng@easystack.cn)
446
493
  Zhenguo Niu (zhenguo@unitedstack.com)
@@ -1,12 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: swift
3
- Version: 2.23.3
3
+ Version: 2.35.0
4
4
  Summary: OpenStack Object Storage
5
5
  Home-page: https://docs.openstack.org/swift/latest/
6
6
  Author: OpenStack
7
7
  Author-email: openstack-discuss@lists.openstack.org
8
- License: UNKNOWN
9
- Platform: UNKNOWN
8
+ Project-URL: Documentation, https://docs.openstack.org/swift/latest/
9
+ Project-URL: Bug Tracker, https://bugs.launchpad.net/swift
10
+ Project-URL: Source Code, https://opendev.org/openstack/swift/
11
+ Project-URL: Release Notes, https://opendev.org/openstack/swift/src/branch/master/CHANGELOG
10
12
  Classifier: Development Status :: 5 - Production/Stable
11
13
  Classifier: Environment :: OpenStack
12
14
  Classifier: Intended Audience :: Information Technology
@@ -14,66 +16,62 @@ Classifier: Intended Audience :: System Administrators
14
16
  Classifier: License :: OSI Approved :: Apache Software License
15
17
  Classifier: Operating System :: POSIX :: Linux
16
18
  Classifier: Programming Language :: Python
17
- Classifier: Programming Language :: Python :: 2
18
- Classifier: Programming Language :: Python :: 2.7
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3.6
21
21
  Classifier: Programming Language :: Python :: 3.7
22
- Requires-Dist: PasteDeploy (>=1.3.3)
23
- Requires-Dist: PyECLib (>=1.3.1)
24
- Requires-Dist: cryptography (>=2.0.2)
25
- Requires-Dist: eventlet (>=0.25.0)
26
- Requires-Dist: greenlet (>=0.3.2)
27
- Requires-Dist: lxml (>=3.4.1)
28
- Requires-Dist: netifaces (!=0.10.0,!=0.10.1,>=0.8)
29
- Requires-Dist: requests (>=2.14.2)
30
- Requires-Dist: six (>=1.10.0)
31
- Requires-Dist: ipaddress (>=1.0.16) ; (python_version<'3.3')
32
- Requires-Dist: dnspython (>=1.15.0) ; (python_version=='2.7')
33
- Requires-Dist: xattr (>=0.4) ; (sys_platform!='win32')
22
+ Classifier: Programming Language :: Python :: 3.8
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Requires-Python: >=3.6
28
+ Description-Content-Type: text/x-rst
29
+ License-File: LICENSE
30
+ License-File: AUTHORS
31
+ Requires-Dist: eventlet !=0.34.3,>=0.25.0
32
+ Requires-Dist: greenlet >=0.3.3
33
+ Requires-Dist: PasteDeploy >=2.0.0
34
+ Requires-Dist: lxml >=4.2.3
35
+ Requires-Dist: requests >=2.14.2
36
+ Requires-Dist: PyECLib !=1.6.2,!=1.6.3,>=1.3.1
37
+ Requires-Dist: cryptography >=2.0.2
38
+ Requires-Dist: dnspython >=1.15.0
39
+ Requires-Dist: xattr >=0.7.2 ; (sys_platform!='win32')
34
40
  Provides-Extra: keystone
35
- Requires-Dist: keystonemiddleware (>=4.17.0) ; extra == 'keystone'
41
+ Requires-Dist: keystonemiddleware >=4.17.0 ; extra == 'keystone'
36
42
  Provides-Extra: kmip_keymaster
37
- Requires-Dist: pykmip (>=0.7.0) ; extra == 'kmip_keymaster'
43
+ Requires-Dist: pykmip >=0.7.0 ; extra == 'kmip_keymaster'
38
44
  Provides-Extra: kms_keymaster
39
- Requires-Dist: castellan (>=0.13.0) ; extra == 'kms_keymaster'
40
- Requires-Dist: oslo.config (!=4.3.0,!=4.4.0,>=4.0.0) ; extra == 'kms_keymaster'
45
+ Requires-Dist: oslo.config >=5.2.0 ; extra == 'kms_keymaster'
46
+ Requires-Dist: castellan >=0.13.0 ; extra == 'kms_keymaster'
41
47
  Provides-Extra: test
42
- Requires-Dist: bandit (<=1.6.2,>=1.1.0) ; extra == 'test'
43
- Requires-Dist: boto3 (>=1.9) ; extra == 'test'
44
- Requires-Dist: boto (>=2.32.1) ; extra == 'test'
45
- Requires-Dist: botocore (>=1.12) ; extra == 'test'
46
- Requires-Dist: coverage (>=3.6) ; extra == 'test'
47
- Requires-Dist: docutils (>=0.11) ; extra == 'test'
48
- Requires-Dist: fixtures (>=3.0.0) ; extra == 'test'
49
- Requires-Dist: hacking (<0.12,>=0.11.0) ; extra == 'test'
50
- Requires-Dist: keystonemiddleware (>=4.17.0) ; extra == 'test'
51
- Requires-Dist: mock (>=2.0) ; extra == 'test'
52
- Requires-Dist: nose (>=1.3.7) ; extra == 'test'
53
- Requires-Dist: nosehtmloutput (>=0.0.3) ; extra == 'test'
54
- Requires-Dist: nosexcover (>=1.0.10) ; extra == 'test'
55
- Requires-Dist: os-testr (>=0.8.0) ; extra == 'test'
56
- Requires-Dist: python-keystoneclient (!=2.1.0,>=2.0.0) ; extra == 'test'
57
- Requires-Dist: python-openstackclient (>=3.12.0) ; extra == 'test'
58
- Requires-Dist: python-swiftclient (>=3.2.0) ; extra == 'test'
59
- Requires-Dist: reno (>=1.8.0) ; extra == 'test'
60
- Requires-Dist: requests-mock (>=1.2.0) ; extra == 'test'
61
-
62
- ========================
63
- Team and repository tags
64
- ========================
48
+ Requires-Dist: hacking <7.1.0,>=2.0 ; extra == 'test'
49
+ Requires-Dist: coverage >=5.2.1 ; extra == 'test'
50
+ Requires-Dist: pytest >=4.6.11 ; extra == 'test'
51
+ Requires-Dist: pytest-cov >=2.12.1 ; extra == 'test'
52
+ Requires-Dist: stestr >=2.0.0 ; extra == 'test'
53
+ Requires-Dist: python-swiftclient >=3.2.0 ; extra == 'test'
54
+ Requires-Dist: python-keystoneclient >=3.19.0 ; extra == 'test'
55
+ Requires-Dist: boto >=2.32.1 ; extra == 'test'
56
+ Requires-Dist: boto3 >=1.9 ; extra == 'test'
57
+ Requires-Dist: botocore >=1.12 ; extra == 'test'
58
+ Requires-Dist: requests-mock >=1.2.0 ; extra == 'test'
59
+ Requires-Dist: keystonemiddleware >=4.17.0 ; extra == 'test'
60
+ Requires-Dist: bandit >=1.1.0 ; extra == 'test'
61
+ Requires-Dist: docutils >=0.15 ; extra == 'test'
62
+
63
+ ===============
64
+ OpenStack Swift
65
+ ===============
65
66
 
66
67
  .. image:: https://governance.openstack.org/tc/badges/swift.svg
67
68
  :target: https://governance.openstack.org/tc/reference/tags/index.html
68
69
 
69
70
  .. Change things from this point on
70
71
 
71
- Swift
72
- =====
73
-
74
- A distributed object storage system designed to scale from a single
75
- machine to thousands of servers. Swift is optimized for multi-tenancy
76
- and high concurrency. Swift is ideal for backups, web and mobile
72
+ OpenStack Swift is a distributed object storage system designed to scale
73
+ from a single machine to thousands of servers. Swift is optimized for
74
+ multi-tenancy and high concurrency. Swift is ideal for backups, web and mobile
77
75
  content, and any other unstructured data that can grow without bound.
78
76
 
79
77
  Swift provides a simple, REST-based API fully documented at
@@ -155,14 +153,13 @@ tests should still pass, but a very large number will be skipped.
155
153
  Code Organization
156
154
  ~~~~~~~~~~~~~~~~~
157
155
 
158
- - bin/: Executable scripts that are the processes run by the deployer
159
156
  - doc/: Documentation
160
157
  - etc/: Sample config files
161
158
  - examples/: Config snippets used in the docs
162
159
  - swift/: Core code
163
160
 
164
161
  - account/: account server
165
- - cli/: code that backs some of the CLI tools in bin/
162
+ - cli/: code that backs some of the CLI tools
166
163
  - common/: code shared by different modules
167
164
 
168
165
  - middleware/: "standard", officially-supported middleware
@@ -205,7 +202,7 @@ For Client Apps
205
202
  ---------------
206
203
 
207
204
  For client applications, official Python language bindings are provided
208
- at https://github.com/openstack/python-swiftclient.
205
+ at https://opendev.org/openstack/python-swiftclient.
209
206
 
210
207
  Complete API documentation at
211
208
  https://docs.openstack.org/api-ref/object-store/
@@ -217,11 +214,9 @@ page.
217
214
 
218
215
  --------------
219
216
 
220
- For more information come hang out in #openstack-swift on freenode.
217
+ For more information come hang out in #openstack-swift on OFTC.
221
218
 
222
219
  Thanks,
223
220
 
224
221
  The Swift Development Team
225
222
 
226
-
227
-