-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[WIP] refactor Ruby Event getter and setter #5170
Conversation
gem "tins", "1.6", :group => :development | ||
gem "rspec", "~> 3.1.0", :group => :development | ||
gem "logstash-devutils", "~> 0.0.15", :group => :development | ||
gem "logstash-devutils", ">= 0", :path => "/Users/colin/dev/src/elasticsearch/logstash-devutils" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
User specific path? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, this is not a mergeable WIP and I added in the description that these must be addressed...
@colinsurprenant I think the following strategy will work:
I guess we need to bump major version of the plugin too? |
+1 to what @ph said. Also update the gemspec for all plugins |
@suyograo @colinsurprenant we should also be able to release the new plugins with their major version and test them. People wont be able to install them in version prior to < 5.0. |
+1 |
549869f
to
16ef684
Compare
Test are passing, all the updated plugins are also passing. LGTM. |
ok, so will push commit to remove branches plugins gem, then we can merge in master |
rebasing and merging. |
refactor wip gemfiles refactor Java Event getter and setter bump plugin-api to 2.0 use plugin-api 2.0 switch to core-event-java include logstash-core-event-java.jar jar file so that gem dependency using the source tree work updated core plugins to core-api 2.0 added grok for refactor branch fix rebased specs remove temp plugins github paths remove commented out tmp alias_method
a94fb4f
to
ee2c8af
Compare
merged into master and 5.0 |
This is a WIP for the Event getter and setter refactor.
Per #5141 and #5140
This code is pushed in
feature/event_interface
shared branch.For this to work the plugins using a local
:path
in the included modifiedGemfile
need to be tweeked to use the new interface.