actionmailer-balancer 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5da8981f6541a8cb199d0328d5520675a691fb144c88055b684eba64e17d1196
4
- data.tar.gz: 8ee35a8f53370911e2ee71e71152937cb69e30f7738452bb31974323f30a41fd
3
+ metadata.gz: 80a4577946494bb18011f2a81aefa3ecbc139bd311052d91e89179958b336e71
4
+ data.tar.gz: d6eda542eb25e16d41cb827da74a03197c13f4525718335c33f23fc0ca33c570
5
5
  SHA512:
6
- metadata.gz: 34b7dfcda5e5a359c035980d911bce76aeea0fa93f3a2d0bd7cb886bacd270b0f757036daca7d0d91992962ae93144dd05d0847c4b458990b5e602a9d0957093
7
- data.tar.gz: e0e011eef81e0ce9c9a7dd5ffee16303a45fa569028bf7328e07dbcfd0bfa97b36c53f401699bce397ab0f2429bb9fdee9751b834659ef2376043a060070de2b
6
+ metadata.gz: 7dfc4032a83b1253425adf3cba600c44d85b1b72052aef8f6ada4e452cc1dcdd3c974264162c5a37f34e4cac81d85ffb16cd9314318a31390c16c13b47e6fe01
7
+ data.tar.gz: 7f9827022c86b63383afb3ccc7c27d2de679e01f065935b77d9a6464e754397254e83f3e182b37a2aba610a3edeef9c4005e5c54d2f0aa6b288885d5f5d847e0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [1.1.2] - 2024-12-13
2
+ - Allow Rails 8
3
+
4
+ *Alex Ghiculescu*
5
+
1
6
  ## [1.1.1] - 2024-12-09
2
7
  - Fix crash when no settings are provided for a delivery method
3
8
 
@@ -16,8 +21,8 @@
16
21
 
17
22
  ## [1.1.0] - 2024-08-19
18
23
 
19
- - Dropped Ruby 2.7 support
20
- - Updated dependencies
24
+ - Drop Ruby 2.7 support
25
+ - Update dependencies
21
26
 
22
27
  ## [1.0.0] - 2022-10-07
23
28
 
