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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 103e3bf44773b89e137e7fbeb233068092132fa2cb84f2853c279656a5840161
4
- data.tar.gz: 8ccbc6e458538cac41520f2af05bb3c5ce84d99c1052c7a47febb1138293cbc4
3
+ metadata.gz: 1955e0bb44de72a102427476e4a30818b24e9bd752fba63df6f848335886e335
4
+ data.tar.gz: dd85e3447194d1f9f12be6e239867e3ab1cae5823ee8a26d82f084a54ed69ee3
5
5
  SHA512:
6
- metadata.gz: 4dc6c76ee2a87f82d3f184c42c5236e821f626c33563d88c22bab7d5482c0493a8fbfc88568757c3c7791868cf2476398103d6e0687c2acf164efede7c3d73cd
7
- data.tar.gz: 33e06032f67edc6022bb39f33ab70ede1ca2fcf49f11677b926e7c41ee55a8e292c94f052065f9ea6ac8caefc49550691e56db86ffa5ea481111c0edad3c130a
6
+ metadata.gz: 8d910cee63ce24acfa4856b342627c3c9899dc66da57b477bc1fa7736e79a2dcc9f11d14736c5e2006f80e6ed871e73d9c7af6036db1e6d6e211b7319eb190a9
7
+ data.tar.gz: 01f5b3d036f3757d39778c3a345fc9bea9804d18189a550e13010dcd52ee7fcb7c0873fcf1aaa93e71b3fd1376cfb51653e17bfaa4eb35f17d5a950497522362
@@ -16,7 +16,7 @@ jobs:
16
16
  - truffleruby
17
17
  name: Ruby ${{ matrix.ruby }}
18
18
  steps:
19
- - uses: actions/checkout@v2
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@v2
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
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.2
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-09-19 00:00:00.000000000 Z
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