msgr 1.1.0.1.b306 → 1.2.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -11
- data/lib/msgr/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e99e52156e6545016340146893e7ccd3a252f2f9850f30c880497f3956723928
|
|
4
|
+
data.tar.gz: 79279c0f92e1889c18c93f54937927a815eeb93f0b4ec50c2a0da0da7404a300
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71069da32a4290f20921581a6a93c62e5490c656758ad871379cb06105bcdff4b9da85250c3d867d091a4576f30eac91e4933b5fdada452811457f8c380f4ce9
|
|
7
|
+
data.tar.gz: 4f93760bf39df80264a9b33e0bc2d016ccc0902d866850602820a83abd28771fd92165feefc4cbc02d168045e0deb9ee5c0a6c1b762b149aebd163064b277a45
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
|
|
|
4
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).
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
|
+
|
|
8
|
+
## [1.2.0] - 2019-06-27
|
|
7
9
|
### Added
|
|
8
10
|
- Test support of Rails 5.2
|
|
9
11
|
|
|
@@ -59,7 +61,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
59
61
|
### Changed
|
|
60
62
|
- Loose dependency on bunny to allow `~> 1.4` for stone-age old RabbitMQ servers.
|
|
61
63
|
|
|
62
|
-
## [0.11.0
|
|
64
|
+
## [0.11.0-rc3] - 2014-04-11
|
|
63
65
|
### Added
|
|
64
66
|
- Add checkcredentials config option to disable initial connect to rabbitmq
|
|
65
67
|
server to check the credentials
|
|
@@ -67,22 +69,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
67
69
|
### Changed
|
|
68
70
|
- Define pool_class by string to make it useable with rails
|
|
69
71
|
|
|
70
|
-
## [0.11.0
|
|
72
|
+
## [0.11.0-rc2] - 2014-03-29
|
|
71
73
|
### Added
|
|
72
74
|
- Add nack for messages when an error is rescued by dispatcher
|
|
73
75
|
|
|
74
|
-
## [0.11.0
|
|
76
|
+
## [0.11.0-rc1] - 2014-03-29
|
|
75
77
|
### Added
|
|
76
78
|
- Add pool_class config to override pool classes used by dispatcher
|
|
77
79
|
|
|
78
|
-
## 0.4 - 0.10
|
|
79
|
-
### Changed
|
|
80
|
-
- Some lost history due to several crises
|
|
81
|
-
|
|
82
80
|
## [0.4.1] - 2014-03-18
|
|
83
81
|
### Fixed
|
|
84
82
|
- Fix bug with empty routes on client start
|
|
85
83
|
|
|
84
|
+
## 0.4.0 - 0.10.0
|
|
85
|
+
### Changed
|
|
86
|
+
- Some lost history due to several crises
|
|
87
|
+
|
|
86
88
|
## [0.4.0] - 2014-03-04
|
|
87
89
|
### Changed
|
|
88
90
|
- Improve railtie and autostart code
|
|
@@ -99,7 +101,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
99
101
|
### Changed
|
|
100
102
|
- Improve rails initializer code
|
|
101
103
|
|
|
102
|
-
[Unreleased]: https://github.com/jgraichen/msgr/compare/v1.
|
|
104
|
+
[Unreleased]: https://github.com/jgraichen/msgr/compare/v1.2.0...HEAD
|
|
105
|
+
[1.2.0]: https://github.com/jgraichen/msgr/compare/v1.1.0...v1.2.0
|
|
103
106
|
[1.1.0]: https://github.com/jgraichen/msgr/compare/v1.0.0...v1.1.0
|
|
104
107
|
[1.0.0]: https://github.com/jgraichen/msgr/compare/v0.15.2...v1.0.0
|
|
105
108
|
[0.15.2]: https://github.com/jgraichen/msgr/compare/v0.15.1...v0.15.2
|
|
@@ -110,9 +113,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
110
113
|
[0.13.0]: https://github.com/jgraichen/msgr/compare/v0.12.3...v0.13.0
|
|
111
114
|
[0.12.2]: https://github.com/jgraichen/msgr/compare/v0.12.1...v0.12.2
|
|
112
115
|
[0.12.1]: https://github.com/jgraichen/msgr/compare/v0.12.0...v0.12.1
|
|
113
|
-
[0.11.0
|
|
114
|
-
[0.11.0
|
|
115
|
-
[0.11.0
|
|
116
|
+
[0.11.0-rc3]: https://github.com/jgraichen/msgr/compare/v0.11.0.rc2...v0.11.0.rc3
|
|
117
|
+
[0.11.0-rc2]: https://github.com/jgraichen/msgr/compare/v0.11.0.rc1...v0.11.0.rc2
|
|
118
|
+
[0.11.0-rc1]: https://github.com/jgraichen/msgr/compare/v0.10.2...v0.11.0.rc1
|
|
116
119
|
[0.4.1]: https://github.com/jgraichen/msgr/compare/v0.4.0...v0.4.1
|
|
117
120
|
[0.4.0]: https://github.com/jgraichen/msgr/compare/v0.3.0...v0.4.0
|
|
118
121
|
[0.3.0]: https://github.com/jgraichen/msgr/compare/v0.2.1...v0.3.0
|
data/lib/msgr/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Graichen
|
|
@@ -152,12 +152,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
version: '0'
|
|
153
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
154
|
requirements:
|
|
155
|
-
- - "
|
|
155
|
+
- - ">="
|
|
156
156
|
- !ruby/object:Gem::Version
|
|
157
|
-
version:
|
|
157
|
+
version: '0'
|
|
158
158
|
requirements: []
|
|
159
|
-
|
|
160
|
-
rubygems_version: 2.7.7
|
|
159
|
+
rubygems_version: 3.0.3
|
|
161
160
|
signing_key:
|
|
162
161
|
specification_version: 4
|
|
163
162
|
summary: 'Msgr: Rails-like Messaging Framework'
|