infinum_json_api_setup 0.0.6 → 0.0.7
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 +7 -0
- data/Gemfile.lock +1 -1
- data/lib/infinum_json_api_setup/version.rb +1 -1
- data/lib/infinum_json_api_setup.rb +7 -2
- 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: 7bd39fc553b558ee1c3e92ef43209cb47f37b9ed04172f1e36394182de121d88
|
|
4
|
+
data.tar.gz: b287940a9526e8aab6ec9edac50d1188a60cb5c7ea1dcb32849b33faffc789c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3753867e1c76fffa6e084aed49f7f57f8ea5181dbe43acc8357195bf1d9f3ad223bf0eabb3986637b8be264b3ef12ac700d6a0bbc29910d212cfc9f519f80b98
|
|
7
|
+
data.tar.gz: 909a9883dc4188acb28819c16ee46a7279d3f5e8bfdd837e91d3272bc914d49c249f89615d5c11326145dca6983db41de9656ef084bee634b7c1bcabe97c67d4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
|
+
## 0.0.7 (Oct 25th, 2021)
|
|
2
|
+
- fix runtime depenency loading
|
|
3
|
+
|
|
4
|
+
[Compare v0.0.6...v0.0.7](https://github.com/infinum/infinum-json-api-setup/compare/v0.0.6...v0.0.7)
|
|
5
|
+
|
|
1
6
|
## 0.0.6 (Oct 25th, 2021)
|
|
2
7
|
- update installation instructions in README
|
|
3
8
|
- promote jsonapi-query-builder and jsonapi-serializer to runtime dependencies
|
|
4
9
|
- start CHANGELOG
|
|
10
|
+
|
|
5
11
|
[Compare v0.0.5...v0.0.6](https://github.com/infinum/infinum-json-api-setup/compare/v0.0.5...v0.0.6)
|
|
6
12
|
|
|
7
13
|
## 0.0.5 (Oct 6th, 2021)
|
|
8
14
|
- bump jsonapi-query_builder dependency
|
|
9
15
|
- bump Nokogiri dependency (due to CVE)
|
|
16
|
+
|
|
10
17
|
[Compare v0.0.4...v0.0.4](https://github.com/infinum/infinum-json-api-setup/compare/v0.0.4...v0.0.5)
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
require 'jsonapi_parameters'
|
|
2
1
|
require 'rails'
|
|
2
|
+
|
|
3
|
+
require 'json'
|
|
4
|
+
require 'jsonapi_parameters'
|
|
5
|
+
require 'jsonapi/serializer'
|
|
6
|
+
require 'json_schemer'
|
|
3
7
|
require 'responders'
|
|
8
|
+
|
|
4
9
|
require 'pagy'
|
|
5
|
-
require '
|
|
10
|
+
require 'jsonapi/query_builder'
|
|
6
11
|
|
|
7
12
|
require 'infinum_json_api_setup/error'
|
|
8
13
|
require 'infinum_json_api_setup/json_api/error_handling'
|