mailgun-ruby 1.3.3 → 1.3.4

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: 898306ea7328a14244502b3d2ff1a17e8bef15cf7e0851bcce8967622a817a7b
4
- data.tar.gz: d131c5aa68d89c974e49cbe48a4d225866d035e3b04f39002cd018a3efc806f2
3
+ metadata.gz: 698dd0447e5be513f8f596ae8caea1cd89354814a2597fa341fd8c3ff3f4b66d
4
+ data.tar.gz: cc33c31e120f6a4c92718f9df65a92478db208b2f60f0f4a9542a665754e9e64
5
5
  SHA512:
6
- metadata.gz: 2fda61d4a1d727a9eecfcde2647414f10db540f3c1409aaa6ef6d35a7825b52c3e8a5f6028b80a6278f435b0fc5b08ba3ddbca73376bab76888b0cba56399b9a
7
- data.tar.gz: 27716e8b77cf7e9a3a95f35896f402a62a8f5c31c65caf7fc4ce74f2ceac9f076757a79a5467114443a01a3f9cb983e40631de3921e56729dce4dc39a71170e0
6
+ metadata.gz: ba25bee6047f821c82b10a50e559a56fe2f729ac6b34b50afd0bab3a96288f78f2e1e0e6ec4871f35bfd46d472f0d9d88af44f97f4f66c60fb40aadf2d828494
7
+ data.tar.gz: 97e6a5102c3516c4a5714ccec6be7ae7bcf3a78cb037636bca6d76515ce910b17efba220e447f85acf091321323a6fd1b017ed4e15a067ace7be5f54ca7ed4a5
data/CHANGELOG.md CHANGED
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [1.3.4] - 2025-03-28
8
+
9
+ ### Added
10
+
11
+ - Increase max tag limit to 10 per message (https://github.com/mailgun/mailgun-ruby/pull/350)
12
+
13
+ ## [1.3.3] - 2025-03-25
14
+
15
+ ### Fixed
16
+
17
+ - Fix specs (https://github.com/mailgun/mailgun-ruby/pull/345)
18
+ - Fix sending attachments via faraday (https://github.com/mailgun/mailgun-ruby/pull/347)
19
+
7
20
  ## [1.3.2] - 2025-01-30
8
21
 
9
22
  ### Fixed
@@ -7,7 +7,7 @@ module Mailgun
7
7
  MAX_CAMPAIGN_IDS = 3
8
8
 
9
9
  # maximum tags per message
10
- MAX_TAGS = 3
10
+ MAX_TAGS = 10
11
11
 
12
12
  # maximum recipients per message or batch
13
13
  MAX_RECIPIENTS = 1000
@@ -190,7 +190,7 @@ module Mailgun
190
190
  @counters[:attributes][:campaign_id] += 1
191
191
  end
192
192
 
193
- # Add tags to message. Limit of 3 per message.
193
+ # Add tags to message. Limit of 10 per message.
194
194
  #
195
195
  # @param [String] tag A defined campaign ID to add to the message.
196
196
  # @return [void]
@@ -1,4 +1,4 @@
1
1
  # It's the version. Yeay!
2
2
  module Mailgun
3
- VERSION = '1.3.3'
3
+ VERSION = '1.3.4'
4
4
  end
@@ -450,7 +450,7 @@ describe 'The method add_tag' do
450
450
  end
451
451
  it 'adds too many tags to the message' do
452
452
  expect{
453
- 10.times do
453
+ 12.times do
454
454
  @mb_obj.add_tag('My-Tag')
455
455
  end }.to raise_error(Mailgun::ParameterError)
456
456
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailgun-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mailgun
8
8
  - Travis Swientek
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler