From 14410ed7b19991496584d6a2f7f6c03ca2e2a6fa Mon Sep 17 00:00:00 2001 From: Karen Metts <35154725+karenzone@users.noreply.github.com> Date: Thu, 20 Aug 2020 10:33:48 -0400 Subject: [PATCH] Doc:Replace plugin_header file with plugin_header-integration file (#40) Integration plugins need a header that is different from the stand-alone plugin header. The plugin docs links should point to the integration repo rather than the stand-alone plugin repos. The header also adds a note that the plugin is part of an integration rather than stand-alone. The new header included in this work was added with Logstash #11891. * Bump to v.5.0.6 * Add 'integration' doc attributte --- CHANGELOG.md | 3 +++ docs/filter-jdbc_static.asciidoc | 3 ++- docs/filter-jdbc_streaming.asciidoc | 3 ++- docs/input-jdbc.asciidoc | 3 ++- logstash-integration-jdbc.gemspec | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97fcc96..d4e4ce0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 5.0.6 + - DOC:Replaced plugin_header file with plugin_header-integration file. [#40](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/40) + ## 5.0.5 - Fixed user sequel_opts not being passed down properly [#37](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/37) - Refactored jdbc_streaming to share driver loading, so the fixes from the jdbc plugin also effect jdbc_streaming diff --git a/docs/filter-jdbc_static.asciidoc b/docs/filter-jdbc_static.asciidoc index 39e9da0..c4af416 100644 --- a/docs/filter-jdbc_static.asciidoc +++ b/docs/filter-jdbc_static.asciidoc @@ -1,3 +1,4 @@ +:integration: jdbc :plugin: jdbc_static :type: filter @@ -16,7 +17,7 @@ END - GENERATED VARIABLES, DO NOT EDIT! === Jdbc_static filter plugin -include::{include_path}/plugin_header.asciidoc[] +include::{include_path}/plugin_header-integration.asciidoc[] ==== Description diff --git a/docs/filter-jdbc_streaming.asciidoc b/docs/filter-jdbc_streaming.asciidoc index afd2131..84cfd2a 100644 --- a/docs/filter-jdbc_streaming.asciidoc +++ b/docs/filter-jdbc_streaming.asciidoc @@ -1,3 +1,4 @@ +:integration: jdbc :plugin: jdbc_streaming :type: filter @@ -16,7 +17,7 @@ END - GENERATED VARIABLES, DO NOT EDIT! === Jdbc_streaming filter plugin -include::{include_path}/plugin_header.asciidoc[] +include::{include_path}/plugin_header-integration.asciidoc[] ==== Description diff --git a/docs/input-jdbc.asciidoc b/docs/input-jdbc.asciidoc index 9a154e5..16f37b7 100644 --- a/docs/input-jdbc.asciidoc +++ b/docs/input-jdbc.asciidoc @@ -1,3 +1,4 @@ +:integration: jdbc :plugin: jdbc :type: input :default_codec: plain @@ -17,7 +18,7 @@ END - GENERATED VARIABLES, DO NOT EDIT! === Jdbc input plugin -include::{include_path}/plugin_header.asciidoc[] +include::{include_path}/plugin_header-integration.asciidoc[] ==== Description diff --git a/logstash-integration-jdbc.gemspec b/logstash-integration-jdbc.gemspec index 6747821..f6bb23c 100755 --- a/logstash-integration-jdbc.gemspec +++ b/logstash-integration-jdbc.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'logstash-integration-jdbc' - s.version = '5.0.5' + s.version = '5.0.6' s.licenses = ['Apache License (2.0)'] s.summary = "Integration with JDBC - input and filter plugins" 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"