data/Gemfile.lock CHANGED
@@ -1,25 +1,25 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- actionmailer-balancer (1.1.1)
5
- actionmailer (> 4.0, < 8.0)
4
+ actionmailer-balancer (1.1.2)
5
+ actionmailer (> 4.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionmailer (7.1.4.1)
11
- actionpack (= 7.1.4.1)
12
- actionview (= 7.1.4.1)
13
- activejob (= 7.1.4.1)
14
- activesupport (= 7.1.4.1)
10
+ actionmailer (7.1.5.1)
11
+ actionpack (= 7.1.5.1)
12
+ actionview (= 7.1.5.1)
13
+ activejob (= 7.1.5.1)
14
+ activesupport (= 7.1.5.1)
15
15
  mail (~> 2.5, >= 2.5.4)
16
16
  net-imap
17
17
  net-pop
18
18
  net-smtp
19
19
  rails-dom-testing (~> 2.2)
20
- actionpack (7.1.4.1)
21
- actionview (= 7.1.4.1)
22
- activesupport (= 7.1.4.1)
20
+ actionpack (7.1.5.1)
21
+ actionview (= 7.1.5.1)
22
+ activesupport (= 7.1.5.1)
23
23
  nokogiri (>= 1.8.5)
24
24
  racc
25
25
  rack (>= 2.2.4)
@@ -27,27 +27,31 @@ GEM
27
27
  rack-test (>= 0.6.3)
28
28
  rails-dom-testing (~> 2.2)
29
29
  rails-html-sanitizer (~> 1.6)
30
- actionview (7.1.4.1)
31
- activesupport (= 7.1.4.1)
30
+ actionview (7.1.5.1)
31
+ activesupport (= 7.1.5.1)
32
32
  builder (~> 3.1)
33
33
  erubi (~> 1.11)
34
34
  rails-dom-testing (~> 2.2)
35
35
  rails-html-sanitizer (~> 1.6)
36
- activejob (7.1.4.1)
37
- activesupport (= 7.1.4.1)
36
+ activejob (7.1.5.1)
37
+ activesupport (= 7.1.5.1)
38
38
  globalid (>= 0.3.6)
39
- activesupport (7.1.4.1)
39
+ activesupport (7.1.5.1)
40
40
  base64
41
+ benchmark (>= 0.3)
41
42
  bigdecimal
42
43
  concurrent-ruby (~> 1.0, >= 1.0.2)
43
44
  connection_pool (>= 2.2.5)
44
45
  drb
45
46
  i18n (>= 1.6, < 2)
47
+ logger (>= 1.4.2)
46
48
  minitest (>= 5.1)
47
49
  mutex_m
50
+ securerandom (>= 0.3)
48
51
  tzinfo (~> 2.0)
49
52
  ast (2.4.2)
50
53
  base64 (0.2.0)
54
+ benchmark (0.4.0)
51
55
  bigdecimal (3.1.8)
52
56
  builder (3.3.0)
53
57
  concurrent-ruby (1.3.4)
@@ -63,6 +67,7 @@ GEM
63
67
  concurrent-ruby (~> 1.0)
64
68
  json (2.7.2)
65
69
  language_server-protocol (3.17.0.3)
70
+ logger (1.6.3)
66
71
  loofah (2.23.1)
67
72
  crass (~> 1.0.2)
68
73
  nokogiri (>= 1.12.0)
@@ -73,8 +78,8 @@ GEM
73
78
  net-smtp
74
79
  mini_mime (1.1.5)
75
80
  mini_portile2 (2.8.8)
76
- minitest (5.25.1)
77
- mutex_m (0.2.0)
81
+ minitest (5.25.4)
82
+ mutex_m (0.3.0)
78
83
  net-imap (0.4.14)
79
84
  date
80
85
  net-protocol
@@ -84,10 +89,10 @@ GEM
84
89
  timeout
85
90
  net-smtp (0.5.0)
86
91
  net-protocol
87
- nokogiri (1.16.8)
92
+ nokogiri (1.17.2)
88
93
  mini_portile2 (~> 2.8.2)
89
94
  racc (~> 1.4)
90
- nokogiri (1.16.8-x86_64-darwin)
95
+ nokogiri (1.17.2-x86_64-darwin)
91
96
  racc (~> 1.4)
92
97
  parallel (1.26.2)
93
98
  parser (3.3.4.2)
@@ -103,7 +108,7 @@ GEM
103
108
  activesupport (>= 5.0.0)
104
109
  minitest
105
110
  nokogiri (>= 1.6)
106
- rails-html-sanitizer (1.6.1)
111
+ rails-html-sanitizer (1.6.2)
107
112
  loofah (~> 2.21)
108
113
  nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
109
114
  rainbow (3.1.1)
@@ -141,6 +146,7 @@ GEM
141
146
  rubocop-rspec (3.0.4)
142
147
  rubocop (~> 1.61)
143
148
  ruby-progressbar (1.13.0)
149
+ securerandom (0.3.2)
144
150
  timeout (0.4.1)
145
151
  tzinfo (2.0.6)
146
152
  concurrent-ruby (~> 1.0)
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.metadata['changelog_uri'] = 'https://github.com/railsware/actionmailer-balancer/blob/main/CHANGELOG.md'
22
22
  spec.metadata['rubygems_mfa_required'] = 'true'
23
23
 
24
- spec.add_dependency 'actionmailer', '> 4.0', '< 8.0'
24
+ spec.add_dependency 'actionmailer', '> 4.0'
25
25
 
26
26
  # Specify which files should be added to the gem when it is released.
27
27
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActionMailer
4
4
  module Balancer
5
- VERSION = '1.1.1'
5
+ VERSION = '1.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer-balancer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Railsware Products Studio, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.0'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '8.0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">"
28
25
  - !ruby/object:Gem::Version
29
26
  version: '4.0'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '8.0'
33
27
  description: Balancer for ActionMailer. Distributes emails across multiple delivery
34
28
  methods in the given proportion.
35
29
  email: