-
Notifications
You must be signed in to change notification settings - Fork 194
/
Changelog
1431 lines (937 loc) · 34.6 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changes
=======
py-amqp is fork of amqplib used by Kombu containing additional features and improvements.
The previous amqplib changelog is here:
http://code.google.com/p/py-amqplib/source/browse/CHANGES
.. _version-5.2.0:
5.2.0
=====
:release-date: 2023-11-06 10:55 A.M. UTC+6:00
:release-by: Asif Saif Uddin
- Added python 3.12 and drop python 3.7 (#423).
- Test vine 5.1.0 (#424).
- Set an explicit timeout on SSL handshake to prevent hangs.
- Add MessageNacked to recoverable errors.
- Send heartbeat frames more often.
.. _version-5.1.1:
5.1.1
=====
:release-date: 2022-04-17 12:45 P.M. UTC+6:00
:release-by: Asif Saif Uddin
- Use AF_UNSPEC for name resolution (#389).
.. _version-5.1.0:
5.1.0
=====
:release-date: 2022-03-06 10:05 A.M. UTC+6:00
:release-by: Asif Saif Uddin
- Improve performance of _get_free_channel_id, fix channel max bug (#385).
- Document memoryview usage, minor frame_writer.write_frame refactor (#384).
- Start dropping python 3.6 (#387).
- Added experimental __slots__ to some classes (#368)
- Relaxed vine version for upcoming release.
- Upgraded topytest 7 (#388).
.. _version-5.0.9:
5.0.9
=====
:release-date: 2021-12-20 11:00 A.M. UTC+6:00
:release-by: Asif Saif Uddin
- Append to _used_channel_ids in _used_channel_ids
.. _version-5.0.8:
5.0.8
=====
:release-date: 2021-12-19 11:15 A.M. UTC+6:00
:release-by: Asif Saif Uddin
- Reduce memory usage of Connection (#377)
- Add additional error handling around code where an OSError
may be raised on failed connections. Fixes (#378)
.. _version-5.0.7:
5.0.7
=====
:release-date: 2021-12-13 15:45 P.M. UTC+6:00
:release-by: Asif Saif Uddin
- Remove dependency to case
- Bugfix: not closing socket after server disconnect
.. _version-5.0.6:
5.0.6
=====
:release-date: 2021-04-01 10:45 A.M. UTC+6:00
:release-by: Asif Saif Uddin
- Change the order in which context.check_hostname and context.verify_mode get set
in SSLTransport._wrap_socket_sni. Fixes bug introduced in 5.0.3 where setting
context.verify_mode = ssl.CERT_NONE would raise
"ValueError: Cannot set verify_mode to CERT_NONE when check_hostname is enabled."
Setting context.check_hostname prior to setting context.verify_mode resolves the
issue.
- Remove TCP_USER_TIMEOUT option for Solaris (#355)
- Pass long_description to setup() (#353)
- Fix for tox-docker 2.0
- Moved to GitHub actions CI (#359)
.. _version-5.0.5:
5.0.5
=====
:release-date: 2021-01-28 4:30 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Removed mistakenly introduced code which was causing import errors
.. _version-5.0.4:
5.0.4
=====
:release-date: 2021-01-28 2:30 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Add missing load_default_certs() call to fix a regression in v5.0.3 release. (#350)
.. _version-5.0.3:
5.0.3
=====
:release-date: 2021-01-19 9:00 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Change the default value of ssl_version to None. When not set, the
proper value between ssl.PROTOCOL_TLS_CLIENT and ssl.PROTOCOL_TLS_SERVER
will be selected based on the param server_side in order to create
a TLS Context object with better defaults that fit the desired
connection side.
- Change the default value of cert_reqs to None. The default value
of ctx.verify_mode is ssl.CERT_NONE, but when ssl.PROTOCOL_TLS_CLIENT
is used, ctx.verify_mode defaults to ssl.CERT_REQUIRED.
- Fix context.check_hostname logic. Checking the hostname depends on
having support of the SNI TLS extension and being provided with a
server_hostname value. Another important thing to mention is that
enabling hostname checking automatically sets verify_mode from
ssl.CERT_NONE to ssl.CERT_REQUIRED in the stdlib ssl and it cannot
be set back to ssl.CERT_NONE as long as hostname checking is enabled.
- Refactor the SNI tests to test one thing at a time and removing some
tests that were being repeated over and over.
.. _version-5.0.2:
5.0.2
=====
:release-date: 2020-11-08 6:50 P.M UTC+3:00
:release-by: Omer Katz
- Whhels are no longer universal.
Contributed by **Omer Katz**
- Added debug representation to Connection and *Transport classes
Contributed by **Matus Valo**
- Reintroduce ca_certs and ciphers parameters of SSLTransport._wrap_socket_sni()
This fixes issue introduced in commit: 53d6777
Contributed by **Matus Valo**
- Fix infinite wait when using confirm_publish
Contributed by **Omer Katz** & **RezaSi**
.. _version-5.0.1:
5.0.1
=====
:release-date: 2020-09-06 6:10 P.M UTC+3:00
:release-by: Omer Katz
- Require vine 5.0.0.
Contributed by **Omer Katz**
.. _version-5.0.0:
5.0.0
=====
:release-date: 2020-09-03 3:20 P.M UTC+3:00
:release-by: Omer Katz
- Stop to use deprecated method ssl.wrap_socket.
Contributed by **Hervé Beraud**
.. _version-5.0.0b1:
5.0.0b1
=======
:release-date: 2020-09-01 6:20 P.M UTC+3:00
:release-by: Omer Katz
- Dropped Python 3.5 support.
Contributed by **Omer Katz**
- Removed additional compatibility code.
Contributed by **Omer Katz**
.. _version-5.0.0a1:
5.0.0a1
=======
:release-date: 2019-04-01 4:30 P.M UTC+3:00
:release-by: Omer Katz
- Dropped Python 2.x support.
Contributed by **Omer Katz**
- Dropped Python 3.4 support.
Contributed by **Omer Katz**
- Depend on :pypi:`vine` 5.0.0a1.
Contributed by **Omer Katz**
Code Cleanups & Improvements:
- **Omer Katz**
.. _version-2.6.0:
2.6.1
=====
:release-date: 2020-07-31 10.30 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Fix buffer overflow in frame_writer after frame_max is increased. `frame_writer`
allocates a `bytearray` on initialization with a length based on the `connection.frame_max`
value. If `connection.frame_max` is changed to a larger value, this causes an
error like `pack_into requires a buffer of at least 408736 bytes`.
.. _version-2.6.0:
2.6.0
=====
:release-date: 20-06-01 12.00 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Implement speedups in cython (#311)
- Updated some tests & code improvements
- Separate logger for Connection.heartbeat_tick method
- Cython generic content (#315)
- Improve documentation a_global parameter of basic_qos() method.
- Fix saving partial read buffer on windows during socket timeout. (#321)
- Fix deserialization of long string field values that are not utf-8.
- Added simple cythonization of abstract_channel.py
- Speedups of serialization.py are more restrictive
.. _version-2.5.2:
2.5.2
=====
:release-date: 2019-09-30 19.00 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Fixed a channel issue against a connection already closed
- Updated some tests & code improvements
.. _version-2.5.1:
2.5.1
=====
:release-date: 2019-08-14 22.00 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Ignore all methods except Close and Close-OK when channel/connection is closing
- Fix faulty ssl sni intiation parameters (#283)
- Undeprecate auto_delete flag for exchanges. (#287)
- Improved tests and testing environments
.. _version-2.5.0:
2.5.0
=====
:release-date: 2019-05-30 17.30 P.M UTC+6:00
:release-by: Asif Saif Uddin
- Drop Python 3.4
- Add new platform
- Numerious bug fixes
.. _version-2.4.2:
2.4.2
=====
:release-date: 2019-03-03 10:45 P.M UTC+2:00
:release-by: Omer Katz
- Added support for the Cygwin platform
Contributed by **Matus Valo**
- Correct offset incrementation when parsing bitmaps.
Contributed by **Allan Simon** & **Omer Katz**
- Consequent bitmaps are now parsed correctly.
Previously the bit counter was reset with every bit.
We now reset it once per 8 bits, when we consume the next byte.
Contributed by **Omer Katz**
Code Cleanups & Improvements:
- **Patrick Cloke**
- **Matus Valo**
- **Jeremiah Cooper**
- **Omer Katz**
Test Coverage & CI Improvements:
- **Matus Valo**
- **Omer Katz**
- **Jeremiah Cooper**
- **Omer Katz**
.. _version-2.4.1:
2.4.1
=====
:release-date: 2018-04-02 9:00 A.M UTC+2
:release-by: Omer Katz
- To avoid breaking the API basic_consume() now returns the consumer tag
instead of a tuple when nowait is True.
Fix contributed by **Matus Valo**
- Fix crash in basic_publish when broker does not support connection.blocked
capability.
Fix contributed by **Matus Valo**
- read_frame() is now Python 3 compatible for large payloads.
Fix contributed by **Antonio Ojea**
- Support float read_timeout/write_timeout.
Fix contributed by **:github_user:`cadl`**
- Always treat SSLError timeouts as socket timeouts.
Fix contributed by **Dirk Mueller** and **Antonio Ojea**
- Treat EWOULDBLOCK as timeout.
This fixes a regression on Windows from 2.4.0.
Fix contributed by **Lucian Petrut**
Test Coverage & CI Improvements:
- **Matus Valo**
- **Antonio Ojea**
.. _version-2.4.0:
2.4.0
=====
:release-date: 2018-13-01 1:00 P.M UTC+2
:release-by: Omer Katz
- Fix inconsistent frame_handler return value.
The function returned by frame_handler is meant to return True
once the complete message is received and the callback is called,
False otherwise.
This fixes the return value for messages with a body split across
multiple frames, and heartbeat frames.
Fix contributed by **:github_user:`evanunderscore`**
- Don't default content_encoding to utf-8 for bytes.
This is not an acceptable default as the content may not be
valid utf-8, and even if it is, the producer likely does not
expect the message to be decoded by the consumer.
Fix contributed by **:github_user:`evanunderscore`**
- Fix encoding of messages with multibyte characters.
Body length was previously calculated using string length,
which may be less than the length of the encoded body when
it contains multibyte sequences. This caused the body of
the frame to be truncated.
Fix contributed by **:github_user:`evanunderscore`**
- Respect content_encoding when encoding messages.
Previously the content_encoding was ignored and messages
were always encoded as utf-8. This caused messages to be
incorrectly decoded if content_encoding is properly respected
when decoding.
Fix contributed by **:github_user:`evanunderscore`**
- Fix AMQP protocol header for AMQP 0-9-1.
Previously it was set to a different value for unknown reasons.
Fix contributed by **Carl Hörberg**
- Add support for Python 3.7.
Change direct SSLSocket instantiation with wrap_socket.
Added Python 3.7 to CI.
Fix contributed by **Omer Katz** and **:github_user:`avborhanian`**
- Add support for field type "x" (byte array).
Fix contributed by **Davis Kirkendall**
- If there is an exception raised on Connection.connect or Connection.close,
ensure that the underlying transport socket is closed.
Adjust exception message on connection errors as well.
Fix contributed by **:github_user:`tomc797`**
- TCP_USER_TIMEOUT has to be excluded from KNOWN_TCP_OPTS in BSD platforms.
Fix contributed by **George Tantiras**
- Handle negative acknowledgments.
Fix contributed by **Matus Valo**
- Added integration tests.
Fix contributed by **Matus Valo**
- Fix basic_consume() with no consumer_tag provided.
Fix contributed by **Matus Valo**
- Improved empty AMQPError string representation.
Fix contributed by **Matus Valo**
- Drain events before publish.
This is needed to capture out of memory messages for clients that only
publish. Otherwise on_blocked is never called.
Fix contributed by **Jelte Fennema** and **Matus Valo**
- Don't revive channel when connection is closing.
When connection is closing don't raise error when Channel.Close method is received.
Fix contributed by **Matus Valo**
.. _version-2.3.2:
2.3.2
=====
:release-date: 2018-05-29 15:30 P.M UTC+3
:release-by: Omer Katz
- Fix a regression that occurs when running amqp on OSX.
TCP_USER_TIMEOUT is not available when running on OSX.
We now remove it from the set of known TCP options.
Fix contributed by **Ofer Horowitz**
.. _version-2.3.1:
2.3.1
=====
:release-date: 2018-05-28 16:30 P.M UTC+3
:release-by: Omer Katz
- Fix a regression that occurs when running amqp under Python 2.7.
#182 mistakenly replaced a type check with unicode to string_t which is str
in Python 2.7. text_t should have been used instead.
This is now fixed and the tests have been adjusted to ensure this never regresses
again.
Fix contributed by **Omer Katz**
.. _version-2.3.0:
2.3.0
=====
:release-date: 2018-05-27 16:30 P.M UTC+3
:release-by: Omer Katz
- Cleanup TCP configurations across platforms and unified defaults.
Fix contributed by **Dan Chowdhury**
- Fix for TypeError when setting socket options.
Fix contributed by **Matthias Erll**
- Ensure that all call sites for decoding bytes to str allow surrogates,
as the encoding mechanism now supports.
Fix contributed by **Stephen Hatch**
- Don't send AAAA DNS request when domain resolved to IPv4 address.
Fix contributed by **Ihar Hrachyshka & Omer Katz**
- Support for EXTERNAL authentication and specific login_method.
Fix contributed by **Matthias Erll**
- If the old python-gssapi library is installed the gssapi module will be available.
We now ensure that we only use the new gssapi library.
Fix contributed by **Jacopo Notarstefano**
Code Cleanups & Test Coverage:
- :github_user:`eric-eric-eric`
- **Omer Katz**
- **Jon Dufresne**
- **Matthias Urlichs**
.. _version-2.2.2:
2.2.2
=====
:release-date: 2017-09-14 09:00 A.M UTC+2
:release-by: Omer Katz
- Sending empty messages no longer hangs. Instead an empty message is sent correctly.(addresses #151)
Fix contributed by **Christian Blades**
- Fixed compatibility issues in UTF-8 encoding behavior between Py2/Py3 (#164)
Fix contributed by **Tyler James Harden**
.. _version-2.2.1:
2.2.1
=====
:release-date: 2017-07-14 09:00 A.M UTC+2
:release-by: Omer Katz
- Fix implicit conversion from bytes to string on the connection object. (Issue #155)
This issue has caused Celery to crash on connection to RabbitMQ.
Fix contributed by **Omer Katz**
.. _version-2.2.0:
2.2.0
=====
:release-date: 2017-07-12 10:00 A.M UTC+2
:release-by: Ask Solem
- Fix random delays in task execution.
This is a bug that caused performance issues due to polling timeouts that occur when receiving incomplete AMQP frames. (Issues #3978 #3737 #3814)
Fix contributed by **Robert Kopaczewski**
- Calling ``conn.collect()`` multiple times will no longer raise an ``AttributeError`` when no channels exist.
Fix contributed by **Gord Chung**
- Fix compatibility code for Python 2.7.6.
Fix contributed by **Jonathan Schuff**
- When running in Windows, py-amqp will no longer use the unsupported TCP option TCP_MAXSEG.
Fix contributed by **Tony Breeds**
- Added support for setting the SNI hostname header.
The SSL protocol version is now set to SSLv23
Contributed by **Dhananjay Sathe**
- Authentication mechanisms were refactored to be more modular. GSSAPI authentication is now supported.
Contributed by **Alexander Dutton**
- Do not reconnect on collect.
Fix contributed by **Gord Chung**
.. _version-2.1.4:
2.1.4
=====
:release-date: 2016-12-14 03:40 P.M PST
:release-by: Ask Solem
- Removes byte string comparison warnings when running under ``python -b``.
Fix contributed by **Jon Dufresne**.
- Linux version parsing broke when the version included a '+' character
(Issue #119).
- Now sets default TCP settings for platforms that support them (e.g. Linux).
+----------------------+---------------+
| Constant | Value |
+======================+===============+
| ``TCP_KEEPIDLE`` | ``60`` |
+----------------------+---------------+
| ``TCP_KEEPINTVL`` | ``10`` |
+----------------------+---------------+
| ``TCP_KEEPCNT`` | ``9`` |
+----------------------+---------------+
| ``TCP_USER_TIMEOUT`` | ``1000`` (1s) |
+----------------------+---------------+
This will help detecting the socket being closed earlier, which is very
important in failover and load balancing scenarios.
.. _version-2.1.3:
2.1.3
=====
:release-date: 2016-12-07 06:00 P.M PST
:release-by: Ask Solem
- Fixes compatibility with Python 2.7.5 and below (Issue #107).
.. _version-2.1.2:
2.1.2
=====
:release-date: 2016-12-07 02:00 P.M PST
- Linux: Now sets the :data:`~socket.TCP_USER_TIMEOUT` flag if available
for better failed connection detection.
Contributed by **Jelte Fennema**.
The timeout is set to the ``connect_timeout`` value by default,
but can also be specified by using the ``socket_settings`` argument
to :class:`~amqp.Connection`:
.. code-block:: python
from amqp import Connection
from amqp.platform import TCP_USER_TIMEOUT
conn = Connection(socket_settings={
TCP_USER_TIMEOUT: int(60 * 1000), # six minutes in ms.
})
When using :pypi:`Kombu` this can be specified as part of the
``transport_options``:
.. code-block:: python
from amqp.platform import TCP_USER_TIMEOUT
from kombu import Connection
conn = Connection(transport_options={
'socket_settings': {
TCP_USER_TIMEOUT: int(60 * 1000), # six minutes in ms.
},
})
Or when using :pypi:`Celery` it can be specified using the
``broker_transport_options`` setting:
.. code-block:: python
from amqp.platform import TCP_USER_TIMEOUT
from celery import Celery
app = Celery()
app.conf.update(
broker_transport_options={
TCP_USER_TIMEOUT: int(60 * 1000), # six minutes in ms.
}
)
- Python compatibility: Fixed compatibility when using the python ``-b`` flag.
Fix contributed by Jon Dufresne.
.. _version-2.1.1:
2.1.1
=====
:release-date: 2016-10-13 06:36 P.M PDT
:release-by: Ask Solem
.. _version-2.1.0:
- **Requirements**
- Now depends on :ref:`Vine 1.1.3 <vine:version-1.1.3>`.
- Frame writer: Account for overhead when calculating frame size.
The client would crash if the message was within a certain size.
- Fixed struct unicode problems (#108)
* Standardize pack invocations on bytestrings.
* Leave some literals as strings to enable interpolation.
* Fix flake8 fail.
Fix contributed by **Brendan Smithyman**.
2.1.0
=====
:release-date: 2016-09-07 04:23 P.M PDT
:release-by: Ask Solem
- **Requirements**
- Now depends on :ref:`Vine 1.1.2 <vine:version-1.1.2>`.
- Now licensed under the BSD license!
Thanks to Barry Pederson for approving the license change,
which unifies the license used across all projects in the Celery
organization.
- Datetimes in method frame arguments are now handled properly.
- Fixed compatibility with Python <= 2.7.6
- Frame_writer is no longer a generator, which should solve
a rare "generator already executing" error (Issue #103).
.. _version-2.0.3:
2.0.3
=====
:release-date: 2016-07-11 08:00 P.M PDT
:release-by: Ask Solem
- SSLTransport: Fixed crash "no attribute sslopts" when ``ssl=True``
(Issue #100).
- Fixed incompatible argument spec for ``Connection.Close`` (Issue #45).
This caused the RabbitMQ server to raise an exception (INTERNAL ERROR).
- Transport: No longer implements `__del__` to make sure gc can collect
connections.
It's the responsibility of the caller to close connections, this was
simply a relic from the amqplib library.
.. _version-2.0.2:
2.0.2
=====
:release-date: 2016-06-10 5:40 P.M PDT
:release-by: Ask Solem
- Python 3: Installation requirements ended up being a generator
and crashed setup.py.
Fix contributed by ChangBo Guo(gcb).
- Python <= 2.7.7: struct.pack arguments cannot be unicode
Fix contributed by Alan Justino and Xin Li.
- Python 3.4: Fixed use of `bytes % int`.
Fix contributed by Alan Justino.
- Connection/Transport: Fixed handling of default port.
Fix contributed by Quentin Pradet.
.. _version-2.0.1:
2.0.1
=====
:release-date: 2016-05-31 6:20 P.M PDT
:release-by: Ask Solem
- Adds backward compatibility layer for the 1.4 API.
Using the connection without calling ``.connect()`` first will now work,
but a warning is emitted and the behavior is deprecated and will be
removed in version 2.2.
- Fixes kombu 3.0/celery 3.1 compatibility (Issue #88).
Fix contributed by Bas ten Berge.
- Fixed compatibility with Python 2.7.3 (Issue #85)
Fix contributed by Bas ten Berge.
- Fixed bug where calling drain_events() with a timeout of 0 would actually
block until a frame is received.
- Documentation moved to http://amqp.readthedocs.io (Issue #89).
See https://blog.readthedocs.com/securing-subdomains/ for the reasoning
behind this change.
Fix contributed by Adam Chainz.
.. _version-2.0.0:
2.0.0
=====
:release-date: 2016-05-26 1:44 P.M PDT
:release-by: Ask Solem
- No longer supports Python 2.6
- You must now call Connection.connect() to establish the connection.
The Connection constructor no longer has side effects, so you have
to explicitly call connect first.
- Library rewritten to anticipate async changes.
- Connection now exposes underlying socket options.
This change allows to set arbitrary TCP socket options during the creation of
the transport.
Those values can be set passing a dictionray where the key is the name of
the parameter we want to set.
The names of the keys are the ones reported above.
Contributed by Andrea Rosa, Dallas Marlow and Rongze Zhu.
- Additional logging for heartbeats.
Contributed by Davanum Srinivas, and Dmitry Mescheryakov.
- SSL: Fixes issue with remote connection hanging
Fix contributed by Adrien Guinet.
- SSL: ``ssl`` dict argument now supports the ``check_hostname`` key
(Issue #63).
Contributed by Vic Kumar.
- Contributions by:
Adrien Guinet
Andrea Rosa
Artyom Koval
Corey Farwell
Craig Jellick
Dallas Marlow
Davanum Srinivas
Federico Ficarelli
Jared Lewis
Rémy Greinhofer
Rongze Zhu
Yury Selivanov
Vic Kumar
Vladimir Bolshakov
:github_user:`lezeroq`
.. _version-1.4.9:
1.4.9
=====
:release-date: 2016-01-08 5:50 P.M PST
:release-by: Ask Solem
- Fixes compatibility with Linux/macOS instances where the ``ctypes`` module
does not exist.
Fix contributed by Jared Lewis.
.. _version-1.4.8:
1.4.8
=====
:release-date: 2015-12-07 12:25 A.M
:release-by: Ask Solem
- ``abstract_channel.wait`` now accepts a float `timeout` parameter expressed
in seconds
Contributed by Goir.
.. _version-1.4.7:
1.4.7
=====
:release-date: 2015-10-02 05:30 P.M PDT
:release-by: Ask Solem
- Fixed libSystem error on macOS 10.11 (El Capitan)
Fix contributed by Eric Wang.
- ``channel.basic_publish`` now raises :exc:`amqp.exceptions.NotConfirmed` on
``basic.nack``.
- AMQP timestamps received are now converted from GMT instead of local time
(Issue #67).
- Wheel package installation now supported by both Python 2 and Python3.
Fix contributed by Rémy Greinhofer.
.. _version-1.4.6:
1.4.6
=====
:release-date: 2014-08-11 06:00 P.M UTC
:release-by: Ask Solem
- Now keeps buffer when socket times out.
Fix contributed by Artyom Koval.
- Adds ``Connection.Transport`` attribute that can be used to specify
a different transport implementation.
Contributed by Yury Selivanov.
.. _version-1.4.5:
1.4.5
=====
:release-date: 2014-04-15 09:00 P.M UTC
:release-by: Ask Solem
- Can now deserialize more AMQP types.
Now handles types ``short string``, ``short short int``,
``short short unsigned int``, ``short int``, ``short unsigned int``,
``long unsigned int``, ``long long int``, ``long long unsigned int``
and ``float`` which for some reason was missing, even in the original
amqplib module.
- SSL: Workaround for Python SSL bug.
A bug in the python socket library causes ``ssl.read/write()``
on a closed socket to raise :exc:`AttributeError` instead of
:exc:`IOError`.
Fix contributed by Craig Jellick.
- ``Transport.__del_`` now handles errors occurring at late interpreter
shutdown (Issue #36).
.. _version-1.4.4:
1.4.4
=====
:release-date: 2014-03-03 04:00 P.M UTC
:release-by: Ask Solem
- SSL transport accidentally disconnected after read timeout.
Fix contributed by Craig Jellick.
.. _version-1.4.3:
1.4.3
=====
:release-date: 2014-02-09 03:00 P.M UTC
:release-by: Ask Solem
- Fixed bug where more data was requested from the socket
than was actually needed.