lex-audit 0.1.3 → 0.1.4

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: b363a68ca7a515b7b211d3a324e46a9d35ba91a8178f2a2008d745c8094cd918
4
- data.tar.gz: efe87365ce00e0d08d1c9e1325349dff0d469ab9cb16cc5ee626343814595a3b
3
+ metadata.gz: 4b945759c5e9cecb1a9da5e6f66891c53f19a7377a4397c68a32d395723a134e
4
+ data.tar.gz: f0973cd9c76720addbcdc904f7f66bcce55f208b770df5bdab2bf29bc5f1f921
5
5
  SHA512:
6
- metadata.gz: d155317671aaa668ca614ac2c88fd5352dcd46122130ead220395d5e143f5a71480013f588559d6cf200a7ab19364aeb707f5d1ecb9b0da369c21b013ac9e62b
7
- data.tar.gz: 99652b938a051f9cc1354400daf4841a64f12c792509993d73f38ce1f1a7c32a28b82e1c540461169dec5395e8633be273de08a0998dbf0de37c3b08748d0acd
6
+ metadata.gz: '0319d0e5f3efda872544651da44aa2042234689f2519ab500c74aa9c7c6c6b807cbbf16203ba1e8c694b63f8638e313670bcbf6c4f45b2a7357b2f39e6ef2555'
7
+ data.tar.gz: 66cffab3964a538ca615db77903e266f5bc2297b11ad7fb5c830efd47a55d673aaca35a0e9873284132a1a420b014c6632726d1f8b83c0f2a67bb0ec48b0aa3e
@@ -3,14 +3,32 @@ on:
3
3
  push:
4
4
  branches: [main]
5
5
  pull_request:
6
+ schedule:
7
+ - cron: '0 9 * * 1'
6
8
 
7
9
  jobs:
8
10
  ci:
9
11
  uses: LegionIO/.github/.github/workflows/ci.yml@main
10
12
 
13
+ lint:
14
+ uses: LegionIO/.github/.github/workflows/lint-patterns.yml@main
15
+
16
+ security:
17
+ uses: LegionIO/.github/.github/workflows/security-scan.yml@main
18
+
19
+ version-changelog:
20
+ uses: LegionIO/.github/.github/workflows/version-changelog.yml@main
21
+
22
+ dependency-review:
23
+ uses: LegionIO/.github/.github/workflows/dependency-review.yml@main
24
+
25
+ stale:
26
+ if: github.event_name == 'schedule'
27
+ uses: LegionIO/.github/.github/workflows/stale.yml@main
28
+
11
29
  release:
12
- needs: ci
30
+ needs: [ci, lint]
13
31
  if: github.event_name == 'push' && github.ref == 'refs/heads/main'
14
32
  uses: LegionIO/.github/.github/workflows/release.yml@main
15
33
  secrets:
16
- rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
34
+ rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [Unreleased]
4
+
5
+ ### Fixed
6
+ - Add explicit runner_class to AuditWriter actor to prevent runner resolution error at boot
7
+
3
8
  ## [0.1.3] - 2026-03-22
4
9
 
5
10
  ### Changed
data/CLAUDE.md CHANGED
@@ -10,7 +10,7 @@ Legion Extension that provides immutable, tamper-evident audit logging with a SH
10
10
 
11
11
  **GitHub**: https://github.com/LegionIO/lex-audit
12
12
  **License**: MIT
13
- **Version**: 0.1.0
13
+ **Version**: 0.1.2
14
14
 
15
15
  ## Architecture
16
16
 
@@ -7,6 +7,8 @@ module Legion
7
7
  module Audit
8
8
  module Actor
9
9
  class AuditWriter < Legion::Extensions::Actors::Subscription
10
+ def runner_class = Legion::Extensions::Audit::Runners::Audit
11
+
10
12
  def runner_function
11
13
  'write'
12
14
  end
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module Audit
6
- VERSION = '0.1.3'
6
+ VERSION = '0.1.4'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-audit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity