workarea-mail_chimp 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5dc395fc78aab119efd14cc599e525460f4d2a5516b79b5774580565fbe11a11
4
- data.tar.gz: 7f9eea8a8a4419ec34fa463a5ee367ff2cf8d450830a0f381d3e9342d381ec40
3
+ metadata.gz: 41cfd83dd223b48a89ca96973ab54ab6c2e7ca6452b6463f7b53da9962494789
4
+ data.tar.gz: e5123ca279c64e80ebfea4f66bb54b7e958a7ab656bd99c636d6d7e754396ba9
5
5
  SHA512:
6
- metadata.gz: fad3553e5f31ba569354dc900110fd4d3d0974bef934bb89cd24220dbd1dccfaf6cf2125a333b3c983c5a057d8b52c58d5f57fe44555cfce3081bdc6c1b11857
7
- data.tar.gz: 944a2af084c0c103fe510863cac6fd9a5a8d00b4ab76cfb792c13b38c1c3cb9ffb0c2dc3b95a573e9910aeadd471c46fe3b84529d896b8ee0b67c8f6ac5bd7e6
6
+ metadata.gz: 7fdb96e6aee9dbc6b27432340b3554bc7b261a89f3f71db5a027c8137609d05fb35b390e8088e94df6f3f531e15f83891b15275a5288260326427d819e462a27
7
+ data.tar.gz: f6cb0cfc8e141800d217e274212ebce72989e8e32e2e85a15a507459638e984b33730142f159755224b6fce7760fc2715a4735445300009b3fe63a2c349f9ebb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,43 @@
1
+ Workarea Mail Chimp 3.0.5 (2019-11-12)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix Test Class Name
5
+
6
+ This test class was mistakenly named `SubscriptionTest`, which caused
7
+ conflicts with the existing `SubscriptionTest` and erratic test failures
8
+ for users of the plugin. Update the class name to reflect the name of
9
+ the file it exists in, both to make it decoratable and to fix the
10
+ inconsistent setup code that was being loaded for its tests, causing the
11
+ intermittent test failures.
12
+
13
+ MAILCHIMP-2
14
+ Tom Scott
15
+
16
+
17
+
18
+ Workarea Mail Chimp 3.0.3 (2019-10-16)
19
+ --------------------------------------------------------------------------------
20
+
21
+ * Fix MailChimp Test Credentials
22
+
23
+ Update the MailChimp API Key to properly pass the client-side validation
24
+ that prevents `Gibbon` from making the calls needed in the tests for
25
+ MailChimp. Previously, this was a scrubbed credential and was one
26
+ character, which apparently doesn't fly for MailChimp and it caused the
27
+ client to block sending out requests, which was the reason behind the
28
+ tests failing. The API Key has been regenerated with a
29
+ `SecureRandom.hex` string and properly base64-encoded into the VCR
30
+ cassettes, which allow the tests to pass now.
31
+
32
+ MAILCHIMP-1
33
+ Tom Scott
34
+
35
+ * Update README
36
+
37
+ Matt Duffy
38
+
39
+
40
+
1
41
  Workarea Mail Chimp 3.0.3 (2019-08-22)
2
42
  --------------------------------------------------------------------------------
3
43
 
data/Rakefile CHANGED
@@ -38,10 +38,10 @@ desc "Release version #{Workarea::MailChimp::VERSION} of the gem"
38
38
  task :release do
39
39
  host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
40
40
 
41
- #Rake::Task["workarea:changelog"].execute
42
- #system "git add CHANGELOG.md"
43
- #system 'git commit -m "Update CHANGELOG"'
44
- #system "git push origin HEAD"
41
+ Rake::Task["workarea:changelog"].execute
42
+ system "git add CHANGELOG.md"
43
+ system 'git commit -m "Update CHANGELOG"'
44
+ system "git push origin HEAD"
45
45
 
46
46
  system "git tag -a v#{Workarea::MailChimp::VERSION} -m 'Tagging #{Workarea::MailChimp::VERSION}'"
47
47
  system "git push --tags"
@@ -1,5 +1,5 @@
1
1
  module Workarea
2
2
  module MailChimp
3
- VERSION = "3.0.4".freeze
3
+ VERSION = "3.0.5".freeze
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  require "test_helper"
2
2
 
3
3
  module Workarea
4
- class MailChimp::SubscriptionTest < Workarea::IntegrationTest
4
+ class MailChimp::TrackingParamsTest < Workarea::IntegrationTest
5
5
  setup :set_inventory
6
6
  setup :set_product
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-mail_chimp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Platt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-16 00:00:00.000000000 Z
12
+ date: 2019-11-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: workarea