posxml_parser 0.10.2 → 0.11.0

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
  SHA1:
3
- metadata.gz: 7d960d5490a7fa93575a398082618f86405721f0
4
- data.tar.gz: b1e6a80af1b331eb0495b174785e176fb0518c83
3
+ metadata.gz: b4a8bc65ed72d94428634d7beecd6ee244bb7352
4
+ data.tar.gz: 0e0aa5950a65c018ab47ff9ae740c667b8dc8461
5
5
  SHA512:
6
- metadata.gz: b5f01d1a2f7edab77bef1e3ce33f1260e694bff6459fa2276a1a15f482fba63c502b9d1de01758f3127145ed649d1e2a14744d5ffd148a42177240b7f40fb9ee
7
- data.tar.gz: c93b04196f9aa3d73abca256e1f853d0c0da6a7b656302e8d10b1284216ca684a831872578cccb082a65b3370ad07750b7b6cf2c7156a46a3195af58d7cb3058
6
+ metadata.gz: b229dc46caed6a46de0a33c688e859f9931e1a763aed50f1f4220dd8d3d4ba0030bd55ab8e5672b89e139451ac3312fbe73435f99fc752cea05e9539276ef2e7
7
+ data.tar.gz: 7a2e12fa11a5861b06a2fca21b570bc4d42c31a9e8b143b63eda2a64cb650425fed41cd39b1d50f25ce6428df012b878453b6705cbdfcc6411fe427582cb5001
data/Gemfile.lock CHANGED
@@ -1,20 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- posxml_parser (0.10.2)
4
+ posxml_parser (0.11.0)
5
5
  funky-emv (~> 0.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  cloudwalk_handshake (0.7.3)
11
- da_funk (0.7.14)
11
+ da_funk (0.7.16)
12
12
  bundler (~> 1.7)
13
13
  cloudwalk_handshake (~> 0.6)
14
14
  funky-emv (~> 0.3)
15
15
  posxml_parser (~> 0.6)
16
16
  rake (~> 10.4)
17
- funky-emv (0.4.5)
17
+ funky-emv (0.4.6)
18
18
  funky-tlv (~> 0.2)
19
19
  funky-tlv (0.2.2)
20
20
  rake (10.5.0)
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Posxml Parser
2
2
 
3
+ ### 0.11.0 - 2016-12-05
4
+ - Bug fix string to integer conversation when base 16 and beginning with 0, for some reason we have a segfault.
5
+ - Implement PosxmlParser.posxml_convert_key (class level).
6
+ - Treat payment channel OPCODE_PING in posxml parser level.
7
+ - Refactoring all payment channel instruction and fix payment channel receive timeout.
8
+ - Raise exception if posxml file not found in PosxmlParser.posxml_load!.
9
+ - Abstract method PosxmlParser.posxml_store_ping to store ping receive datetime.
10
+ - Replace EmvTransaction.icc.detected? by EmvTransaction.deteceted at read_card instruction.
11
+ - Fix bIssuerScriptResLen name and indent emv.rb.
12
+ - Rename app_keys.dat by cw_app_keys.dat and app_schedule.dat by cw_app_schedule.dat.
13
+ - Set card value as “” in emv event at card_read.
14
+ - Bug fix typo bPinBypass and bPinBypassed in PosxmlParser::EMV.
15
+ - Do not unpack KSN and block in get_pin_dukpt instruction.
16
+ - Define chip_return as 0 on Magnetic event handler.
17
+ - PosxmlParser.posxml_payment_channel_check check if channel is nil.
18
+ - Refactoring payment_channel instruction to support avoid handshake by posxml layer(cloudwalk handshake responsibility).
19
+
20
+ ### 0.10.3 - 2016-12-05
21
+
22
+ - Update parameters sent by EventHandlers :emv and :mag.
23
+ - Add xml_get_element instruction.
24
+ - Add posxml_parser.mrb(empty file) file to test suite and temporally fix execution.
25
+ - Refactoring file_open using posxml_file_path (which now support params.dat file case).
26
+ - Force to_i on handle variable at file_write and avoid future problem to get file handle.
27
+ - Return correct buffer size at network_receive instruction. The behaviour expected is return the size of byte array buffer, not the size of hex buffer.
28
+
3
29
  ### 0.10.2 - 2016-12-01
4
30
 
5
31
  - Remove empty functions from PosxmlInterpreter.
@@ -1,5 +1,5 @@
1
1
 
2
2
  module PosxmlParser
3
- VERSION = "0.10.2"
3
+ VERSION = "0.11.0"
4
4
  end
5
5
 
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: posxml_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudWalk Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-01 00:00:00.000000000 Z
11
+ date: 2016-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler