Skip to content

Commit e2a6000

Browse files
authored
Merge pull request #46 from SumoLogic/hshek/jan-2020-release
Preparing for 1.3.0 release
2 parents 58f1981 + 922bf27 commit e2a6000

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Diff for: CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 1.3.0
4+
- [#41](https://github.com/SumoLogic/logstash-output-sumologic/pull/41) Provide Docker image with Logstash 6.6 + output plugin on docker hub
5+
- [#41](https://github.com/SumoLogic/logstash-output-sumologic/pull/41) Kubernetes support with Logstash beats to SumoLogic
6+
- [#41](https://github.com/SumoLogic/logstash-output-sumologic/pull/41) CI improving
7+
- [#36](https://github.com/SumoLogic/logstash-output-sumologic/pull/36) Update sender to send in batch.
8+
- [#36](https://github.com/SumoLogic/logstash-output-sumologic/pull/36) Support %{} field evaluation in `source_category`, `source_name`, `source_host` parameters
9+
- [#39](https://github.com/SumoLogic/logstash-output-sumologic/pull/39) Disable cookies by default
10+
311
## 1.2.2
412

513
- Bug fix: memory leak when using `%{@json}` in format
@@ -21,4 +29,4 @@
2129

2230
## 1.0.0
2331

24-
- Initial release
32+
- Initial release

Diff for: ci/run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
echo "Starting build process in: `pwd`"
44
set -e
55

6+
VERSION_IN_GEMSPEC=`cat logstash-output-sumologic.gemspec | grep "s.version" | cut -d= -f2 | tr -d '[:space:]'`
67
VERSION="${TRAVIS_TAG:-0.0.0}"
78
VERSION="${VERSION#v}"
89
: "${DOCKER_TAG:=sumologic/logstash-output-sumologic}"
910
: "${DOCKER_USERNAME:=sumodocker}"
1011
PLUGIN_NAME="logstash-output-sumologic"
1112

1213
echo "Building for tag $VERSION, modify .gemspec file..."
13-
sed -i.bak "s/0.0.0/$VERSION/g" ./$PLUGIN_NAME.gemspec
14+
sed -i.bak "s/$VERSION_IN_GEMSPEC/'$VERSION'/g" ./$PLUGIN_NAME.gemspec
1415
rm -f ./$PLUGIN_NAME.gemspec.bak
1516

1617
echo "Install bundler..."

Diff for: logstash-output-sumologic.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-output-sumologic'
3-
s.version = '0.0.0'
3+
s.version = '1.3.0'
44
s.licenses = ['Apache-2.0']
55
s.summary = 'Deliever the log to Sumo Logic cloud service.'
66
s.description = 'This gem is a Logstash output plugin to deliver the log or metrics to Sumo Logic cloud service. Go to https://github.com/SumoLogic/logstash-output-sumologic for getting help, reporting issues, etc.'

0 commit comments

Comments
 (0)