easy-jsonapi 1.0.6 → 1.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/.github/workflows/publish.yml +2 -2
- data/CHANGELOG.md +6 -2
- data/Gemfile.lock +1 -1
- data/easy-jsonapi.gemspec +1 -1
- data/lib/easy/jsonapi/parser/json_parser.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f068c7e615a06af4b308f446745623cb7da1800c2bd795ef7dcd9bf5ba4f689c
|
4
|
+
data.tar.gz: 1105e6c8ad9d9844c62a14ae7e21ed019ceb72a9b9fb499be974112048090061
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52d519c1b8df1c3254620583130b8aab22206eb48c999fe3f7cd27dfc2d25c5eb91874d09aee23b96870fe147b89b5198b5f1526857966572130b93f618655e0
|
7
|
+
data.tar.gz: 64e42ef8deda94c76a74bfc2fc6b46fc391570e30d472a86bbfdae188230c9c3e52fe3e24b56d4e4129faa9792103efb7d50049f49530b242257922ac1667dba
|
@@ -51,7 +51,7 @@ jobs:
|
|
51
51
|
env:
|
52
52
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
53
53
|
with:
|
54
|
-
tag_name: 1.0.
|
55
|
-
release_name: Release 1.0.
|
54
|
+
tag_name: 1.0.7
|
55
|
+
release_name: Release 1.0.7
|
56
56
|
draft: false
|
57
57
|
prerelease: false
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,14 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
## 1.0.
|
3
|
+
## 1.0.7 - 2020-03-31
|
4
|
+
|
5
|
+
- Fixed bug in JSONAPI::Parser::JSONParser that would serialize hashes with symbol key values instead of string
|
6
|
+
|
7
|
+
## 1.0.6 - 2020-03-30
|
4
8
|
|
5
9
|
- Fixed bug in JSONAPI::Middleware that was not checking for environment variables properly
|
6
10
|
|
7
|
-
## 1.0.5 - 2020-03-
|
11
|
+
## 1.0.5 - 2020-03-30
|
8
12
|
|
9
13
|
- Fixed bug in JSONAPI::Exceptions::HeadersExceptions that didn't check for user required headers requirements
|
10
14
|
- Fixed bug in JSONAPI::Exceptions::QueryParamExceptions that didn't check for user required query param requirements
|
data/Gemfile.lock
CHANGED
data/easy-jsonapi.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy-jsonapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua DeMoss, Joe Viscomi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|