-
Notifications
You must be signed in to change notification settings - Fork 373
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
add supported versions workflow #4210
base: master
Are you sure you want to change the base?
Conversation
Thank you for updating Change log entry section 👏 Visited at: 2024-12-12 08:50:22 UTC |
find_min_gemfile.rb
Outdated
require 'rubygems' | ||
require 'json' | ||
|
||
def parse_gemfiles(directory = 'gemfiles/') |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
find_min_gemfile.rb
Outdated
end | ||
end | ||
|
||
def get_integration_names(directory = 'lib/datadog/tracing/contrib/') |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
BenchmarksBenchmark execution time: 2024-12-24 15:05:51 Comparing candidate commit 3b8cff4 in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 31 metrics, 2 unstable metrics. |
find_min_gemfile.rb
Outdated
|
||
# Helper: Parse a Gemfile.lock-style entry | ||
# matches on ex. actionmailer (= 6.0.6) | ||
def parse_gemfile_lock_entry(line) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
find_min_gemfile.rb
Outdated
# 1. "pessimistic" versions, ex. '~> 1.2.3' | ||
# 2. '>= 1.2.3' | ||
# 3. 1.2.3 | ||
def extract_version(constraint) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
find_min_gemfile.rb
Outdated
|
||
# Helper: Parse a Gemfile-style gem declaration | ||
# ex. gem 'ruby-kafka', '~> 5.0' | ||
def parse_gemfile_entry(line) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
find_min_gemfile.rb
Outdated
end | ||
|
||
# Helper: Validate the version format | ||
def version_valid?(version) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
end | ||
end | ||
|
||
def get_integration_names(directory = 'lib/datadog/tracing/contrib/') |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
end | ||
|
||
# Helper: Validate the version format | ||
def version_valid?(version) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
# 1. "pessimistic" versions, ex. '~> 1.2.3' | ||
# 2. '>= 1.2.3' | ||
# 3. 1.2.3 | ||
def extract_version(constraint) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
|
||
# Helper: Parse a Gemfile-style gem declaration | ||
# ex. gem 'ruby-kafka', '~> 5.0' | ||
def parse_gemfile_entry(line) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
|
||
# Helper: Parse a Gemfile.lock-style entry | ||
# matches on ex. actionmailer (= 6.0.6) | ||
def parse_gemfile_lock_entry(line) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
.github/scripts/find_min_gemfile.rb
Outdated
require 'rubygems' | ||
require 'json' | ||
|
||
def parse_gemfiles(directory = 'gemfiles/') |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
Datadog ReportBranch report: ✅ 0 Failed, 22109 Passed, 1475 Skipped, 5m 28.22s Total Time |
integration_versions.md
Outdated
|
||
| Integration | Ruby Min | Ruby Max | JRuby Min | JRuby Max | | ||
|-------------|----------|-----------|----------|----------| | ||
| action_cable | 5.2.8.1 | 7.1.3.4 | 5.2.8.1 | 6.1.7.8 | |
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.
My suggestion for excluded versions (e.g. != 3.7.0
) is to add an extra column (Ruby Unsupported & JRuby Unsupported) and add these individually excluded versions in it.
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.
@marcotc Are there currently versions that need are excluded within supported ranges of gems or is this something that would be a nice to have?
I'd say add it to |
end | ||
end | ||
|
||
def parse_gemfile(gemfile_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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'datadog' | ||
|
||
def parse_gemfiles(directory = 'gemfiles/') |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
end | ||
end | ||
|
||
def update_gem_versions(runtime, gem_name, version, min_gems, max_gems) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
[min_gems['ruby'], min_gems['jruby'], max_gems['ruby'], max_gems['jruby']] | ||
end | ||
|
||
def process_gemfile(gemfile_name, runtime, min_gems, max_gems) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
end | ||
end | ||
|
||
def process_lockfile(gemfile_name, runtime, min_gems, max_gems) |
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.
🔵 Code Quality Violation
Avoid top-level methods definition. Organize methods in modules/classes. (...read more)
This rule emphasizes the importance of organizing methods within modules or classes in Ruby. In Ruby, it's considered a best practice to wrap methods within classes or modules. This is because it helps in grouping related methods together, which in turn makes the code easier to understand, maintain, and reuse.
Not adhering to this rule can lead to a disorganized codebase, making it hard for other developers to understand and maintain the code. It can also lead to potential name clashes if a method is defined in the global scope.
To avoid violating this rule, always define your methods within a class or a module. For example, instead of writing def some_method; end
, you should write class SomeClass def some_method; end end
. This not only adheres to the rule but also improves the readability and maintainability of your code.
end | ||
|
||
def process_gemfile(gemfile_name, runtime, min_gems, max_gems) | ||
begin |
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.
⚪ Code Quality Violation
Use the method's implicit 'begin' instead of adding an explicit 'begin' block (...read more)
In Ruby, every method has an implicit begin...end
block. Therefore, using an explicit begin...end
block at the beginning of a method is redundant and can lead to unnecessary code complexity. This rule is designed to ensure that your code is as clean and efficient as possible.
The importance of this rule lies in the practice of writing clean, maintainable, and efficient code. Unnecessary code can lead to confusion for other developers, making the codebase more difficult to understand and maintain. It can also lead to potential bugs or performance issues.
To adhere to this rule, ensure that you do not use an explicit begin...end
block at the beginning of a method. Instead, you can use the method's implicit begin
and only use an explicit begin...end
block when you want to handle exceptions in a specific part of your method. This practice will lead to cleaner and more efficient code.
I think we are going to end up putting it in a separate workflow, as we want it to be tied to the tracer release process (but for now make it manual, aka triggered on |
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.
LGTM
We should get a language experts review on this and the output table here to ensure that they are happy with the integrations and associated versions: https://github.com/DataDog/dd-trace-rb/pull/4236/files#diff-f0b9875c282b2a3ae40002cd5ea7085509e744df2ba94d0301f5c0ba313203fd
|
||
# TODO: The gem information should reside in the integration declaration instead of here. | ||
|
||
mapping = { |
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.
There are some that I don't see and I don't think have a clear automation path that we could potentially just hardcode in:
Net/HTTP
and Makara (via Active Record)
are the only two I see (may have missed one though)
Just went through the list of them here: https://docs.datadoghq.com/tracing/trace_collection/compatibility/ruby/#integrations
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.
left comments about these on the generated PR: #4236
Co-authored-by: Steven Bouwkamp <stevenbouwkamp@gmail.com>
on: | ||
push: | ||
branches: | ||
- quinna.halim/add-supported-versions-table |
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.
note to self: remove before merge
What does this PR do?
find_gem_version_bounds.rb
that parsesgemfiles
to get the minimum and maximum supported version for integrations, which is run in the workflow Generate Supported Versionsgenerate_table_versions.rb
outputs the integrations and minimum supported versions in a markdown table.Generated PR example: #4236
Motivation:
Part of Autodoc generation for supported versions.
Change log entry
No.
Additional Notes:
How to test the change?