client_side_validations-mongoid 12.0.0 → 12.1.0

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: b6348905cbcb855e07bd643c52d297dc5be08e86ac3e715f3ed31a792114156c
4
- data.tar.gz: 86287b5a6c60d0b9d47424ff6dcb38f65668e30a9ed35315cc8fef44d4c0899f
3
+ metadata.gz: 21014ee52498b82cdda15296f3369aeb28df0536a8a95a10fd3472b43640df65
4
+ data.tar.gz: '085886035e040527e41bc29755162e4bf74b687091d4eac6b0121a92d186d94b'
5
5
  SHA512:
6
- metadata.gz: 2d5aa34dd3a8f8d7310fd8366583eaa90c879e6101fd1c1f4fb6d8e5f2ba4814171e00341b3b80552129cbcd550e820d45bebbdd1fb58c56f613fd3ee82eb901
7
- data.tar.gz: 1271846e87e89fca3f2148266c40858b3d67811f42d518eb21ce02d4dabb1222038422997bf5f5d7cd4786aaa8bc2400d8a7babe78915bcc5ed0f03d92d17536
6
+ metadata.gz: 2b22ffaa8d786683da0a451cef6dff30e688f0b4bb28e08485d449cb46ad7390ce4eb2bbc18b135bd38137915c3513313aca1bd6186d9cc7a678cffb28095191
7
+ data.tar.gz: 3d74b30b1c301a9384cf15b714aa64670b9b59fe3da4e174b57df0e7e697e4aa0919270c8b7be35d13abb4de393be26bf511f98069c0922b5da1b789ef644e42
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.1.0 / 2021-12-16
4
+
5
+ * [FEATURE] Add CSV 20.0 compatibility
6
+ * [ENHANCEMENT] Update development dependencies
7
+
3
8
  ## 12.0.0 / 2021-10-09
4
9
 
5
10
  * [FEATURE] Add CSV 19.0 compatibility
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # ClientSideValidations-Mongoid #
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/client_side_validations-mongoid.svg)](https://badge.fury.io/rb/client_side_validations-mongoid)
4
- [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=client_side_validations-mongoid&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=client_side_validations-mongoid&package-manager=bundler&version-scheme=semver)
5
4
  [![Build Status](https://github.com/DavyJonesLocker/client_side_validations-mongoid/actions/workflows/ruby.yml/badge.svg)](https://github.com/DavyJonesLocker/client_side_validations-mongoid/actions)
6
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/4f8300006c02f7f4aa6d/maintainability)](https://codeclimate.com/github/DavyJonesLocker/client_side_validations-mongoid/maintainability)
7
6
  [![Coverage Status](https://coveralls.io/repos/DavyJonesLocker/client_side_validations-mongoid/badge.svg?branch=main)](https://coveralls.io/r/DavyJonesLocker/client_side_validations-mongoid?branch=main)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ClientSideValidations
4
4
  module Mongoid
5
- VERSION = '12.0.0'
5
+ VERSION = '12.1.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: client_side_validations-mongoid
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.0.0
4
+ version: 12.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geremia Taglialatela
@@ -9,22 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-10-09 00:00:00.000000000 Z
12
+ date: 2021-12-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: client_side_validations
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '19.0'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '21'
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
- - - "~>"
28
+ - - ">="
26
29
  - !ruby/object:Gem::Version
27
30
  version: '19.0'
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '21'
28
34
  - !ruby/object:Gem::Dependency
29
35
  name: mongoid
30
36
  requirement: !ruby/object:Gem::Requirement
@@ -190,6 +196,7 @@ homepage: https://github.com/DavyJonesLocker/client_side_validations-mongoid
190
196
  licenses:
191
197
  - MIT
192
198
  metadata:
199
+ rubygems_mfa_required: 'true'
193
200
  bug_tracker_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form/issues
194
201
  changelog_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form/blob/main/CHANGELOG.md
195
202
  source_code_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form