logstash-filter-cipher 4.0.1 → 4.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46b796b1a113a179ffd905368531092245493669a2cd8f9ad7a40f5a70bf93c0
4
- data.tar.gz: d8cdd9b1516c58531124337c8a80c084ce1b64e34b1a9fc2bafc13f95a899b2d
3
+ metadata.gz: d993068808d76530c423f9dd3d9ca8953c975d4c5db23516b8240ca116ecf365
4
+ data.tar.gz: 2fded845fe2b19cbcd18c5cc04752d30a069410322f900d961982cc2dbced2d9
5
5
  SHA512:
6
- metadata.gz: 87e5034edcfdc5d8f2a6e41e41e92dd0b775e26dd463f167e026bfa4a543a37a9a07bed65882fa72206c893a7c9962657434af4f4013dd166a184a5deb02a6ad
7
- data.tar.gz: 6e79143228ccef00b0495d446c5780683e6c94cc8ce67e12781c0f24a780cc2ac62a68e3be289dc232df1995b879a8407468f33b57e924f2dc9b11a6ee8d539e
6
+ metadata.gz: 25a9558d86374002d5e28df0a02ab6fa620672ec5af0ee7727e65e906d723efef90cb8841594ef38d4d1a34206d01a82ea5dcb1d8e0e8411b0c024e2fc68c09b
7
+ data.tar.gz: e8e4fe428cb66c9860da58c2ed3c8f9202fa808b2cf0680dc48ca5e680e360dfb545f5e50d12bb856b65ad8e35fb6b9e6ac7cdd5a82c73a65078cc2d7d3ac489
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.0.2
2
+ - [DOC] Fixes "Note" formatting for the Key setting [#30](https://github.com/logstash-plugins/logstash-filter-cipher/pull/30)
3
+
1
4
  ## 4.0.1
2
5
  - General improvements to code and docs [#29](https://github.com/logstash-plugins/logstash-filter-cipher/pull/29)
3
6
  - Fixed threadsafety; this plugin can now be used in pipelines with more than one worker.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-filter-cipher.svg)](https://travis-ci.org/logstash-plugins/logstash-filter-cipher)
3
+ [![Travis Build Status](https://travis-ci.com/logstash-plugins/logstash-filter-cipher.svg)](https://travis-ci.com/logstash-plugins/logstash-filter-cipher)
4
4
 
5
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
6
6
 
data/docs/index.asciidoc CHANGED
@@ -128,13 +128,13 @@ is used. AES Algorithms generally use a 16-byte IV:
128
128
 
129
129
  The key to use for encryption and decryption operations.
130
130
 
131
- NOTE: If you encounter an error message at runtime containing the following:
132
-
133
- "java.security.InvalidKeyException: Illegal key size: possibly you need to install
134
- Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files for your JRE"
135
-
136
- Please read the following: https://github.com/jruby/jruby/wiki/UnlimitedStrengthCrypto
131
+ [NOTE]
132
+ ============
133
+ Please read the https://github.com/jruby/jruby/wiki/UnlimitedStrengthCrypto[UnlimitedStrengthCrypto topic] in the https://github.com/jruby/jruby[jruby] github repo if you see a runtime error that resembles:
137
134
 
135
+ `java.security.InvalidKeyException: Illegal key size: possibly you need to install
136
+ Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files for your JRE`
137
+ ============
138
138
 
139
139
  [id="plugins-{type}s-{plugin}-key_pad"]
140
140
  ===== `key_pad`
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-cipher'
4
- s.version = '4.0.1'
4
+ s.version = '4.0.2'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Applies or removes a cipher to an event"
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-cipher
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-23 00:00:00.000000000 Z
11
+ date: 2022-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -97,8 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubyforge_project:
101
- rubygems_version: 2.6.13
100
+ rubygems_version: 3.1.6
102
101
  signing_key:
103
102
  specification_version: 4
104
103
  summary: Applies or removes a cipher to an event