aboutsummaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorJoseph Mingrone <jrm@FreeBSD.org>2020-09-10 13:52:10 +0000
committerJoseph Mingrone <jrm@FreeBSD.org>2020-09-10 13:52:10 +0000
commite75f64e1bd0ba53358cd6b22c8b1d96196eeb2bc (patch)
tree9e596e1b0be029dc1bdcc8765086d43183c0ac8b /textproc
parent2dfd49b37c5eaa6fb8f4658ca7277d76e49ab299 (diff)
downloadports-e75f64e1bd0ba53358cd6b22c8b1d96196eeb2bc.tar.gz
ports-e75f64e1bd0ba53358cd6b22c8b1d96196eeb2bc.zip
textproc/kibana7: Update to version 7.9.1
Changelog: * Notable issues fixed: - Fixes in Docker image configuration of Monitoring and Central Management: - As more and more users adopt our docker images, we’ve been getting reports on gaps where these images don’t provide all the configuration knobs the other artifacts do. This release exposes more environment variables for configuring proxy support and certificate verification mode for monitoring and central management , and for configuring verification_mode - Pipeline execution fixes to flushing and shutdown - Since 7.2.0, a change caused terminating pipelines to not request input plugins to cleanup before shutdown, which could cause leaks in resources that weren’t freed during pipeline reloads. - Logstash supports ordered execution for pipelines with a single worker. A bug was found in this mode where the flushing mechanism wasn’t working, preventing plugins like the aggregate filter from working correctly. This has been fixed. * Consistent Fingerprinting: - Our fingerprint filter is a popular solution to perform deduplication of data in downstream systems like Elasticsearch, by computing a hash value based on data from each event. Users reported that this filter could produced different values for events containing the same data since it didn’t ensure the order in which Hash Maps/Objects/Ruby Hashes processed their key/value pairs. This has now been fixed. * Updated JRuby to 9.2.13.0: - The new JRuby release brings greater stability to its code optimizations in multithreaded workloads and a fix to exception handling in Windows environments, both issues that could affect our users. See the JRuby release notes for more information. * Plugins: - Avro Codec - 3.2.4 - [DOC] Add clarifications on partial deserialization - Fingerprint Filter - 3.2.2 - Fixed lack of consistent fingerprints on Hash/Map objects - Kv Filter - 4.4.1 - Fixed issue where a field_split_pattern containing a literal backslash failed to match correctly - Elasticsearch Input - 4.7.1 - [DOC] Updated sliced scroll link to resolve to correct location after doc structure change - [DOC] Added usage example of docinfo metadata - Http_poller Input - 5.0.2 - [DOC]Expanded url option to include Manticore keys - Snmp Input - 1.2.5 - Updated snmp4j library to v2.8.4 - Fixed: support SNMPv3 multiple identical security name with different credentials - Fixed: multithreading problem when using multiple snmp inputs with multiple v3 credentials - Syslog Input - 3.4.4 - Refactor: avoid global side-effect + cleanup - avoid setting BasicSocket.do_not_reverse_lookup as it has side effects for others - Jdbc Integration - 5.0.6 - DOC:Replaced plugin_header file with plugin_header-integration file. - Rabbitmq Integration - 7.1.1 - DOC:Replaced plugin_header file with plugin_header-integration file. - Elasticsearch Output - 10.6.2 - [DOC] Added clarifying info on http compression settings and behaviors - [DOC] Fixed entry for ilm_policy default value PR: 249108 Submitted by: Juraj Lutter <juraj@lutter.sk>
Notes
Notes: svn path=/head/; revision=548205
Diffstat (limited to 'textproc')
-rw-r--r--textproc/kibana7/Makefile4
-rw-r--r--textproc/kibana7/distinfo6
-rw-r--r--textproc/kibana7/files/patch-src_setup__node__env_index.js11
-rw-r--r--textproc/kibana7/files/patch-src_setup__node__env_prebuilt__dev__only__entry.js9
4 files changed, 14 insertions, 16 deletions
diff --git a/textproc/kibana7/Makefile b/textproc/kibana7/Makefile
index 4ad48df46a5c..b56792afa087 100644
--- a/textproc/kibana7/Makefile
+++ b/textproc/kibana7/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= kibana
-PORTVERSION= 7.8.1
+PORTVERSION= 7.9.1
DISTVERSIONSUFFIX= -darwin-x86_64
CATEGORIES= textproc www
MASTER_SITES= https://artifacts.elastic.co/downloads/kibana/ \
@@ -14,7 +14,7 @@ COMMENT= Browser based analytics and search interface to ElasticSearch
LICENSE= APACHE20
-RUN_DEPENDS= node10>=10.19.0:www/node10
+RUN_DEPENDS= node10>=10.21.0:www/node10
CONFLICTS= kibana[6]*
diff --git a/textproc/kibana7/distinfo b/textproc/kibana7/distinfo
index deca04fc7e59..25df3897941d 100644
--- a/textproc/kibana7/distinfo
+++ b/textproc/kibana7/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1595926163
-SHA256 (kibana-7.8.1-darwin-x86_64.tar.gz) = 0f342fc98c75d22983001f77f29c02b07966176149aeb9ef14fa25e4d433de0e
-SIZE (kibana-7.8.1-darwin-x86_64.tar.gz) = 345687297
+TIMESTAMP = 1599151442
+SHA256 (kibana-7.9.1-darwin-x86_64.tar.gz) = 7f015bac5de3116bc3dd06fdc8a13cce11bf5b877aad9ef81e043d2db571448a
+SIZE (kibana-7.9.1-darwin-x86_64.tar.gz) = 304677115
diff --git a/textproc/kibana7/files/patch-src_setup__node__env_index.js b/textproc/kibana7/files/patch-src_setup__node__env_index.js
deleted file mode 100644
index fb873c14ecff..000000000000
--- a/textproc/kibana7/files/patch-src_setup__node__env_index.js
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/setup_node_env/index.js.orig 2018-11-04 14:48:57 UTC
-+++ src/setup_node_env/index.js
-@@ -19,5 +19,5 @@
- * under the License.
- */
-
--require('./node_version_validator');
--require('./babel_register');
-\ No newline at end of file
-+//require('./node_version_validator');
-+require('./babel_register');
diff --git a/textproc/kibana7/files/patch-src_setup__node__env_prebuilt__dev__only__entry.js b/textproc/kibana7/files/patch-src_setup__node__env_prebuilt__dev__only__entry.js
new file mode 100644
index 000000000000..f001a9ab3aa7
--- /dev/null
+++ b/textproc/kibana7/files/patch-src_setup__node__env_prebuilt__dev__only__entry.js
@@ -0,0 +1,9 @@
+--- src/setup_node_env/prebuilt_dev_only_entry.js.orig 2020-08-22 12:22:07 UTC
++++ src/setup_node_env/prebuilt_dev_only_entry.js
+@@ -28,4 +28,4 @@ require('symbol-observable');
+
+ require('./root');
+
+-require('./node_version_validator');
+\ No newline at end of file
++//require('./node_version_validator');