Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/elasticsearch/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.20.2"
changes:
- description: Fix authentication failure when password contains YAML special characters (e.g. double quotes) by using the escape_string Handlebars helper.
type: bugfix
link: https://github.com/elastic/integrations/issues/18434
- version: "1.20.1"
changes:
- description: Make Elasticsearch server log pipeline tolerate missing elasticsearch fields
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scope: {{scope}}
username: {{username}}
{{/if}}
{{#if password}}
password: {{password}}
password: {{escape_string password}}
{{/if}}
{{#if api_key}}
api_key: {{api_key}}
Expand Down
2 changes: 1 addition & 1 deletion packages/elasticsearch/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: elasticsearch
title: Elasticsearch
version: 1.20.1
version: 1.20.2
description: Elasticsearch Integration
type: integration
icons:
Expand Down
Loading