msgr 1.1.0.1.b291 → 1.1.0.1.b292
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +96 -61
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e047a0ea29e36b03f497fc3f1ea46f06e599ebca83c64ac26e1176a923f4178
|
4
|
+
data.tar.gz: 0aa4869c0f20038053b3c36af9895bad43d35cc3b0b47ff891f729d048f7de04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34bf45cc4e9deb8cdc16890fc9619142dedc2c48ec6be5b99ba17836a40155b803da0fc89dcb51ce7bf5b2bf51d11659b5bf77d806110bdd1777ca8199128845
|
7
|
+
data.tar.gz: 4f4754bb43af266472b3da2be3490d5dbd4c06d7e39e2831aa4b8f16a05bd8a5c04cd78c52abe770c18fb8fa9ceb39f02632b633024e843c685bba97c05e3f2d
|
data/CHANGELOG.md
CHANGED
@@ -1,85 +1,120 @@
|
|
1
1
|
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
2
3
|
|
3
|
-
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
4
5
|
|
5
|
-
|
6
|
+
## [Unreleased]
|
7
|
+
### Added
|
8
|
+
- Test support of Rails 5.2
|
6
9
|
|
7
|
-
|
10
|
+
### Changed
|
11
|
+
- Serialize JSON using core JSON instead of MultiJson
|
12
|
+
- Remove application/text fallback for payload (#25)
|
8
13
|
|
9
|
-
|
10
|
-
|
14
|
+
## [1.1.0] - 2018-07-25
|
15
|
+
### Added
|
16
|
+
- New command line runner
|
11
17
|
|
12
|
-
## 0.
|
18
|
+
## [1.0.0] - 2017-12-29
|
19
|
+
### Changed
|
20
|
+
- Configure prefetch per binding and disable auto ack in consumer for customized batch processing (#15)
|
21
|
+
- Replace usage of deprecated exception class (#12)
|
13
22
|
|
14
|
-
|
23
|
+
## [0.15.2] - 2017-09-04
|
24
|
+
### Fixed
|
25
|
+
- Fix regression in parsing `:uri` config with empty path
|
15
26
|
|
16
|
-
## 0.15.1
|
27
|
+
## [0.15.1] - 2017-07-31
|
28
|
+
### Fixed
|
29
|
+
- Fix errors with additional configuration keys for AMQP connection (#13)
|
17
30
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
* Add new configuration option `:raise_exceptions` that can be used to enable
|
31
|
+
## [0.15.0] - 2017-03-30
|
32
|
+
### Added
|
33
|
+
- Add new configuration option `:raise_exceptions` that can be used to enable
|
23
34
|
exceptions being raised from consumers. Mostly useful for testing consumers.
|
24
35
|
Defaults to `false`.
|
25
|
-
|
26
|
-
|
27
|
-
* Add methods for purging queues
|
28
|
-
|
29
|
-
## 0.14.1
|
30
|
-
|
31
|
-
* Fix loading test pool source file
|
32
|
-
|
33
|
-
## 0.14.0
|
36
|
+
- Add option to release bindings before purging
|
37
|
+
- Add methods for purging queues
|
34
38
|
|
35
|
-
|
39
|
+
### Changed
|
40
|
+
- Rework TestPool timeout handling to not account processing time
|
36
41
|
|
37
|
-
## 0.
|
42
|
+
## [0.14.1] - 2016-02-17
|
43
|
+
### Fixed
|
44
|
+
- Fix loading test pool source file
|
38
45
|
|
39
|
-
|
46
|
+
## [0.14.0] - 2016-02-17
|
47
|
+
### Added
|
48
|
+
- Add experimental test pool (`Msgr::TestPool`)
|
40
49
|
|
41
|
-
## 0.
|
50
|
+
## [0.13.0] - 2015-08-24
|
51
|
+
### Changed
|
52
|
+
- Use `Rails.application.config_for` if available.
|
42
53
|
|
43
|
-
|
54
|
+
## [0.12.2] - 2015-01-14
|
55
|
+
### Changed
|
56
|
+
- Do not delete the exchange on stop delete:true - as the exchange is changed
|
44
57
|
|
45
|
-
## 0.12.1
|
58
|
+
## [0.12.1] - 2014-11-06
|
59
|
+
### Changed
|
60
|
+
- Loose dependency on bunny to allow `~> 1.4` for stone-age old RabbitMQ servers.
|
46
61
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
* Define pool_class by string to make it useable with rails
|
52
|
-
* Add checkcredentials config option to disable initial connect to rabbitmq
|
62
|
+
## [0.11.0.rc3] - 2014-04-11
|
63
|
+
### Added
|
64
|
+
- Add checkcredentials config option to disable initial connect to rabbitmq
|
53
65
|
server to check the credentials
|
54
66
|
|
55
|
-
|
56
|
-
|
57
|
-
* Add nack for messages when an error is rescued by dispatcher
|
67
|
+
### Changed
|
68
|
+
- Define pool_class by string to make it useable with rails
|
58
69
|
|
59
|
-
## 0.11.
|
70
|
+
## [0.11.0.rc2] - 2014-03-29
|
71
|
+
### Added
|
72
|
+
- Add nack for messages when an error is rescued by dispatcher
|
60
73
|
|
61
|
-
|
74
|
+
## [0.11.0.rc1] - 2014-03-29
|
75
|
+
### Added
|
76
|
+
- Add pool_class config to override pool classes used by dispatcher
|
62
77
|
|
63
78
|
## 0.4 - 0.10
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
## 0.4.1
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
## 0.4.0
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
## 0.3.0
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
## 0.2.1
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
## 0.2.0
|
84
|
-
|
85
|
-
|
79
|
+
### Changed
|
80
|
+
- Some lost history due to several crises
|
81
|
+
|
82
|
+
## [0.4.1] - 2014-03-18
|
83
|
+
### Fixed
|
84
|
+
- Fix bug with empty routes on client start
|
85
|
+
|
86
|
+
## [0.4.0] - 2014-03-04
|
87
|
+
### Changed
|
88
|
+
- Improve railtie and autostart code
|
89
|
+
|
90
|
+
## [0.3.0] - 2014-03-03
|
91
|
+
### Added
|
92
|
+
- Support for forking web servers like unicorn
|
93
|
+
|
94
|
+
## [0.2.1] - 2014-02-26
|
95
|
+
### Fixed
|
96
|
+
- Fix wrong rails initializer code - was not use the config file
|
97
|
+
|
98
|
+
## [0.2.0] - 2014-02-21
|
99
|
+
### Changed
|
100
|
+
- Improve rails initializer code
|
101
|
+
|
102
|
+
[Unreleased]: https://github.com/jgraichen/msgr/compare/v1.1.0...HEAD
|
103
|
+
[1.1.0]: https://github.com/jgraichen/msgr/compare/v1.0.0...v1.1.0
|
104
|
+
[1.0.0]: https://github.com/jgraichen/msgr/compare/v0.15.2...v1.0.0
|
105
|
+
[0.15.2]: https://github.com/jgraichen/msgr/compare/v0.15.1...v0.15.2
|
106
|
+
[0.15.1]: https://github.com/jgraichen/msgr/compare/v0.15.0...v0.15.1
|
107
|
+
[0.15.0]: https://github.com/jgraichen/msgr/compare/v0.14.1...v0.15.0
|
108
|
+
[0.14.1]: https://github.com/jgraichen/msgr/compare/v0.14.0...v0.14.1
|
109
|
+
[0.14.0]: https://github.com/jgraichen/msgr/compare/v0.13.0...v0.14.0
|
110
|
+
[0.13.0]: https://github.com/jgraichen/msgr/compare/v0.12.3...v0.13.0
|
111
|
+
[0.12.2]: https://github.com/jgraichen/msgr/compare/v0.12.1...v0.12.2
|
112
|
+
[0.12.1]: https://github.com/jgraichen/msgr/compare/v0.12.0...v0.12.1
|
113
|
+
[0.11.0.rc3]: https://github.com/jgraichen/msgr/compare/v0.11.0.rc2...v0.11.0.rc3
|
114
|
+
[0.11.0.rc2]: https://github.com/jgraichen/msgr/compare/v0.11.0.rc1...v0.11.0.rc2
|
115
|
+
[0.11.0.rc1]: https://github.com/jgraichen/msgr/compare/v0.10.2...v0.11.0.rc1
|
116
|
+
[0.4.1]: https://github.com/jgraichen/msgr/compare/v0.4.0...v0.4.1
|
117
|
+
[0.4.0]: https://github.com/jgraichen/msgr/compare/v0.3.0...v0.4.0
|
118
|
+
[0.3.0]: https://github.com/jgraichen/msgr/compare/v0.2.1...v0.3.0
|
119
|
+
[0.2.1]: https://github.com/jgraichen/msgr/compare/v0.2.0...v0.2.1
|
120
|
+
[0.2.0]: https://github.com/jgraichen/msgr/compare/v0.1.1...v0.2.0
|