acts_as_trackable 0.4.8 → 0.4.9
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/Gemfile.lock +8 -8
- data/changelog.md +6 -0
- data/lib/acts_as_trackable/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91a53712ee0fbb44f7d8f4c56f097685be4ccf26ad4bcf1886b9fdb492f63fe9
|
|
4
|
+
data.tar.gz: db5ae6d2e7d29cfb342d339308f4cb9f8f89193a4de82b9b8458ce55d9c659ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 584709050a24adbb02154ceae7934bffec03a6a452702674f7db4d88c7c6500d997856c50014ce33cefbfa6037ba03952e2583745179a0df29dd69c1bf068cdf
|
|
7
|
+
data.tar.gz: a95ac770718bfa54f7ca56e8a50e2b1ece805a94542cae96ed219b4665983f8f6c4b7abec3c6457b3cfdf186a0414469d4cf1dfc0f2adf834ead6ab3e74818fa
|
data/Gemfile.lock
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
acts_as_trackable (0.4.
|
|
4
|
+
acts_as_trackable (0.4.9)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
activemodel (7.2.3)
|
|
10
|
-
activesupport (= 7.2.3)
|
|
11
|
-
activerecord (7.2.3)
|
|
12
|
-
activemodel (= 7.2.3)
|
|
13
|
-
activesupport (= 7.2.3)
|
|
9
|
+
activemodel (7.2.3.1)
|
|
10
|
+
activesupport (= 7.2.3.1)
|
|
11
|
+
activerecord (7.2.3.1)
|
|
12
|
+
activemodel (= 7.2.3.1)
|
|
13
|
+
activesupport (= 7.2.3.1)
|
|
14
14
|
timeout (>= 0.4.0)
|
|
15
|
-
activesupport (7.2.3)
|
|
15
|
+
activesupport (7.2.3.1)
|
|
16
16
|
base64
|
|
17
17
|
benchmark (>= 0.3)
|
|
18
18
|
bigdecimal
|
|
@@ -21,7 +21,7 @@ GEM
|
|
|
21
21
|
drb
|
|
22
22
|
i18n (>= 1.6, < 2)
|
|
23
23
|
logger (>= 1.4.2)
|
|
24
|
-
minitest (>= 5.1)
|
|
24
|
+
minitest (>= 5.1, < 6)
|
|
25
25
|
securerandom (>= 0.3)
|
|
26
26
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
27
27
|
base64 (0.3.0)
|
data/changelog.md
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
# acts_as_trackable Changelog
|
|
2
|
+
## Version: 0.4.9
|
|
3
|
+
### Patch
|
|
4
|
+
#### Resolves several CVEs related to ActiveSupport by updating to 7.2.3.1:
|
|
5
|
+
- CVE-2026-33176
|
|
6
|
+
- CVE-2026-33169
|
|
7
|
+
- CVE-2026-33170
|
|
2
8
|
## Version: 0.4.8
|
|
3
9
|
### Patch
|
|
4
10
|
- Removed unused `generator_spec` development dependency, eliminating unnecessary transitive dependencies (railties, actionpack, nokogiri, rack, loofah, etc.).
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_trackable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ahmad Keewan
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-
|
|
12
|
+
date: 2026-03-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: |
|
|
15
15
|
ActsAsTrackable is designed to simplify the process of tracking database object activities in Ruby on Rails applications.
|