ronin-db-activerecord 0.1.2 → 0.1.3
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/ruby.yml +2 -2
- data/ChangeLog.md +7 -0
- data/README.md +3 -1
- data/gemspec.yml +2 -2
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1955e0bb44de72a102427476e4a30818b24e9bd752fba63df6f848335886e335
|
|
4
|
+
data.tar.gz: dd85e3447194d1f9f12be6e239867e3ab1cae5823ee8a26d82f084a54ed69ee3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d910cee63ce24acfa4856b342627c3c9899dc66da57b477bc1fa7736e79a2dcc9f11d14736c5e2006f80e6ed871e73d9c7af6036db1e6d6e211b7319eb190a9
|
|
7
|
+
data.tar.gz: 01f5b3d036f3757d39778c3a345fc9bea9804d18189a550e13010dcd52ee7fcb7c0873fcf1aaa93e71b3fd1376cfb51653e17bfaa4eb35f17d5a950497522362
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
- truffleruby
|
|
17
17
|
name: Ruby ${{ matrix.ruby }}
|
|
18
18
|
steps:
|
|
19
|
-
- uses: actions/checkout@
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
20
|
- name: Set up Ruby
|
|
21
21
|
uses: ruby/setup-ruby@v1
|
|
22
22
|
with:
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
rubocop:
|
|
36
36
|
runs-on: ubuntu-latest
|
|
37
37
|
steps:
|
|
38
|
-
- uses: actions/checkout@
|
|
38
|
+
- uses: actions/checkout@v4
|
|
39
39
|
- name: Set up Ruby
|
|
40
40
|
uses: ruby/setup-ruby@v1
|
|
41
41
|
with:
|
data/ChangeLog.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
### 0.1.3 / 2023-10-14
|
|
2
|
+
|
|
3
|
+
* Require [activerecord] `~> 7.0, < 7.1.0`.
|
|
4
|
+
* **Note:** [activerecord] 7.1.0 changed it's internal migration APIs which
|
|
5
|
+
`ronin-db-activerecord` was using to run migrations.
|
|
6
|
+
|
|
1
7
|
### 0.1.2 / 2023-09-19
|
|
2
8
|
|
|
3
9
|
* Fix {Ronin::DB::MACAddress#address} validation regex to match the whole
|
|
@@ -54,3 +60,4 @@
|
|
|
54
60
|
* {Ronin::DB::Vulnerability}
|
|
55
61
|
* {Ronin::DB::WebCredential}
|
|
56
62
|
|
|
63
|
+
[activerecord]: https://github.com/rails/rails/tree/main/activerecord#readme
|
data/README.md
CHANGED
|
@@ -120,7 +120,9 @@ Ronin::DB::Models.connect
|
|
|
120
120
|
## Requirements
|
|
121
121
|
|
|
122
122
|
* [Ruby] >= 3.0.0
|
|
123
|
-
* [activerecord] ~> 7.0
|
|
123
|
+
* [activerecord] ~> 7.0, < 7.1.0
|
|
124
|
+
* **Note:** [activerecord] 7.1.0 changed it's internal migration APIs which
|
|
125
|
+
`ronin-db-activerecord` was using to run migrations.
|
|
124
126
|
|
|
125
127
|
## Install
|
|
126
128
|
|
data/gemspec.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
name: ronin-db-activerecord
|
|
2
|
-
version: 0.1.
|
|
2
|
+
version: 0.1.3
|
|
3
3
|
summary: ActiveRecord backend for the Ronin Database
|
|
4
4
|
description:
|
|
5
5
|
ronin-db-activerecord contains ActiveRecord models and migrations for the
|
|
@@ -22,7 +22,7 @@ required_ruby_version: ">= 3.0.0"
|
|
|
22
22
|
|
|
23
23
|
dependencies:
|
|
24
24
|
uri-query_params: ~> 0.6
|
|
25
|
-
activerecord: ~> 7.0
|
|
25
|
+
activerecord: ~> 7.0, < 7.1.0
|
|
26
26
|
|
|
27
27
|
development_dependencies:
|
|
28
28
|
bundler: ~> 2.0
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ronin-db-activerecord
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Postmodern
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: uri-query_params
|
|
@@ -31,6 +31,9 @@ dependencies:
|
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '7.0'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 7.1.0
|
|
34
37
|
type: :runtime
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -38,6 +41,9 @@ dependencies:
|
|
|
38
41
|
- - "~>"
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
43
|
version: '7.0'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 7.1.0
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
name: bundler
|
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|