-
Notifications
You must be signed in to change notification settings - Fork 1
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 rake from 13.0.6 to 13.1.0 #542
Merged
Merged
Conversation
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
gem compare rake 13.0.6 13.1.0 Compared versions: ["13.0.6", "13.1.0"]
DIFFERENT date:
13.0.6: 2021-07-09 00:00:00 UTC
13.1.0: 2023-10-28 00:00:00 UTC
DIFFERENT metadata:
13.0.6: {"bug_tracker_uri"=>"https://github.com/ruby/rake/issues", "changelog_uri"=>"https://github.com/ruby/rake/blob/v13.0.6/History.rdoc", "documentation_uri"=>"https://ruby.github.io/rake", "source_code_uri"=>"https://github.com/ruby/rake/tree/v13.0.6"}
13.1.0: {"bug_tracker_uri"=>"https://github.com/ruby/rake/issues", "changelog_uri"=>"https://github.com/ruby/rake/blob/v13.1.0/History.rdoc", "documentation_uri"=>"https://ruby.github.io/rake", "source_code_uri"=>"https://github.com/ruby/rake/tree/v13.1.0"}
DIFFERENT required_ruby_version:
13.0.6: >= 2.2
13.1.0: >= 2.3
DIFFERENT rubygems_version:
13.0.6: 3.3.0.dev
13.1.0: 3.5.0.dev
DIFFERENT version:
13.0.6: 13.0.6
13.1.0: 13.1.0
DIFFERENT files:
13.0.6->13.1.0:
* Changed:
README.rdoc +1/-1
lib/rake/application.rb +26/-2
lib/rake/dsl_definition.rb +1/-1
lib/rake/file_task.rb +8/-4
lib/rake/file_utils.rb +0/-2
lib/rake/packagetask.rb +1/-1
lib/rake/task.rb +2/-2
lib/rake/thread_pool.rb +1/-1
lib/rake/version.rb +1/-1
rake.gemspec +24/-23 |
gem compare --diff rake 13.0.6 13.1.0 Compared versions: ["13.0.6", "13.1.0"]
DIFFERENT files:
13.0.6->13.1.0:
* Changed:
README.rdoc
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/README.rdoc 2023-10-30 03:16:52.997547299 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/README.rdoc 2023-10-30 03:16:53.009547655 +0000
@@ -119 +119 @@
-[<b>Hiroshi SHIBATA</b>] Maintainer of Rake 10.X and Rake 11.X
+[<b>Hiroshi SHIBATA</b>] Maintainer of Rake 10 and later
lib/rake/application.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/application.rb 2023-10-30 03:16:52.997547299 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/application.rb 2023-10-30 03:16:53.013547774 +0000
@@ -96,0 +97 @@
+ load_debug_at_stop_feature
@@ -100,0 +102,21 @@
+ def load_debug_at_stop_feature
+ return unless ENV["RAKE_DEBUG"]
+ require "debug/session"
+ DEBUGGER__::start no_sigint_hook: true, nonstop: true
+ Rake::Task.prepend Module.new {
+ def execute(*)
+ exception = DEBUGGER__::SESSION.capture_exception_frames(/(exe|bin|lib)\/rake/) do
+ super
+ end
+
+ if exception
+ STDERR.puts exception.message
+ DEBUGGER__::SESSION.enter_postmortem_session exception
+ raise exception
+ end
+ end
+ }
+ rescue LoadError
+ end
+ private :load_debug_at_stop_feature
+
@@ -127 +149 @@
- thread_pool.join
+ thread_pool.join if defined?(@thread_pool)
@@ -239,0 +262,2 @@
+ elsif ex.respond_to?(:detailed_message)
+ trace "#{ex.class.name}: #{ex.detailed_message(highlight: false)}"
@@ -578 +602 @@
- "-AT combination displays all of tasks contained no description.",
+ "-AT combination displays all the tasks, including those without descriptions.",
lib/rake/dsl_definition.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/dsl_definition.rb 2023-10-30 03:16:53.001547418 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/dsl_definition.rb 2023-10-30 03:16:53.013547774 +0000
@@ -161 +161 @@
- # task test: [:build]
+ # task test: [:build] do
lib/rake/file_task.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/file_task.rb 2023-10-30 03:16:53.001547418 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/file_task.rb 2023-10-30 03:16:53.013547774 +0000
@@ -17 +17,5 @@
- !File.exist?(name) || out_of_date?(timestamp) || @application.options.build_all
+ begin
+ out_of_date?(File.mtime(name)) || @application.options.build_all
+ rescue Errno::ENOENT
+ true
+ end
@@ -22,3 +26,3 @@
- if File.exist?(name)
- File.mtime(name.to_s)
- else
+ begin
+ File.mtime(name)
+ rescue Errno::ENOENT
lib/rake/file_utils.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/file_utils.rb 2023-10-30 03:16:53.001547418 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/file_utils.rb 2023-10-30 03:16:53.013547774 +0000
@@ -63,2 +62,0 @@
- show_command = show_command[0, 42] + "..." unless $trace
-
lib/rake/packagetask.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/packagetask.rb 2023-10-30 03:16:53.005547536 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/packagetask.rb 2023-10-30 03:16:53.017547892 +0000
@@ -82 +82 @@
- # True if parent directory should be omited (default is false)
+ # True if parent directory should be omitted (default is false)
lib/rake/task.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/task.rb 2023-10-30 03:16:53.005547536 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/task.rb 2023-10-30 03:16:53.017547892 +0000
@@ -279 +279 @@
- @actions.each { |act| act.call(self, args, **opts)}
+ @actions.each { |act| act.call(self, args, **opts) }
@@ -281 +281 @@
- @actions.each { |act| act.call(self, args)}
+ @actions.each { |act| act.call(self, args) }
lib/rake/thread_pool.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/thread_pool.rb 2023-10-30 03:16:53.005547536 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/thread_pool.rb 2023-10-30 03:16:53.021548011 +0000
@@ -3,0 +4 @@
+require "set"
@@ -12 +12,0 @@
- require "set"
lib/rake/version.rb
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/lib/rake/version.rb 2023-10-30 03:16:53.005547536 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/lib/rake/version.rb 2023-10-30 03:16:53.021548011 +0000
@@ -3 +3 @@
- VERSION = "13.0.6"
+ VERSION = "13.1.0"
rake.gemspec
--- /tmp/d20231030-1907-pqipx/rake-13.0.6/rake.gemspec 2023-10-30 03:16:53.005547536 +0000
+++ /tmp/d20231030-1907-pqipx/rake-13.1.0/rake.gemspec 2023-10-30 03:16:53.021548011 +0000
@@ -2 +2,2 @@
-require_relative 'lib/rake/version'
+
+require_relative "lib/rake/version"
@@ -5 +6 @@
- s.name = "rake".freeze
+ s.name = "rake"
@@ -7,2 +8,2 @@
- s.authors = ["Hiroshi SHIBATA".freeze, "Eric Hodel".freeze, "Jim Weirich".freeze]
- s.email = ["[email protected]".freeze, "[email protected]".freeze, "".freeze]
+ s.authors = ["Hiroshi SHIBATA", "Eric Hodel", "Jim Weirich"]
+ s.email = ["[email protected]", "[email protected]", ""]
@@ -10,11 +11,11 @@
- s.summary = "Rake is a Make-like program implemented in Ruby".freeze
- s.description = <<-DESCRIPTION
-Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
-specified in standard Ruby syntax.
-Rake has the following features:
- * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.
- No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
- * Users can specify tasks with prerequisites.
- * Rake supports rule patterns to synthesize implicit tasks.
- * Flexible FileLists that act like arrays but know about manipulating file names and paths.
- * Supports parallel execution of tasks.
+ s.summary = "Rake is a Make-like program implemented in Ruby"
+ s.description = <<~DESCRIPTION
+ Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
+ specified in standard Ruby syntax.
+ Rake has the following features:
+ * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.
+ No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
+ * Users can specify tasks with prerequisites.
+ * Rake supports rule patterns to synthesize implicit tasks.
+ * Flexible FileLists that act like arrays but know about manipulating file names and paths.
+ * Supports parallel execution of tasks.
@@ -22,2 +23,2 @@
- s.homepage = "https://github.com/ruby/rake".freeze
- s.licenses = ["MIT".freeze]
+ s.homepage = "https://github.com/ruby/rake"
+ s.licenses = ["MIT"]
@@ -26,2 +27,2 @@
- "bug_tracker_uri" => "https://github.com/ruby/rake/issues",
- "changelog_uri" => "https://github.com/ruby/rake/blob/v#{s.version}/History.rdoc",
+ "bug_tracker_uri" => "https://github.com/ruby/rake/issues",
+ "changelog_uri" => "https://github.com/ruby/rake/blob/v#{s.version}/History.rdoc",
@@ -29 +30 @@
- "source_code_uri" => "https://github.com/ruby/rake/tree/v#{s.version}",
+ "source_code_uri" => "https://github.com/ruby/rake/tree/v#{s.version}"
@@ -96 +97 @@
- s.require_paths = ["lib".freeze]
+ s.require_paths = ["lib"]
@@ -98,2 +99,2 @@
- s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
- s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
+ s.required_ruby_version = Gem::Requirement.new(">= 2.3")
+ s.rdoc_options = ["--main", "README.rdoc"]
|
Bumps [rake](https://github.com/ruby/rake) from 13.0.6 to 13.1.0. - [Release notes](https://github.com/ruby/rake/releases) - [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc) - [Commits](ruby/rake@v13.0.6...v13.1.0) --- updated-dependencies: - dependency-name: rake dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
dependabot
bot
force-pushed
the
dependabot/bundler/rake-13.1.0
branch
from
November 2, 2023 07:58
45298c8
to
d2f4c88
Compare
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.
Bumps rake from 13.0.6 to 13.1.0.
Commits
5476cda
Bump up v13.1.01b6afad
Merge pull request #521 from ruby/dependabot/github_actions/ruby/setup-ruby-1...8b2a01c
Bump ruby/setup-ruby from 1.156.0 to 1.157.01607fbf
Merge pull request #520 from ruby/dependabot/github_actions/actions/checkout-...6594585
Bump actions/checkout from 4.1.0 to 4.1.16717ce8
Merge pull request #519 from ruby/dependabot/github_actions/ruby/setup-ruby-1...4b4b211
Bump ruby/setup-ruby from 1.155.0 to 1.156.05e76ef6
Merge pull request #518 from ruby/dependabot/github_actions/ruby/setup-ruby-1...8d39c6b
Bump ruby/setup-ruby from 1.154.0 to 1.155.0191a9d7
Merge pull request #517 from ruby/dependabot/github_actions/ruby/setup-ruby-1...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)