promptmenot 0.2.0 → 0.2.1

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: 6240f653fe69f0219a000d1633adafaf5752d791f99890f7a16e5256aeb8c0c9
4
- data.tar.gz: ee2a9badc12c91d1a6d075b7d8aebc04c480ee05e2d6f6b26924a1ebc8807fcb
3
+ metadata.gz: 41d3167c73e300b42d0e8e6e1f758de224d2e53defa9592ef49eab87a04daac3
4
+ data.tar.gz: a73a30fc318c721d0c77c12d65a02652f76b39bda0fcf361557f48770b2424c8
5
5
  SHA512:
6
- metadata.gz: 04b75ccb08cf0dd68f2f0696fa855c0ec201fc91b60921dc5530a631cff62de7b6332573513200bd8701696f199335dc6dc3b5104ff9a17d7a21506f5e0ff745
7
- data.tar.gz: 7d2d1c1f02d9abab3557eb04d5cd162bc878bba686f55ea8e9c7a55f3f92cbeb03700be1fbccbeba460c659129e9a83ede3abdbeda70bb38c21c2fb4084ed948
6
+ metadata.gz: 2ccbdcbeba0075d26ab828670d771b7cd11e2d49b97690ae2a3d77cfd3c1ba01b34cb3000873d979a42abd9ed74aa9f772cbe2ebbe01d1dfd08d1248d5fa0e56
7
+ data.tar.gz: 72e75e9504134bbaa46ac9c521aa8f5beeb53d3cc944ede6f679b701d6fffb062f963c71cca7e708f057dabd994bc6609c752a68ac515f435f28a86178c10426
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.1] - 2026-02-25
4
+
5
+ ### Fixed
6
+
7
+ - RuboCop `Style/RegexpLiteral` offense in `external_endpoint_exfiltration` pattern
8
+
3
9
  ## [0.2.0] - 2026-02-25
4
10
 
5
11
  ### Added
@@ -54,7 +54,7 @@ module Promptmenot
54
54
 
55
55
  register(
56
56
  name: :external_endpoint_exfiltration,
57
- regex: /\b(?:send|post|submit|forward|transmit|upload|push|pipe)\s+(?:the\s+)?(?:results?|output|response|keys?|tokens?|credentials?|secrets?|data)\s+(?:to|at|via)\s+(?:https?:\/\/|webhook|endpoint|external)/i,
57
+ regex: %r{\b(?:send|post|submit|forward|transmit|upload|push|pipe)\s+(?:the\s+)?(?:results?|output|response|keys?|tokens?|credentials?|secrets?|data)\s+(?:to|at|via)\s+(?:https?://|webhook|endpoint|external)}i,
58
58
  sensitivity: :low,
59
59
  confidence: :high
60
60
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Promptmenot
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: promptmenot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - promptmenot contributors