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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a2175abfb1437c53be0b73deaa02f061d108b76e75dfb624fb075ae8c041765
4
- data.tar.gz: 24b66e0fd2bd217670d69acc71bfb69dc05dff8fb24d78ca801ee1d918dde4a6
3
+ metadata.gz: f068c7e615a06af4b308f446745623cb7da1800c2bd795ef7dcd9bf5ba4f689c
4
+ data.tar.gz: 1105e6c8ad9d9844c62a14ae7e21ed019ceb72a9b9fb499be974112048090061
5
5
  SHA512:
6
- metadata.gz: 6dec2506c365e14b658e6daaff3c386d146bc9b5de1762a06a2d70fb06544fded3591a48b314d2c0bc9ce1ac71b1a74b67c29de5291715d3a86514ba72d8cd24
7
- data.tar.gz: 8452d415ae232cde5530ddafdff6fd8fd7f8a40ad1fe42a6295de8b4986abb107c0c3a02b222d082af913ff4094cb0755f4a4b7d1228af4d2fde485f2b5d0a37
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.6
55
- release_name: Release 1.0.6
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.6 - 2020-03-20
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-20
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy-jsonapi (1.0.6)
4
+ easy-jsonapi (1.0.7)
5
5
  oj (~> 3.10)
6
6
 
7
7
  GEM
data/easy-jsonapi.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'easy-jsonapi'
5
- spec.version = '1.0.6'
5
+ spec.version = '1.0.7'
6
6
  spec.authors = ['Joshua DeMoss, Joe Viscomi']
7
7
  spec.email = ['demoss.joshua@gmail.com']
8
8
 
@@ -21,7 +21,7 @@ module JSONAPI
21
21
  # Convert ruby hash into JSON
22
22
  # @param ruby_hash [Hash] THe hash to convert into JSON
23
23
  def self.dump(ruby_hash)
24
- Oj.dump(ruby_hash)
24
+ Oj.dump(ruby_hash, mode: :compat)
25
25
  end
26
26
 
27
27
  end
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.6
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-30 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack