fortnox-api 1.0.0.rc3 → 1.0.0.rc5

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: 2297de9b35ce0c8d7f3f0e3b84f0a44a443062d257f843876657a6d26a4da160
4
- data.tar.gz: b328a297acaa35278c2b943b10bc2dc04b7e8dfbf2dd65642346f35c572bb950
3
+ metadata.gz: 5d9ec48a070723310f19f5c87fa23c64e3c92c0e3a04d9e000a6390f0d6e2f65
4
+ data.tar.gz: 7b95b905d0d908bee63b1130cede763d7a0697de0ef8d008e92b710580457674
5
5
  SHA512:
6
- metadata.gz: a73b124f68428feaaccbfea406a025bb24995b7dce7e88959dee7aca21ab449e4c92cbae11808b33c50cf8f8e498d6039399157cdcc5e68c3bcb6cfce5a35b30
7
- data.tar.gz: aa5b472af7edc87d4f808581ae99545e1b99f33d7319890843d442d9f2c7d1afe7db6fb04d509a5524d5b7f405337e0b6043d8155be1e5b3ebf2b8e83d3e75e9
6
+ metadata.gz: fc85ca3a86615ab6d329091fcdf1ec565d03325bf2b98776602e32fa74e9c440081f9e8f37c4ee4baf759cdcdd29e339c0abe0eeaae777abe52ef162e382eced
7
+ data.tar.gz: 5b01d27ef5d0d7d61961378ada0ed97356c8e2f17412bc191b711c902cda18c754058bafd86ec3409bec895da890fdda425ca6274a097c51061835eb2ede4889
data/CHANGELOG.md CHANGED
@@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to
7
7
  [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
8
8
 
9
+ ## [1.0.0.rc5] - 2026-05-15
10
+
11
+ ### Changed
12
+
13
+ - Upgraded `rest-easy` dependency to `~> 1.1.2`.
14
+
15
+ ## [1.0.0.rc4] - 2026-05-15
16
+
17
+ ### Changed
18
+
19
+ - Upgraded `rest-easy` dependency to `~> 1.1.1`. This drops the runtime
20
+ dependency on `dry-inflector`, which was never used.
21
+
9
22
  ## [1.0.0.rc3] - 2026-05-08
10
23
 
11
24
  ### Changed
@@ -168,6 +181,7 @@ for the full list of breaking changes.
168
181
  For changes prior to the 1.0 rewrite, see the
169
182
  [0.x changelog](https://github.com/accodeing/fortnox-api/blob/v0.9.2/CHANGELOG.md).
170
183
 
184
+ [1.0.0.rc4]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc3...v1.0.0.rc4
171
185
  [1.0.0.rc3]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc2...v1.0.0.rc3
172
186
  [1.0.0.rc2]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc1...v1.0.0.rc2
173
187
  [1.0.0.rc1]: https://github.com/accodeing/fortnox-api/releases/tag/v1.0.0.rc1
data/README.md CHANGED
@@ -16,7 +16,7 @@ Adding more resources is quick and easy, see the
16
16
  ## Status
17
17
 
18
18
  Version 1.0 is a complete rewrite, currently in release candidate
19
- (`1.0.0.rc3`). It is built on
19
+ (`1.0.0.rc5`). It is built on
20
20
  [rest-easy](https://github.com/accodeing/rest-easy), replacing the old
21
21
  HTTParty + Data Mapper architecture with a single resource class per entity.
22
22
  Authorization uses the Fortnox client credentials flow.
data/fortnox.gemspec CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
 
24
24
  spec.add_dependency 'countries', '~> 7.1'
25
25
  spec.add_dependency 'dry-struct', '~> 1.5'
26
- spec.add_dependency 'rest-easy', '~> 1.0.0'
26
+ spec.add_dependency 'rest-easy', '~> 1.1.2'
27
27
 
28
28
  spec.metadata['rubygems_mfa_required'] = 'true'
29
29
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fortnox
4
- VERSION = '1.0.0.rc3'
4
+ VERSION = '1.0.0.rc5'
5
5
  end
data/lib/fortnox.rb CHANGED
@@ -143,7 +143,6 @@ module Fortnox
143
143
  configure do
144
144
  base_url 'https://api.fortnox.se/3'
145
145
  max_retries 3
146
- attribute_convention :PascalCase
147
146
  authentication Auth::ThreadLocal.new
148
147
  end
149
148
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fortnox-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc3
4
+ version: 1.0.0.rc5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Schubert Erlandsson
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2026-05-08 00:00:00.000000000 Z
14
+ date: 2026-05-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: countries
@@ -47,14 +47,14 @@ dependencies:
47
47
  requirements:
48
48
  - - "~>"
49
49
  - !ruby/object:Gem::Version
50
- version: 1.0.0
50
+ version: 1.1.2
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - "~>"
56
56
  - !ruby/object:Gem::Version
57
- version: 1.0.0
57
+ version: 1.1.2
58
58
  description: Fortnox F3 REST API library, based on rest-easy.
59
59
  email:
60
60
  - info@accodeing.com