fortnox-api 1.0.0.rc3 → 1.0.0.rc4

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: f19a2c9fcfb25d0e1007a1e2d26be4c9b6a591d46c89e8944929b2db0413e839
4
+ data.tar.gz: 6453a4955e007f770edf4ab28b2ea0fb8777e06e40e3a86a06295522481d634f
5
5
  SHA512:
6
- metadata.gz: a73b124f68428feaaccbfea406a025bb24995b7dce7e88959dee7aca21ab449e4c92cbae11808b33c50cf8f8e498d6039399157cdcc5e68c3bcb6cfce5a35b30
7
- data.tar.gz: aa5b472af7edc87d4f808581ae99545e1b99f33d7319890843d442d9f2c7d1afe7db6fb04d509a5524d5b7f405337e0b6043d8155be1e5b3ebf2b8e83d3e75e9
6
+ metadata.gz: 9d3853810ea665b1af6f6a1d993a19209b048146f6b8b745f8eb275778c4ac77f1a35df8c6ce0916ef92aa27e10cf1cfbe280d79d8e326d01352b1919b81644c
7
+ data.tar.gz: 4f2b91936ba25eaf2606d4751bc590f855c3a73fbc59d7a9dd80aeeaabe1e1cd8289e28c1520aeba142b2f3cf2edb564c4ac70f97013caa86b2598452baa103d
data/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ 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.rc4] - 2026-05-15
10
+
11
+ ### Changed
12
+
13
+ - Upgraded `rest-easy` dependency to `~> 1.1.1`. This drops the runtime
14
+ dependency on `dry-inflector`, which was never used.
15
+
9
16
  ## [1.0.0.rc3] - 2026-05-08
10
17
 
11
18
  ### Changed
@@ -168,6 +175,7 @@ for the full list of breaking changes.
168
175
  For changes prior to the 1.0 rewrite, see the
169
176
  [0.x changelog](https://github.com/accodeing/fortnox-api/blob/v0.9.2/CHANGELOG.md).
170
177
 
178
+ [1.0.0.rc4]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc3...v1.0.0.rc4
171
179
  [1.0.0.rc3]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc2...v1.0.0.rc3
172
180
  [1.0.0.rc2]: https://github.com/accodeing/fortnox-api/compare/v1.0.0.rc1...v1.0.0.rc2
173
181
  [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.rc4`). 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.1'
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.rc4'
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.rc4
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.1
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.1
58
58
  description: Fortnox F3 REST API library, based on rest-easy.
59
59
  email:
60
60
  - info@accodeing.com