Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v4.1.3 to pick up docs changes #76

Merged
merged 2 commits into from
Dec 7, 2021
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.1.3
- [DOC] Updated URL for current xsl reference docs [#70](https://github.com/logstash-plugins/logstash-filter-xml/pull/70)
- [DOC] Added info about non valid characters [#72](https://github.com/logstash-plugins/logstash-filter-xml/pull/72)

## 4.1.2
- [DOC] Updated docs to correct name of parse_options config option [#75](https://github.com/logstash-plugins/logstash-filter-xml/pull/75)

Expand Down
9 changes: 6 additions & 3 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,14 @@ Currently supported options are:

Control characters such as ASCII 0x0 are not allowed and _always_ result in non-valid XML.

XML 1.0 Spec: https://www.w3.org/TR/2008/REC-xml-20081126/#charsets
When XML content is not valid, it will be tagged as `_xmlparsefailure`.

XML specs:

* XML 1.0 Spec: https://www.w3.org/TR/2008/REC-xml-20081126/#charsets
* XML 1.1 Spec: https://www.w3.org/TR/xml11/#charsets

XML 1.1 Spec: https://www.w3.org/TR/xml11/#charsets

In case whenever XML Content is not valid, it will be tagged with a tag `_xmlparsefailure`.


[id="plugins-{type}s-{plugin}-remove_namespaces"]
Expand Down
2 changes: 1 addition & 1 deletion logstash-filter-xml.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-filter-xml'
s.version = '4.1.2'
s.version = '4.1.3'
s.licenses = ['Apache License (2.0)']
s.summary = "Parses XML into fields"
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"
Expand Down