hutch 1.3.0 → 1.3.1
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 -1
- data/hutch.gemspec +1 -1
- data/lib/hutch/version.rb +1 -1
- metadata +2 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02b687d56ec0d56dc49c07722e3e55c3b86ca274008394209b3fe60d6ecb8bf4
|
|
4
|
+
data.tar.gz: a6c38c9b5f26944f7abb3b078d4cf693bb29ed2fb08987b7f4bc5e4fe2a70f78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85513bc753214f4a077c4a50510519082e3f5bc8aee75cba1df09461be9723e4a8d438a97f3c6bd3025fb59a0d7008adb5577c7faee082367ddd85f7239f748a
|
|
7
|
+
data.tar.gz: f0d6fcc77c94a0349104243c3daac3e2f4fe057ce96a4b251c0577969fcaf1b69860ca3eadd163aac353275bbe517847573f6064ea46cad70aa8979004c6e9f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 1.3.2 (in development)
|
|
2
|
+
|
|
3
|
+
No changes yet.
|
|
4
|
+
|
|
5
|
+
## 1.3.1 (Dec 11, 2024)
|
|
6
|
+
|
|
7
|
+
### Rails 8.x Compatibility
|
|
8
|
+
|
|
9
|
+
Contributed by @drobny.
|
|
10
|
+
|
|
11
|
+
GitHub issue: [#404](https://github.com/ruby-amqp/hutch/pull/404)
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
## 1.3.0 (Nov 11, 2024)
|
|
2
15
|
|
|
3
16
|
### Ruby 3.2 Compatibility
|
|
@@ -6,7 +19,7 @@ GitHub issue: [#392](https://github.com/ruby-amqp/hutch/pull/392)
|
|
|
6
19
|
|
|
7
20
|
### Relaxed ActiveSupport Dependency Constraints
|
|
8
21
|
|
|
9
|
-
Contributed by drobny.
|
|
22
|
+
Contributed by @drobny.
|
|
10
23
|
|
|
11
24
|
GitHub issue: [#402](https://github.com/ruby-amqp/hutch/pull/402)
|
|
12
25
|
|
data/hutch.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
end
|
|
11
11
|
gem.add_runtime_dependency 'carrot-top', '~> 0.0.7'
|
|
12
12
|
gem.add_runtime_dependency 'multi_json', '~> 1.15'
|
|
13
|
-
gem.add_runtime_dependency 'activesupport', '>= 4.2'
|
|
13
|
+
gem.add_runtime_dependency 'activesupport', '>= 4.2'
|
|
14
14
|
|
|
15
15
|
gem.name = 'hutch'
|
|
16
16
|
gem.summary = 'Opinionated asynchronous inter-service communication using RabbitMQ'
|
data/lib/hutch/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hutch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Harry Marr
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2024-
|
|
12
|
+
date: 2024-12-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bunny
|
|
@@ -66,9 +66,6 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '4.2'
|
|
69
|
-
- - "<="
|
|
70
|
-
- !ruby/object:Gem::Version
|
|
71
|
-
version: '8'
|
|
72
69
|
type: :runtime
|
|
73
70
|
prerelease: false
|
|
74
71
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -76,9 +73,6 @@ dependencies:
|
|
|
76
73
|
- - ">="
|
|
77
74
|
- !ruby/object:Gem::Version
|
|
78
75
|
version: '4.2'
|
|
79
|
-
- - "<="
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: '8'
|
|
82
76
|
description: Hutch is a Ruby library for enabling asynchronous inter-service communication
|
|
83
77
|
using RabbitMQ
|
|
84
78
|
email:
|