easy-jsonapi 1.0.7 → 1.0.8

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.
data/.rubocop.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  AllCops:
2
2
  NewCops: enable
3
- TargetRubyVersion: '3.0.0'
3
+ TargetRubyVersion: '3.0.1'
4
4
  SuggestExtensions: false
5
5
 
6
6
  Metrics/AbcSize:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.0
1
+ 3.0.1
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 3.0.0
4
+ - 3.0.1
5
5
  before_install:
6
6
  - gem install bundler
7
7
  - bundler install
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.0.8 - 2020-05-04
4
+
5
+ - Updated dependencies to fix security vulnerability in rexml
6
+
3
7
  ## 1.0.7 - 2020-03-31
4
8
 
5
9
  - Fixed bug in JSONAPI::Parser::JSONParser that would serialize hashes with symbol key values instead of string
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy-jsonapi (1.0.7)
4
+ easy-jsonapi (1.0.8)
5
5
  oj (~> 3.10)
6
6
 
7
7
  GEM
@@ -24,7 +24,7 @@ GEM
24
24
  racc (~> 1.4)
25
25
  nokogiri (1.11.2-x86_64-linux)
26
26
  racc (~> 1.4)
27
- oj (3.11.3)
27
+ oj (3.11.5)
28
28
  parallel (1.20.1)
29
29
  parser (3.0.0.0)
30
30
  ast (~> 2.4.1)
data/README.md CHANGED
@@ -31,6 +31,8 @@ As a bonus, flexible user configurations can be added to the middleware providin
31
31
 
32
32
  - [*RubyGems* *Repository*](https://rubygems.org/search?query=easy-jsonapi)
33
33
 
34
+ - [*Class Diagram*](https://lucid.app/lucidchart/invitations/accept/3d543b29-4171-43cb-94db-9aeb346cdcac)
35
+
34
36
  ## Installation
35
37
 
36
38
  Add this line to your applications' Gemfile:
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.7'
5
+ spec.version = '1.0.8'
6
6
  spec.authors = ['Joshua DeMoss, Joe Viscomi']
7
7
  spec.email = ['demoss.joshua@gmail.com']
8
8
 
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.7
4
+ version: 1.0.8
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-31 00:00:00.000000000 Z
11
+ date: 2021-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -249,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  - !ruby/object:Gem::Version
250
250
  version: '0'
251
251
  requirements: []
252
- rubygems_version: 3.2.3
252
+ rubygems_version: 3.2.15
253
253
  signing_key:
254
254
  specification_version: 4
255
255
  summary: Middleware, Parser, and Validator for JSONAPI requests and serialized resopnses