transact_pro 1.1.0 → 1.1.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 +4 -0
- data/Gemfile.lock +1 -1
- data/lib/transact_pro/request_specs.rb +2 -1
- data/lib/transact_pro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 011c86b0a8665c94653648cf513db0934d918526
|
|
4
|
+
data.tar.gz: 0a2eca582f84e0734bb3c267aa8de19053d03ec0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b584e8f8f61484982dd2117d876a952c12f50f63838fb1f7e05f71d91000cf2d97c1c0db872628c25932b5cf087018b8a2fee21faa32801bed4641cdd2005fba
|
|
7
|
+
data.tar.gz: 12373ddb763909c7b2a181214a5a0c87338794839d7fdaad48f656f216032334d78a8ee5d2072a2083cf7e91bb6b3a365d3b825f7bb82b570bddab2ddf11939e
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.1.1] - 2018-02-27
|
|
8
|
+
### Fixed
|
|
9
|
+
- Recurring inits now pass the `save_card: "1"` parameter and actually save card data.
|
|
10
|
+
|
|
7
11
|
## [1.1.0] - 2018-02-20
|
|
8
12
|
### Added
|
|
9
13
|
- `LOOSENED_VALIDATIONS` gateway option.
|
data/Gemfile.lock
CHANGED
|
@@ -122,7 +122,8 @@ module TransactPro
|
|
|
122
122
|
INIT_RECURRING_REGISTRATION_DEFAULTS = INIT_DEFAULTS.
|
|
123
123
|
dup.merge(save_card: "1").freeze
|
|
124
124
|
|
|
125
|
-
LOOSENED_INIT_RECURRING_REGISTRATION_SPEC = LOOSENED_INIT_SPEC
|
|
125
|
+
LOOSENED_INIT_RECURRING_REGISTRATION_SPEC = LOOSENED_INIT_SPEC.
|
|
126
|
+
dup.merge(save_card: {mandatory: true, format: %r'\d+'}).freeze
|
|
126
127
|
|
|
127
128
|
# 32. Table
|
|
128
129
|
# Field Format Description
|
data/lib/transact_pro/version.rb
CHANGED