mongify 1.4.1 → 1.4.2
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 +6 -0
- data/Gemfile.lock +14 -13
- data/lib/mongify/version.rb +1 -1
- data/mongify.gemspec +4 -3
- metadata +27 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07e8b3eee218999bea9a49f4f4f6235b1755dcd44671ed2af1d6c6a65a4e44a6
|
|
4
|
+
data.tar.gz: ada90480195c6eccd8bccb9f88fdd37672fb35314f12fc45f165512a7ebc08f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d059e8cafc3e1947c76b1f1b571c0e81f812a8e3241e38fdfe59272496e0edd697e5d348be959031fa65c6adf0bb3d2d6895ecf9d63666a77409cde9ac629330
|
|
7
|
+
data.tar.gz: 3c5a31a377f438a43c62f05d345633a5c6eee857ad687b860e1dcb99fb23db705b1f48b849ff272b7cd7ccb98b950fc390385c83adea45402c78320f774ce0f1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Mongify ChangeLog
|
|
2
2
|
|
|
3
|
+
## 1.4.2 / 18 Aug 2026
|
|
4
|
+
* **BREAKING**: Ruby 3.1+ now required (was 3.0+)
|
|
5
|
+
* Fixed dependency security vulnerabilities:
|
|
6
|
+
- Require ActiveRecord and ActiveSupport >= 7.2.3.2, < 8.0
|
|
7
|
+
- Require concurrent-ruby >= 1.3.7, < 2.0
|
|
8
|
+
|
|
3
9
|
## 1.4.1 / 13 Jan 2026
|
|
4
10
|
* Added MongoDB 8.0 support and compatibility testing
|
|
5
11
|
* Fixed Ruby 3.4 compatibility:
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mongify (1.4.
|
|
4
|
+
mongify (1.4.2)
|
|
5
5
|
abbrev
|
|
6
|
-
activerecord (>= 7.
|
|
7
|
-
activesupport (>= 7.
|
|
6
|
+
activerecord (>= 7.2.3.2, < 8.0)
|
|
7
|
+
activesupport (>= 7.2.3.2, < 8.0)
|
|
8
|
+
concurrent-ruby (~> 1.3, >= 1.3.7)
|
|
8
9
|
highline (>= 1.7.8)
|
|
9
10
|
mongo (~> 2.19)
|
|
10
11
|
|
|
@@ -12,13 +13,13 @@ GEM
|
|
|
12
13
|
remote: https://rubygems.org/
|
|
13
14
|
specs:
|
|
14
15
|
abbrev (0.1.2)
|
|
15
|
-
activemodel (7.2.3)
|
|
16
|
-
activesupport (= 7.2.3)
|
|
17
|
-
activerecord (7.2.3)
|
|
18
|
-
activemodel (= 7.2.3)
|
|
19
|
-
activesupport (= 7.2.3)
|
|
16
|
+
activemodel (7.2.3.2)
|
|
17
|
+
activesupport (= 7.2.3.2)
|
|
18
|
+
activerecord (7.2.3.2)
|
|
19
|
+
activemodel (= 7.2.3.2)
|
|
20
|
+
activesupport (= 7.2.3.2)
|
|
20
21
|
timeout (>= 0.4.0)
|
|
21
|
-
activesupport (7.2.3)
|
|
22
|
+
activesupport (7.2.3.2)
|
|
22
23
|
base64
|
|
23
24
|
benchmark (>= 0.3)
|
|
24
25
|
bigdecimal
|
|
@@ -27,7 +28,7 @@ GEM
|
|
|
27
28
|
drb
|
|
28
29
|
i18n (>= 1.6, < 2)
|
|
29
30
|
logger (>= 1.4.2)
|
|
30
|
-
minitest (>= 5.1)
|
|
31
|
+
minitest (>= 5.1, < 6)
|
|
31
32
|
securerandom (>= 0.3)
|
|
32
33
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
33
34
|
amazing_print (1.6.0)
|
|
@@ -38,7 +39,7 @@ GEM
|
|
|
38
39
|
builder (3.3.0)
|
|
39
40
|
byebug (11.1.3)
|
|
40
41
|
coderay (1.1.3)
|
|
41
|
-
concurrent-ruby (1.3.
|
|
42
|
+
concurrent-ruby (1.3.8)
|
|
42
43
|
connection_pool (2.5.5)
|
|
43
44
|
coolline (0.5.0)
|
|
44
45
|
unicode_utils (~> 1.4)
|
|
@@ -119,7 +120,7 @@ GEM
|
|
|
119
120
|
rspec-support (3.13.6)
|
|
120
121
|
ruby2_keywords (0.0.5)
|
|
121
122
|
securerandom (0.4.1)
|
|
122
|
-
sqlite3 (2.9.
|
|
123
|
+
sqlite3 (2.9.6-arm64-darwin)
|
|
123
124
|
sys-uname (1.4.1)
|
|
124
125
|
ffi (~> 1.1)
|
|
125
126
|
memoist3 (~> 1.0.0)
|
|
@@ -128,7 +129,7 @@ GEM
|
|
|
128
129
|
concurrent-ruby (~> 1.0)
|
|
129
130
|
unicode_utils (1.4.0)
|
|
130
131
|
watchr (0.7)
|
|
131
|
-
yard (0.9.
|
|
132
|
+
yard (0.9.45)
|
|
132
133
|
|
|
133
134
|
PLATFORMS
|
|
134
135
|
arm64-darwin-25
|
data/lib/mongify/version.rb
CHANGED
data/mongify.gemspec
CHANGED
|
@@ -10,10 +10,11 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.homepage = "http://mongify.com"
|
|
11
11
|
s.summary = %q{Translate your SQL data to MongoDB with ease}
|
|
12
12
|
s.description = %q{Mongify allows you to map your sql data into a mongodb document database with a simple DSL.}
|
|
13
|
-
s.required_ruby_version = ">= 3.
|
|
13
|
+
s.required_ruby_version = ">= 3.1"
|
|
14
14
|
|
|
15
|
-
s.add_runtime_dependency('activerecord', ">= 7.
|
|
16
|
-
s.add_runtime_dependency('activesupport', ">= 7.
|
|
15
|
+
s.add_runtime_dependency('activerecord', ">= 7.2.3.2", "< 8.0")
|
|
16
|
+
s.add_runtime_dependency('activesupport', ">= 7.2.3.2", "< 8.0")
|
|
17
|
+
s.add_runtime_dependency('concurrent-ruby', "~> 1.3", ">= 1.3.7")
|
|
17
18
|
s.add_runtime_dependency('mongo', "~> 2.19")
|
|
18
19
|
s.add_runtime_dependency('highline', '>= 1.7.8')
|
|
19
20
|
s.add_runtime_dependency('abbrev') # Required for Ruby 3.4+ (removed from stdlib)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Kalek
|
|
@@ -15,7 +15,7 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 7.
|
|
18
|
+
version: 7.2.3.2
|
|
19
19
|
- - "<"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: '8.0'
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
requirements:
|
|
26
26
|
- - ">="
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 7.
|
|
28
|
+
version: 7.2.3.2
|
|
29
29
|
- - "<"
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
31
|
version: '8.0'
|
|
@@ -35,7 +35,7 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - ">="
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: 7.
|
|
38
|
+
version: 7.2.3.2
|
|
39
39
|
- - "<"
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
41
|
version: '8.0'
|
|
@@ -45,10 +45,30 @@ dependencies:
|
|
|
45
45
|
requirements:
|
|
46
46
|
- - ">="
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 7.
|
|
48
|
+
version: 7.2.3.2
|
|
49
49
|
- - "<"
|
|
50
50
|
- !ruby/object:Gem::Version
|
|
51
51
|
version: '8.0'
|
|
52
|
+
- !ruby/object:Gem::Dependency
|
|
53
|
+
name: concurrent-ruby
|
|
54
|
+
requirement: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - "~>"
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: '1.3'
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 1.3.7
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.3'
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: 1.3.7
|
|
52
72
|
- !ruby/object:Gem::Dependency
|
|
53
73
|
name: mongo
|
|
54
74
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -352,14 +372,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
352
372
|
requirements:
|
|
353
373
|
- - ">="
|
|
354
374
|
- !ruby/object:Gem::Version
|
|
355
|
-
version: '3.
|
|
375
|
+
version: '3.1'
|
|
356
376
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
357
377
|
requirements:
|
|
358
378
|
- - ">="
|
|
359
379
|
- !ruby/object:Gem::Version
|
|
360
380
|
version: '0'
|
|
361
381
|
requirements: []
|
|
362
|
-
rubygems_version: 4.0.
|
|
382
|
+
rubygems_version: 4.0.4
|
|
363
383
|
specification_version: 4
|
|
364
384
|
summary: Translate your SQL data to MongoDB with ease
|
|
365
385
|
test_files:
|