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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/fortnox.gemspec +1 -1
- data/lib/fortnox/version.rb +1 -1
- data/lib/fortnox.rb +0 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f19a2c9fcfb25d0e1007a1e2d26be4c9b6a591d46c89e8944929b2db0413e839
|
|
4
|
+
data.tar.gz: 6453a4955e007f770edf4ab28b2ea0fb8777e06e40e3a86a06295522481d634f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
26
|
+
spec.add_dependency 'rest-easy', '~> 1.1.1'
|
|
27
27
|
|
|
28
28
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
29
29
|
end
|
data/lib/fortnox/version.rb
CHANGED
data/lib/fortnox.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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.
|
|
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
|