-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fluent-plugin-google-cloud to work with Ruby 3. (#504)
- Loading branch information
1 parent
b6d285a
commit 5818904
Showing
9 changed files
with
91 additions
and
103 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem| | |
gem.homepage = | ||
'https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud' | ||
gem.license = 'Apache-2.0' | ||
gem.version = '0.12.12' | ||
gem.version = '0.13.0' | ||
gem.authors = ['Stackdriver Agents Team'] | ||
gem.email = ['[email protected]'] | ||
gem.required_ruby_version = Gem::Requirement.new('>= 2.6') | ||
|
@@ -23,28 +23,24 @@ Gem::Specification.new do |gem| | |
# also the fluentd version in | ||
# https://github.com/GoogleCloudPlatform/google-fluentd/blob/master/config/software/fluentd.rb. | ||
gem.add_runtime_dependency 'fluentd', '1.13.3' | ||
gem.add_runtime_dependency 'google-api-client', '0.44.2' | ||
gem.add_runtime_dependency 'googleapis-common-protos', '1.3.10' | ||
gem.add_runtime_dependency 'googleauth', '0.9.0' | ||
gem.add_runtime_dependency 'google-cloud-logging', '1.6.6' | ||
gem.add_runtime_dependency 'google-protobuf', '3.20.0' | ||
gem.add_runtime_dependency 'grpc', '1.45.0' | ||
gem.add_runtime_dependency 'google-api-client', '0.53.0' | ||
gem.add_runtime_dependency 'googleapis-common-protos', '1.4.0' | ||
gem.add_runtime_dependency 'googleauth', '1.3.0' | ||
gem.add_runtime_dependency 'google-cloud-logging', '2.3.2' | ||
gem.add_runtime_dependency 'google-cloud-monitoring-v3', '0.10.0' | ||
gem.add_runtime_dependency 'google-protobuf', '3.22.1' | ||
gem.add_runtime_dependency 'grpc', '1.52.0' | ||
gem.add_runtime_dependency 'json', '2.6.3' | ||
gem.add_runtime_dependency 'opencensus', '0.5.0' | ||
gem.add_runtime_dependency 'opencensus-stackdriver', '0.4.1' | ||
|
||
gem.add_development_dependency 'mocha', '1.9.0' | ||
# Keep this the same as in | ||
# https://github.com/fluent/fluent-plugin-prometheus/blob/master/fluent-plugin-prometheus.gemspec | ||
gem.add_development_dependency 'prometheus-client', '< 0.10' | ||
# TODO(qingling128): Upgrade rake to 11.0+ after the following issues are | ||
# fixed because rake (11.0+) requires ALL variables to be explicitly | ||
# initialized. | ||
# https://github.com/googleapis/google-auth-library-ruby/issues/227 | ||
# https://github.com/farcaller/rly/issues/2 | ||
gem.add_development_dependency 'coveralls', '0.8.23' | ||
gem.add_development_dependency 'rake', '10.5.0' | ||
gem.add_development_dependency 'prometheus-client', '< 0.10' | ||
gem.add_development_dependency 'rake', '13.0.6' | ||
gem.add_development_dependency 'rubocop', '1.48.1' | ||
gem.add_development_dependency 'test-unit', '3.3.3' | ||
gem.add_development_dependency 'webmock', '3.6.2' | ||
gem.add_development_dependency 'webmock', '3.17.1' | ||
end |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.