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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +96 -61
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c514dacc24ec19f576a148dc068cdfd91ef2b3eacd79e43d95725c868db7c416
4
- data.tar.gz: 376c5a3c5c34fa494afbb31ec6b517e3e202b6b89aad62bff2610b2922bb65d5
3
+ metadata.gz: 2e047a0ea29e36b03f497fc3f1ea46f06e599ebca83c64ac26e1176a923f4178
4
+ data.tar.gz: 0aa4869c0f20038053b3c36af9895bad43d35cc3b0b47ff891f729d048f7de04
5
5
  SHA512:
6
- metadata.gz: 410211a5abcd254a22783124a1889c4e36e7598e710d203349e27497abc250555d79b9e259305e20fccacf56354fc2ea68e863144a0c48a84cd3e75b28f90a5b
7
- data.tar.gz: 72c91dfbb724173ffaf5e5553bf55ff95a6ead10cd3c9e11d7dfc1630bc19c58f8ecec66b72d5e1171ff054e66b193b447e86a3f0a2aa2bbcc54dcf40deb39a8
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
- ## 1.1
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
- * Add command line runner
6
+ ## [Unreleased]
7
+ ### Added
8
+ - Test support of Rails 5.2
6
9
 
7
- ## 1.0
10
+ ### Changed
11
+ - Serialize JSON using core JSON instead of MultiJson
12
+ - Remove application/text fallback for payload (#25)
8
13
 
9
- * Configure prefetch per binding and disable auto ack in consumer for customized batch processing (#15)
10
- * Replace usage of deprecated exception class (#12)
14
+ ## [1.1.0] - 2018-07-25
15
+ ### Added
16
+ - New command line runner
11
17
 
12
- ## 0.15.2
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
- * Fix regression in parsing `:uri` config with empty path
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
- * Fix errors with additional configuration keys for AMQP connection (#13)
19
-
20
- ## 0.15.0
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
- * Add option to release bindings before purging
26
- * Rework TestPool timeout handling to not account processing time
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
- * Add experimental test pool (`Msgr::TestPool`)
39
+ ### Changed
40
+ - Rework TestPool timeout handling to not account processing time
36
41
 
37
- ## 0.13.0
42
+ ## [0.14.1] - 2016-02-17
43
+ ### Fixed
44
+ - Fix loading test pool source file
38
45
 
39
- * Use `Rails.application.config_for` if available.
46
+ ## [0.14.0] - 2016-02-17
47
+ ### Added
48
+ - Add experimental test pool (`Msgr::TestPool`)
40
49
 
41
- ## 0.12.2
50
+ ## [0.13.0] - 2015-08-24
51
+ ### Changed
52
+ - Use `Rails.application.config_for` if available.
42
53
 
43
- * Do not delete the exchange on stop delete:true - as the exchange is changed
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
- * Loose dependency on bunny to allow ~> 1.4 for stone-age old RabbitMQ servers.
48
-
49
- ## 0.11.rc3
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
- ## 0.11.rc2
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.rc1
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
- * Add pool_class config to override pool classes used by dispatcher
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
- * Some lost history due to several crises
66
-
67
- ## 0.4.1
68
-
69
- * Fix bug with empty routes on client start
70
-
71
- ## 0.4.0
72
-
73
- * Improve railtie and autostart code
74
-
75
- ## 0.3.0
76
-
77
- * Support for forking web servers like unicorn
78
-
79
- ## 0.2.1
80
-
81
- * Fix wrong rails initializer code - was not use the config file
82
-
83
- ## 0.2.0
84
-
85
- * Improve rails initializer code
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: msgr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.1.b291
4
+ version: 1.1.0.1.b292
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen