aws-sdk-sqs 1.30.0 → 1.89.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +550 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-sqs/client.rb +931 -350
- data/lib/aws-sdk-sqs/client_api.rb +326 -53
- data/lib/aws-sdk-sqs/customizations.rb +5 -1
- data/lib/aws-sdk-sqs/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-sqs/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-sqs/endpoints.rb +20 -0
- data/lib/aws-sdk-sqs/errors.rb +263 -1
- data/lib/aws-sdk-sqs/message.rb +16 -9
- data/lib/aws-sdk-sqs/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-sqs/plugins/md5s.rb +84 -35
- data/lib/aws-sdk-sqs/plugins/queue_urls.rb +20 -18
- data/lib/aws-sdk-sqs/queue.rb +237 -98
- data/lib/aws-sdk-sqs/queue_poller.rb +72 -36
- data/lib/aws-sdk-sqs/resource.rb +137 -65
- data/lib/aws-sdk-sqs/types.rb +943 -539
- data/lib/aws-sdk-sqs.rb +20 -11
- data/sig/client.rbs +367 -0
- data/sig/errors.rbs +98 -0
- data/sig/message.rbs +73 -0
- data/sig/queue.rbs +164 -0
- data/sig/resource.rbs +108 -0
- data/sig/types.rbs +472 -0
- data/sig/waiters.rbs +13 -0
- metadata +28 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e8eb29e0242ff0070c5c2fba2e36bf9529174f3ccc28efc398798fe100b4645
|
4
|
+
data.tar.gz: bba2887ad57ef051bd5aaeb1fd2c15a0c0d1a6bc759b470ec0ae43eff89a36ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89e4a89c54742e1ce39701de265a4135dc67bb940269ed4bd4e9408ddd8f5906feb06b7014ec8cf05d2f7642058813b0de4fb89d35c35d0bfe19484c373e433b
|
7
|
+
data.tar.gz: afdca3b0a76cac0df36cad66f843300eab6f997d2cb6a406641105a92871c18c56d3372799ecb734746d6c012432ad70fcade0d4b7c2bc96d91d9aedd937ebaf
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,550 @@
|
|
1
|
+
Unreleased Changes
|
2
|
+
------------------
|
3
|
+
|
4
|
+
1.89.0 (2024-11-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.88.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.87.0 (2024-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.86.0 (2024-09-24)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
24
|
+
1.85.0 (2024-09-23)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
29
|
+
1.84.0 (2024-09-20)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
33
|
+
|
34
|
+
1.83.0 (2024-09-11)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
38
|
+
|
39
|
+
1.82.0 (2024-09-10)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
43
|
+
|
44
|
+
1.81.0 (2024-09-03)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
48
|
+
|
49
|
+
1.80.0 (2024-07-02)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
53
|
+
|
54
|
+
1.79.0 (2024-06-28)
|
55
|
+
------------------
|
56
|
+
|
57
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
58
|
+
|
59
|
+
1.78.0 (2024-06-25)
|
60
|
+
------------------
|
61
|
+
|
62
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
63
|
+
|
64
|
+
1.77.0 (2024-06-24)
|
65
|
+
------------------
|
66
|
+
|
67
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
68
|
+
|
69
|
+
1.76.0 (2024-06-06)
|
70
|
+
------------------
|
71
|
+
|
72
|
+
* Feature - Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications.
|
73
|
+
|
74
|
+
1.75.0 (2024-06-05)
|
75
|
+
------------------
|
76
|
+
|
77
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
78
|
+
|
79
|
+
1.74.0 (2024-05-13)
|
80
|
+
------------------
|
81
|
+
|
82
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
83
|
+
|
84
|
+
1.73.0 (2024-05-08)
|
85
|
+
------------------
|
86
|
+
|
87
|
+
* Feature - This release adds MessageSystemAttributeNames to ReceiveMessageRequest to replace AttributeNames.
|
88
|
+
|
89
|
+
1.72.0 (2024-04-30)
|
90
|
+
------------------
|
91
|
+
|
92
|
+
* Feature - Handle System Message Attributes MD5 verification.
|
93
|
+
|
94
|
+
1.71.0 (2024-04-25)
|
95
|
+
------------------
|
96
|
+
|
97
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
98
|
+
|
99
|
+
1.70.0 (2024-01-26)
|
100
|
+
------------------
|
101
|
+
|
102
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
103
|
+
|
104
|
+
1.69.0 (2023-11-28)
|
105
|
+
------------------
|
106
|
+
|
107
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
108
|
+
|
109
|
+
1.68.0 (2023-11-22)
|
110
|
+
------------------
|
111
|
+
|
112
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
113
|
+
|
114
|
+
1.67.0 (2023-11-09)
|
115
|
+
------------------
|
116
|
+
|
117
|
+
* Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
|
118
|
+
|
119
|
+
1.66.0 (2023-11-08)
|
120
|
+
------------------
|
121
|
+
|
122
|
+
* Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol.
|
123
|
+
|
124
|
+
1.65.0 (2023-10-31)
|
125
|
+
------------------
|
126
|
+
|
127
|
+
* Feature - Update `QueuePoller` to allow for the definition of an `after_empty_receive` callback which is triggered when a polling request returns no records.
|
128
|
+
|
129
|
+
1.64.0 (2023-10-02)
|
130
|
+
------------------
|
131
|
+
|
132
|
+
* Feature - Update QueuePoller to handle duplicate messages before yielding. Fixes bug in (#2913).
|
133
|
+
|
134
|
+
1.63.0 (2023-09-27)
|
135
|
+
------------------
|
136
|
+
|
137
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
138
|
+
|
139
|
+
1.62.0 (2023-07-28)
|
140
|
+
------------------
|
141
|
+
|
142
|
+
* Feature - Documentation changes related to SQS APIs.
|
143
|
+
|
144
|
+
1.61.0 (2023-07-11)
|
145
|
+
------------------
|
146
|
+
|
147
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
148
|
+
|
149
|
+
1.60.0 (2023-07-06)
|
150
|
+
------------------
|
151
|
+
|
152
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
153
|
+
|
154
|
+
1.59.0 (2023-06-28)
|
155
|
+
------------------
|
156
|
+
|
157
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
158
|
+
|
159
|
+
1.58.0 (2023-06-15)
|
160
|
+
------------------
|
161
|
+
|
162
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
163
|
+
|
164
|
+
1.57.0 (2023-06-06)
|
165
|
+
------------------
|
166
|
+
|
167
|
+
* Feature - Amazon SQS adds three new APIs - StartMessageMoveTask, CancelMessageMoveTask, and ListMessageMoveTasks to automate redriving messages from dead-letter queues to source queues or a custom destination.
|
168
|
+
|
169
|
+
1.56.0 (2023-05-31)
|
170
|
+
------------------
|
171
|
+
|
172
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
173
|
+
|
174
|
+
1.55.0 (2023-05-05)
|
175
|
+
------------------
|
176
|
+
|
177
|
+
* Feature - Revert previous SQS protocol change.
|
178
|
+
|
179
|
+
1.54.0 (2023-05-04)
|
180
|
+
------------------
|
181
|
+
|
182
|
+
* Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol.
|
183
|
+
|
184
|
+
1.53.0 (2023-01-18)
|
185
|
+
------------------
|
186
|
+
|
187
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
188
|
+
|
189
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
190
|
+
|
191
|
+
1.52.1 (2022-12-02)
|
192
|
+
------------------
|
193
|
+
|
194
|
+
* Issue - Raise ArgumentError when QueuePoller's :max_number_of_messages is not a positive integer.
|
195
|
+
|
196
|
+
1.52.0 (2022-10-25)
|
197
|
+
------------------
|
198
|
+
|
199
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
200
|
+
|
201
|
+
1.51.1 (2022-05-02)
|
202
|
+
------------------
|
203
|
+
|
204
|
+
* Issue - Parse the region from the `queue_url` param only if the component is exactly `sqs`.
|
205
|
+
|
206
|
+
1.51.0 (2022-02-24)
|
207
|
+
------------------
|
208
|
+
|
209
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
210
|
+
|
211
|
+
1.50.0 (2022-02-03)
|
212
|
+
------------------
|
213
|
+
|
214
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
215
|
+
|
216
|
+
1.49.0 (2021-12-21)
|
217
|
+
------------------
|
218
|
+
|
219
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
220
|
+
|
221
|
+
1.48.0 (2021-11-30)
|
222
|
+
------------------
|
223
|
+
|
224
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
225
|
+
|
226
|
+
1.47.0 (2021-11-23)
|
227
|
+
------------------
|
228
|
+
|
229
|
+
* Feature - Amazon SQS adds a new queue attribute, SqsManagedSseEnabled, which enables server-side queue encryption using SQS owned encryption keys.
|
230
|
+
|
231
|
+
1.46.0 (2021-11-04)
|
232
|
+
------------------
|
233
|
+
|
234
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
235
|
+
|
236
|
+
1.45.0 (2021-10-18)
|
237
|
+
------------------
|
238
|
+
|
239
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
240
|
+
|
241
|
+
1.44.0 (2021-09-01)
|
242
|
+
------------------
|
243
|
+
|
244
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
245
|
+
|
246
|
+
1.43.0 (2021-08-31)
|
247
|
+
------------------
|
248
|
+
|
249
|
+
* Feature - Amazon SQS adds a new queue attribute, RedriveAllowPolicy, which includes the dead-letter queue redrive permission parameters. It defines which source queues can specify dead-letter queues as a JSON object.
|
250
|
+
|
251
|
+
1.42.0 (2021-07-30)
|
252
|
+
------------------
|
253
|
+
|
254
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
255
|
+
|
256
|
+
1.41.0 (2021-07-28)
|
257
|
+
------------------
|
258
|
+
|
259
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
260
|
+
|
261
|
+
1.40.0 (2021-07-01)
|
262
|
+
------------------
|
263
|
+
|
264
|
+
* Feature - Documentation updates for Amazon SQS.
|
265
|
+
|
266
|
+
1.39.0 (2021-05-27)
|
267
|
+
------------------
|
268
|
+
|
269
|
+
* Feature - Documentation updates for Amazon SQS for General Availability of high throughput for FIFO queues.
|
270
|
+
|
271
|
+
1.38.0 (2021-03-25)
|
272
|
+
------------------
|
273
|
+
|
274
|
+
* Feature - Documentation updates for Amazon SQS
|
275
|
+
|
276
|
+
1.37.0 (2021-03-10)
|
277
|
+
------------------
|
278
|
+
|
279
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
280
|
+
|
281
|
+
1.36.0 (2021-02-02)
|
282
|
+
------------------
|
283
|
+
|
284
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
285
|
+
|
286
|
+
1.35.0 (2020-12-17)
|
287
|
+
------------------
|
288
|
+
|
289
|
+
* Feature - Amazon SQS adds queue attributes to enable high throughput FIFO.
|
290
|
+
|
291
|
+
1.34.0 (2020-09-30)
|
292
|
+
------------------
|
293
|
+
|
294
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
295
|
+
|
296
|
+
1.33.0 (2020-09-15)
|
297
|
+
------------------
|
298
|
+
|
299
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
300
|
+
|
301
|
+
1.32.0 (2020-08-31)
|
302
|
+
------------------
|
303
|
+
|
304
|
+
* Feature - Documentation updates for SQS.
|
305
|
+
|
306
|
+
1.31.0 (2020-08-25)
|
307
|
+
------------------
|
308
|
+
|
309
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
310
|
+
|
311
|
+
1.30.0 (2020-07-02)
|
312
|
+
------------------
|
313
|
+
|
314
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
315
|
+
|
316
|
+
1.29.0 (2020-06-23)
|
317
|
+
------------------
|
318
|
+
|
319
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
320
|
+
|
321
|
+
1.28.0 (2020-06-22)
|
322
|
+
------------------
|
323
|
+
|
324
|
+
* Feature - AWS SQS adds pagination support for ListQueues and ListDeadLetterSourceQueues APIs
|
325
|
+
|
326
|
+
1.27.1 (2020-06-11)
|
327
|
+
------------------
|
328
|
+
|
329
|
+
* Issue - Republish previous version with correct dependency on `aws-sdk-core`.
|
330
|
+
|
331
|
+
1.27.0 (2020-06-10)
|
332
|
+
------------------
|
333
|
+
|
334
|
+
* Issue - This version has been yanked. (#2327).
|
335
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
336
|
+
|
337
|
+
1.26.0 (2020-05-28)
|
338
|
+
------------------
|
339
|
+
|
340
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
341
|
+
|
342
|
+
1.25.0 (2020-05-07)
|
343
|
+
------------------
|
344
|
+
|
345
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
346
|
+
|
347
|
+
1.24.0 (2020-03-09)
|
348
|
+
------------------
|
349
|
+
|
350
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
351
|
+
|
352
|
+
1.23.1 (2019-11-08)
|
353
|
+
------------------
|
354
|
+
|
355
|
+
* Issue - Support VPC Endpoint pattern in Aws::SQS::Plugins::QueueUrl (Github #2114)
|
356
|
+
|
357
|
+
1.23.0 (2019-10-23)
|
358
|
+
------------------
|
359
|
+
|
360
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
361
|
+
|
362
|
+
1.22.0 (2019-08-28)
|
363
|
+
------------------
|
364
|
+
|
365
|
+
* Feature - Added support for message system attributes, which currently lets you send AWS X-Ray trace IDs through Amazon SQS.
|
366
|
+
|
367
|
+
1.21.0 (2019-08-21)
|
368
|
+
------------------
|
369
|
+
|
370
|
+
* Feature - This release provides a way to add metadata tags to a queue when it is created. You can use tags to organize and identify your Amazon SQS queues for cost allocation.
|
371
|
+
|
372
|
+
1.20.0 (2019-07-25)
|
373
|
+
------------------
|
374
|
+
|
375
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
376
|
+
|
377
|
+
1.19.0 (2019-07-19)
|
378
|
+
------------------
|
379
|
+
|
380
|
+
* Feature - This release updates the information about the availability of FIFO queues and includes miscellaneous fixes.
|
381
|
+
|
382
|
+
1.18.1 (2019-07-17)
|
383
|
+
------------------
|
384
|
+
|
385
|
+
* Issue - Skip `:message_attributes` validation for empty attributes. (Github Issue #2081)
|
386
|
+
|
387
|
+
1.18.0 (2019-07-01)
|
388
|
+
------------------
|
389
|
+
|
390
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
391
|
+
|
392
|
+
1.17.0 (2019-06-17)
|
393
|
+
------------------
|
394
|
+
|
395
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
396
|
+
|
397
|
+
1.16.0 (2019-05-21)
|
398
|
+
------------------
|
399
|
+
|
400
|
+
* Feature - API update.
|
401
|
+
|
402
|
+
1.15.0 (2019-05-15)
|
403
|
+
------------------
|
404
|
+
|
405
|
+
* Feature - API update.
|
406
|
+
|
407
|
+
1.14.0 (2019-05-14)
|
408
|
+
------------------
|
409
|
+
|
410
|
+
* Feature - API update.
|
411
|
+
|
412
|
+
1.13.0 (2019-03-21)
|
413
|
+
------------------
|
414
|
+
|
415
|
+
* Feature - API update.
|
416
|
+
|
417
|
+
1.12.0 (2019-03-18)
|
418
|
+
------------------
|
419
|
+
|
420
|
+
* Feature - API update.
|
421
|
+
|
422
|
+
1.11.0 (2019-03-14)
|
423
|
+
------------------
|
424
|
+
|
425
|
+
* Feature - API update.
|
426
|
+
|
427
|
+
1.10.0 (2018-11-20)
|
428
|
+
------------------
|
429
|
+
|
430
|
+
* Feature - API update.
|
431
|
+
|
432
|
+
1.9.0 (2018-10-24)
|
433
|
+
------------------
|
434
|
+
|
435
|
+
* Feature - API update.
|
436
|
+
|
437
|
+
1.8.0 (2018-10-23)
|
438
|
+
------------------
|
439
|
+
|
440
|
+
* Feature - API update.
|
441
|
+
|
442
|
+
1.7.0 (2018-09-26)
|
443
|
+
------------------
|
444
|
+
|
445
|
+
* Feature - API update.
|
446
|
+
|
447
|
+
1.6.0 (2018-09-06)
|
448
|
+
------------------
|
449
|
+
|
450
|
+
* Feature - Adds code paths and plugins for future SDK instrumentation and telemetry.
|
451
|
+
|
452
|
+
1.5.0 (2018-09-05)
|
453
|
+
------------------
|
454
|
+
|
455
|
+
* Feature - API update.
|
456
|
+
|
457
|
+
1.4.0 (2018-06-26)
|
458
|
+
------------------
|
459
|
+
|
460
|
+
* Feature - API update.
|
461
|
+
|
462
|
+
1.3.0 (2017-10-19)
|
463
|
+
------------------
|
464
|
+
|
465
|
+
* Feature - API update.
|
466
|
+
|
467
|
+
1.2.0 (2017-10-06)
|
468
|
+
------------------
|
469
|
+
|
470
|
+
* Feature - API update.
|
471
|
+
|
472
|
+
1.1.0 (2017-09-14)
|
473
|
+
------------------
|
474
|
+
|
475
|
+
* Feature - API update.
|
476
|
+
|
477
|
+
* Issue - Update `aws-sdk-sqs` gemspec metadata.
|
478
|
+
|
479
|
+
1.0.0 (2017-08-29)
|
480
|
+
------------------
|
481
|
+
|
482
|
+
1.0.0.rc14 (2017-08-15)
|
483
|
+
------------------
|
484
|
+
|
485
|
+
* Feature - API update.
|
486
|
+
|
487
|
+
1.0.0.rc13 (2017-08-01)
|
488
|
+
------------------
|
489
|
+
|
490
|
+
* Feature - API update.
|
491
|
+
|
492
|
+
1.0.0.rc12 (2017-07-25)
|
493
|
+
------------------
|
494
|
+
|
495
|
+
* Feature - API update.
|
496
|
+
|
497
|
+
1.0.0.rc11 (2017-07-13)
|
498
|
+
------------------
|
499
|
+
|
500
|
+
* Feature - API update.
|
501
|
+
|
502
|
+
1.0.0.rc10 (2017-07-06)
|
503
|
+
------------------
|
504
|
+
|
505
|
+
* Feature - API update.
|
506
|
+
|
507
|
+
1.0.0.rc9 (2017-06-29)
|
508
|
+
------------------
|
509
|
+
|
510
|
+
* Feature - API update.
|
511
|
+
|
512
|
+
1.0.0.rc8 (2017-05-23)
|
513
|
+
------------------
|
514
|
+
|
515
|
+
* Feature - API update.
|
516
|
+
|
517
|
+
1.0.0.rc7 (2017-05-09)
|
518
|
+
------------------
|
519
|
+
|
520
|
+
* Feature - API update.
|
521
|
+
|
522
|
+
1.0.0.rc6 (2017-05-09)
|
523
|
+
------------------
|
524
|
+
|
525
|
+
* Feature - API update.
|
526
|
+
|
527
|
+
1.0.0.rc5 (2017-05-05)
|
528
|
+
------------------
|
529
|
+
|
530
|
+
* Feature - API update.
|
531
|
+
|
532
|
+
1.0.0.rc4 (2017-04-21)
|
533
|
+
------------------
|
534
|
+
|
535
|
+
* Feature - API update.
|
536
|
+
|
537
|
+
1.0.0.rc3 (2017-01-24)
|
538
|
+
------------------
|
539
|
+
|
540
|
+
* Feature - API update.
|
541
|
+
|
542
|
+
1.0.0.rc2 (2016-12-09)
|
543
|
+
------------------
|
544
|
+
|
545
|
+
* Feature - API update.
|
546
|
+
|
547
|
+
1.0.0.rc1 (2016-12-05)
|
548
|
+
------------------
|
549
|
+
|
550
|
+
* Feature - Initial preview release of the `aws-sdk-sqs` gem.
|