aikido-zen 1.4.0-aarch64-linux → 1.4.1-aarch64-linux

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: 11c71b39347f1c784acd276d21ce0eebcfc038ef8964e007e8f0430c37a012d6
4
- data.tar.gz: 5262c60dd4d29dc144f9c003a54e2922686e5bbd394880cfc7ddf986d4903b8b
3
+ metadata.gz: 72eead2f8cd6d53523fea0f98152081f97f8649a55be8d4820ea07d21c3c25af
4
+ data.tar.gz: 7fcc37e5df7c65b4a2273947911b4d82e309107f09522dcf321bcbbc28d1e915
5
5
  SHA512:
6
- metadata.gz: 199ba0ea14b0abc366d6f661295a0c0a2a2b78cda9236a2775870334355b1f08520e247134a9e9f769100b9f99beb77f3a591f3632309699efd9f03887d23fe9
7
- data.tar.gz: db68cb0ebf5df595925ce7f22e71d6d22ed23210b256459edc2c1a1e530bb4a1533ef3723334b425509aa8fef2b1813b64fee4ab1de3e209d65afa9c40f16593
6
+ metadata.gz: f62fcbdf8bdeb06277090fbc5f1f96a42810d81d4b8b032824dc383d49edf13cf5795872b1e18b081e44156d88ef3b800b23ecddd2fc3e21166f75267e2070ad
7
+ data.tar.gz: 6a881d2c4d75f5857675b4ed8a1e5c80ab75cb20a830e9469793a1a4973f1a211f0b3e2aba064f501f9f88f55d51fd137bfcbd881affa846c77770ee871fd74c
data/Rakefile CHANGED
@@ -46,6 +46,7 @@ end
46
46
  Minitest::TestTask.create do |test_task|
47
47
  test_task.test_globs = FileList["test/**/{test_*,*_test}.rb"]
48
48
  .exclude("test/e2e/**/*.rb")
49
+ .exclude("test/rails/**/*.rb")
49
50
  end
50
51
  task test: "libzen:download:current"
51
52
 
@@ -2,10 +2,6 @@
2
2
 
3
3
  module Aikido::Zen
4
4
  class RuntimeSettings::DomainSettings
5
- def self.none
6
- @no_settings ||= new(mode: :block)
7
- end
8
-
9
5
  def self.from_json(data)
10
6
  new(
11
7
  mode: data["mode"]&.to_sym
@@ -17,7 +17,6 @@ module Aikido::Zen
17
17
 
18
18
  def initialize(domains = {})
19
19
  @domains = domains
20
- @domains.default = RuntimeSettings::DomainSettings.none
21
20
  end
22
21
 
23
22
  def [](hostname)
@@ -219,9 +219,7 @@ module Aikido::Zen
219
219
  def block_outbound?(connection)
220
220
  domain = domains[connection.host]
221
221
 
222
- return true if !domain.equal?(RuntimeSettings::DomainSettings.none) && domain.block?
223
-
224
- block_new_outbound && domain.block?
222
+ (!domain.nil? && domain.block?) || (domain.nil? && block_new_outbound)
225
223
  end
226
224
  end
227
225
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Aikido
4
4
  module Zen
5
- VERSION = "1.4.0"
5
+ VERSION = "1.4.1"
6
6
 
7
7
  # The version of libzen_internals that we build against.
8
8
  LIBZEN_VERSION = "0.1.61"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aikido-zen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Aikido Security
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-05-08 00:00:00.000000000 Z
11
+ date: 2026-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby