release: v1.4.0 - #59
Merged
Merged
Conversation
Bump the gem version to 1.4.0 and add the CHANGELOG entry. 1.4.0 is a minor release. Highlights since 1.3.0: - Plugin-managed Elasticsearch index templates (template_name/template_file/ template_overwrite/use_legacy_template), enabling keyword (#20) and geo_point (#36) mappings; composable _index_template is the default. - Documented DECIMAL -> numeric mapping via templates + Elasticsearch coerce (#36). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release v1.4.0 (minor). Bumps
s.versionto1.4.0and adds the CHANGELOG entry.Consolidates everything merged since v1.3.0.
What's in 1.4.0
Added
template_name,template_file,template_overwrite,use_legacy_templateonmysql_replicator_elasticsearchinstall a template on startup so newly createdindices (including date-rolled ones) get the desired mapping before the first
document. Enables mappings dynamic mapping can't fix afterwards:
keyword( How to set “index”: “not_analyzed” While push data from Mysql using mysql-replicator #20)and
geo_point(mysql and es datatype support #36). Default is composable_index_template(ES ≥ 7.8);use_legacy_template trueuses legacy_template(ES 6.x+). (feat: plugin-managed Elasticsearch index templates (#20, #36 geo_point) #57, chore: composable index template default + document DECIMAL mapping (#36) #58)Documentation
this also preserves precision) → map them as
double/scaled_floatin atemplate and Elasticsearch coerces at index time. (mysql and es datatype support #36, chore: composable index template default + document DECIMAL mapping (#36) #58)
Versioning rationale
The index-template feature is opt-in and does not change core indexing or the
supported Elasticsearch range, so this is a backward-compatible MINOR bump
(1.3.0 → 1.4.0).
Post-merge release steps (maintainer)
git checkout master && git pull git tag v1.4.0 git push origin v1.4.0 gem build fluent-plugin-mysql-replicator.gemspec gem push fluent-plugin-mysql-replicator-1.4.0.gem🤖 Generated with Claude Code