QNE 0.7.1 → 0.7.2
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 +80 -1
- data/Gemfile.lock +16 -22
- data/lib/QNE/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d2294ee72229714228a5183fe7a95bada237cad1c655cd2d327a399e4ad7e77
|
|
4
|
+
data.tar.gz: eb80c566f86f125d42b7842be165c54ec06e79e2eb609e453e5c60309b33b97e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef3b819fe2aa9d1e67c73c2ab208fbdfcd2dcb5f485d70298ae69b1d0be7c5f6008f4e86353e5300b0ec431bb8c6f3c07f5b4899e8347ee37df36da23e194582
|
|
7
|
+
data.tar.gz: 37cf6a3b2df8f0cf69e86de88f8b538bdde4ce0cadabea117173cf381723358ac10ceaded61e535ea5cfc2f8450d56c787cf717a5fc386ff66e0a1759434da4e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,83 @@
|
|
|
1
|
-
|
|
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.7.2] - 2026-07-28
|
|
9
|
+
|
|
10
|
+
- Bump json, parser, and rubocop dependency versions
|
|
11
|
+
|
|
12
|
+
## [0.7.1] - 2026-03-03
|
|
13
|
+
|
|
14
|
+
- `StockLocation` now accepts parameters in initialization and passes them through to the API request
|
|
15
|
+
- Update dependencies (faraday, addressable, bigdecimal, json, language_server-protocol) and remove unused mcp/json-schema dependencies
|
|
16
|
+
|
|
17
|
+
## [0.7.0] - 2026-03-02
|
|
18
|
+
|
|
19
|
+
- Add QNE stock reports (stock location balance endpoint)
|
|
20
|
+
- Downgrade `actions/checkout` to v4 in the CI workflow
|
|
21
|
+
|
|
22
|
+
## [0.6.0] - 2026-01-20
|
|
23
|
+
|
|
24
|
+
- Add stock availability endpoint (`Stock#available`)
|
|
25
|
+
- Update dependencies
|
|
26
|
+
|
|
27
|
+
## [0.5.2] - 2025-11-05
|
|
28
|
+
|
|
29
|
+
- Update dependencies and RuboCop configuration
|
|
30
|
+
- Streamline GitHub Actions workflow (consolidate RuboCop/RSpec steps)
|
|
31
|
+
|
|
32
|
+
## [0.5.1] - 2025-11-05
|
|
33
|
+
|
|
34
|
+
- Update Gemfile and Gemfile.lock dependency versions
|
|
35
|
+
|
|
36
|
+
## [0.5.0] - 2025-06-20
|
|
37
|
+
|
|
38
|
+
- Add `Faraday::Retry` middleware support, including a configurable custom retry block in the `Connection` initializer
|
|
39
|
+
- Upgrade to Ruby 3.2.2
|
|
40
|
+
- Add example for custom `retry_block` usage to the README
|
|
41
|
+
|
|
42
|
+
## [0.4.1] - 2025-11-05
|
|
43
|
+
|
|
44
|
+
- Add GitHub Actions CI workflow for running RSpec and RuboCop
|
|
45
|
+
- Pin Ruby version (3.4.7) via `.ruby-version`
|
|
46
|
+
- Update RuboCop configuration to enforce single quotes and adjust metrics settings; resolve resulting offenses
|
|
47
|
+
- Refactor specs to use `double` instead of `OpenStruct` for response mocks
|
|
48
|
+
- Remove `byebug` development dependency
|
|
49
|
+
- Update gem dependencies to use minimum version constraints
|
|
50
|
+
|
|
51
|
+
## [0.4.0] - 2024-10-04
|
|
52
|
+
|
|
53
|
+
- Add support for configuring request options and timeouts via environment variables
|
|
54
|
+
|
|
55
|
+
## [0.3.0] - 2024-04-24
|
|
56
|
+
|
|
57
|
+
- Add `find_by` method
|
|
58
|
+
|
|
59
|
+
## [0.2.2] - 2024-03-27
|
|
60
|
+
|
|
61
|
+
- Remove persisted connection
|
|
62
|
+
|
|
63
|
+
## [0.2.1] - 2024-03-26
|
|
64
|
+
|
|
65
|
+
- Revise authentication method
|
|
66
|
+
|
|
67
|
+
## [0.2.0] - 2024-03-26
|
|
68
|
+
|
|
69
|
+
- Add Sales Invoices resource (list, show, create, update)
|
|
70
|
+
- Add Sales Order download
|
|
71
|
+
- Add Stock Locations and Stock Finder
|
|
72
|
+
- Add `Customer#find`
|
|
73
|
+
- Add UOMs (units of measure) endpoint
|
|
74
|
+
- Add Tax Codes (input/output) endpoint
|
|
75
|
+
- Add Agents endpoint
|
|
76
|
+
- Add bearer token authentication support
|
|
77
|
+
- Add `faraday-net_http_persistent` support
|
|
78
|
+
- Separate `authenticated?` from `connected?`
|
|
79
|
+
- Make `#connection` method publicly accessible
|
|
80
|
+
- Support datatype-based values for query parameters
|
|
2
81
|
|
|
3
82
|
## [0.1.0] - 2023-06-08
|
|
4
83
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
QNE (0.7.
|
|
4
|
+
QNE (0.7.2)
|
|
5
5
|
faraday (>= 1.10)
|
|
6
6
|
faraday-net_http_persistent (>= 1.2)
|
|
7
7
|
faraday-retry
|
|
@@ -10,20 +10,20 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
addressable (2.
|
|
13
|
+
addressable (2.9.0)
|
|
14
14
|
public_suffix (>= 2.0.2, < 8.0)
|
|
15
15
|
ast (2.4.3)
|
|
16
|
-
bigdecimal (4.
|
|
16
|
+
bigdecimal (4.1.2)
|
|
17
17
|
connection_pool (3.0.2)
|
|
18
18
|
crack (1.0.1)
|
|
19
19
|
bigdecimal
|
|
20
20
|
rexml
|
|
21
21
|
diff-lcs (1.6.2)
|
|
22
|
-
faraday (2.14.
|
|
22
|
+
faraday (2.14.3)
|
|
23
23
|
faraday-net_http (>= 2.0, < 3.5)
|
|
24
24
|
json
|
|
25
25
|
logger
|
|
26
|
-
faraday-net_http (3.4.
|
|
26
|
+
faraday-net_http (3.4.4)
|
|
27
27
|
net-http (~> 0.5)
|
|
28
28
|
faraday-net_http_persistent (2.3.1)
|
|
29
29
|
faraday (~> 2.5)
|
|
@@ -31,29 +31,24 @@ GEM
|
|
|
31
31
|
faraday-retry (2.4.0)
|
|
32
32
|
faraday (~> 2.0)
|
|
33
33
|
hashdiff (1.2.1)
|
|
34
|
-
json (2.
|
|
35
|
-
|
|
36
|
-
addressable (~> 2.8)
|
|
37
|
-
bigdecimal (>= 3.1, < 5)
|
|
38
|
-
language_server-protocol (3.17.0.5)
|
|
34
|
+
json (2.21.1)
|
|
35
|
+
language_server-protocol (3.17.0.6)
|
|
39
36
|
lint_roller (1.1.0)
|
|
40
37
|
logger (1.7.0)
|
|
41
|
-
mcp (0.7.1)
|
|
42
|
-
json-schema (>= 4.1)
|
|
43
38
|
net-http (0.9.1)
|
|
44
39
|
uri (>= 0.11.1)
|
|
45
40
|
net-http-persistent (4.0.8)
|
|
46
41
|
connection_pool (>= 2.2.4, < 4)
|
|
47
|
-
parallel (1.
|
|
48
|
-
parser (3.3.
|
|
42
|
+
parallel (2.1.0)
|
|
43
|
+
parser (3.3.12.0)
|
|
49
44
|
ast (~> 2.4.1)
|
|
50
45
|
racc
|
|
51
46
|
prism (1.9.0)
|
|
52
|
-
public_suffix (7.0.
|
|
47
|
+
public_suffix (7.0.5)
|
|
53
48
|
racc (1.8.1)
|
|
54
49
|
rainbow (3.1.1)
|
|
55
|
-
rake (13.
|
|
56
|
-
regexp_parser (2.
|
|
50
|
+
rake (13.4.2)
|
|
51
|
+
regexp_parser (2.12.0)
|
|
57
52
|
rexml (3.4.4)
|
|
58
53
|
rspec (3.13.2)
|
|
59
54
|
rspec-core (~> 3.13.0)
|
|
@@ -68,19 +63,18 @@ GEM
|
|
|
68
63
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
69
64
|
rspec-support (~> 3.13.0)
|
|
70
65
|
rspec-support (3.13.7)
|
|
71
|
-
rubocop (1.
|
|
66
|
+
rubocop (1.88.2)
|
|
72
67
|
json (~> 2.3)
|
|
73
68
|
language_server-protocol (~> 3.17.0.2)
|
|
74
69
|
lint_roller (~> 1.1.0)
|
|
75
|
-
|
|
76
|
-
parallel (~> 1.10)
|
|
70
|
+
parallel (>= 1.10)
|
|
77
71
|
parser (>= 3.3.0.2)
|
|
78
72
|
rainbow (>= 2.2.2, < 4.0)
|
|
79
73
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
80
74
|
rubocop-ast (>= 1.49.0, < 2.0)
|
|
81
75
|
ruby-progressbar (~> 1.7)
|
|
82
76
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
83
|
-
rubocop-ast (1.
|
|
77
|
+
rubocop-ast (1.50.0)
|
|
84
78
|
parser (>= 3.3.7.2)
|
|
85
79
|
prism (~> 1.7)
|
|
86
80
|
ruby-progressbar (1.13.0)
|
|
@@ -88,7 +82,7 @@ GEM
|
|
|
88
82
|
unicode-emoji (~> 4.1)
|
|
89
83
|
unicode-emoji (4.2.0)
|
|
90
84
|
uri (1.1.1)
|
|
91
|
-
webmock (3.26.
|
|
85
|
+
webmock (3.26.2)
|
|
92
86
|
addressable (>= 2.8.0)
|
|
93
87
|
crack (>= 0.3.2)
|
|
94
88
|
hashdiff (>= 0.4.0, < 2.0.0)
|
data/lib/QNE/version.rb
CHANGED