dilisense_pep_client 0.1.0 → 0.2.0

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: 273fac377fd26f38c2114fb2064c9be039ae46fd5c76208ae2a2f052d576a31b
4
- data.tar.gz: a05d1cc25e0862acdba9d5cd23735dd83a835e9ba7a4f214f4a757b20623ce39
3
+ metadata.gz: 810fbade2d9ed6ba5be2d186b81d504964f9dbaa81d6989ccc4532240e00a3bb
4
+ data.tar.gz: 714c777f988613501442216e120fcec26fac09f748bbf3700136bcba13494c7e
5
5
  SHA512:
6
- metadata.gz: 11845d5f7f5a7d727b6c8a189f6148dc7801cb9d274966e0204fe990f63f8e4367df338c9cfc861a055287498fc96d2557a0629c6a1e56999a93c1c54505407c
7
- data.tar.gz: 88b14710b78f2b46a2e12a0a98d22238d29e7b0065b3e06e318eb5da00fa7f57ac2e5fdf0f1cb6e59c6c1304b6949b0587e913ad41c002e67be02a835fb32a3d
6
+ metadata.gz: c9d6a3ad3f2c83426968738206c3131963b0b074d5959e62f87b7cc9abacec43af095dbd075e7e3548e5a4fa99c743698ee76d0ccaae790bfc077a67297aa8f1
7
+ data.tar.gz: '01280cbfb143f990217ac3282f379429f714481669971887d0ade752d141414cdf89c1ac188e5746cdebc787ab7ac18b6df1456e18cbcfd7a4c4c3b96f15739f'
data/CHANGELOG.md ADDED
@@ -0,0 +1,37 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.1] - 2025-08-10
9
+
10
+ ### Fixed
11
+ - Fixed test suite configuration issues that were causing test failures
12
+ - Corrected configuration accessor methods in tests (removed incorrect `.config` method calls)
13
+ - Resolved API key loading issues in test environment
14
+ - All test suites now pass correctly (18 runs, 37 assertions, 0 failures, 0 errors, 0 skips)
15
+ - Improved test reliability and stability
16
+
17
+ ### Changed
18
+ - Enhanced test helper setup to properly handle environment variable loading
19
+ - Streamlined test execution by removing unnecessary API availability checks
20
+
21
+ ## [0.1.0] - 2025-08-10
22
+
23
+ ### Added
24
+ - Initial release of DilisensePepClient Ruby gem
25
+ - Support for PEP (Politically Exposed Persons) screening via Dilisense API
26
+ - Support for entity/company sanctions screening
27
+ - Individual person screening with multiple parameters:
28
+ - Name-based searches
29
+ - Date of birth filtering
30
+ - Gender filtering
31
+ - Fuzzy search capabilities (distance 1 and 2)
32
+ - Search all functionality
33
+ - Entity screening with fuzzy search support
34
+ - Comprehensive response formatting with grouped results
35
+ - Full test coverage with integration, unit, and fuzzy search tests
36
+ - MIT license
37
+ - Detailed documentation and usage examples
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
34
34
 
35
35
  # Runtime dependencies
36
36
  spec.add_dependency "faraday", "~> 2.0"
37
- spec.add_dependency "dotenv", "~> 2.0"
37
+ spec.add_dependency "dotenv", "~> 3.1"
38
38
  spec.add_dependency "semantic_logger", "~> 4.0"
39
39
  spec.add_dependency "dry-validation", "~> 1.10"
40
40
  spec.add_dependency "concurrent-ruby", "~> 1.2"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DilisensePepClient
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dilisense_pep_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sorbeet Payments OU
@@ -29,14 +29,14 @@ dependencies:
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '2.0'
32
+ version: '3.1'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.0'
39
+ version: '3.1'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: semantic_logger
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -202,6 +202,7 @@ extensions: []
202
202
  extra_rdoc_files: []
203
203
  files:
204
204
  - ".env.example"
205
+ - CHANGELOG.md
205
206
  - CLAUDE.md
206
207
  - LICENSE
207
208
  - Makefile