mirror of
https://git.yoctoproject.org/poky
synced 2026-03-30 08:02:22 +02:00
3.3.4:
This release fixes a regression in Ruby 3.3.3 that dependencies are missing in
the gemspec of some bundled gems: net-pop, net-ftp, net-imap, and prime [Bug
like Heroku. If your bundle install runs correctly now, you may not have this
issue.
3.3.3:
This release includes:
RubyGems 3.5.11
Bundler 2.5.11
REXML 3.2.8
strscan 3.0.9
--dump=prism_parsetree is replaced by --parser=prism --dump=parsetree
Invalid encoding symbols raise SyntaxError instead of EncodingError
Memory leak fix in Ripper parsing
Bugfixes for YJIT, **{}, Ripper.tokenize, RubyVM::InstructionSequence#to_binary,
--with-gmp, and some build environments
3.3.2:
This release includes many bug-fixes. See the GitHub releases for further details.
3.3.1:
This release includes security fixes. Please check the topics below for details.
CVE-2024-27282: Arbitrary memory address read vulnerability with Regex search
CVE-2024-27281: RCE vulnerability with .rdoc_options in RDoc
CVE-2024-27280: Buffer overread vulnerability in StringIO
(From OE-Core rev: 498ee932187b9c09d14892783eb92ae03fbfd533)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
78 lines
2.7 KiB
Diff
78 lines
2.7 KiB
Diff
From 42f8019e62f392f5bc09c25e90cc63123eb764fe Mon Sep 17 00:00:00 2001
|
|
From: Lucas Kanashiro <kanashiro@debian.org>
|
|
Date: Fri, 1 Nov 2019 15:25:17 -0300
|
|
Subject: [PATCH] Make gemspecs reproducible
|
|
|
|
Without an explicit date, they will get the current date and make the
|
|
build unreproducible
|
|
|
|
Upstream-Status: Backport [debian]
|
|
---
|
|
ext/bigdecimal/bigdecimal.gemspec | 1 +
|
|
ext/fiddle/fiddle.gemspec | 1 +
|
|
ext/io/console/io-console.gemspec | 1 +
|
|
lib/ipaddr.gemspec | 1 +
|
|
lib/rdoc/rdoc.gemspec | 1 +
|
|
5 files changed, 5 insertions(+)
|
|
|
|
diff --git a/ext/bigdecimal/bigdecimal.gemspec b/ext/bigdecimal/bigdecimal.gemspec
|
|
index f9f3b45..b9a469d 100644
|
|
--- a/ext/bigdecimal/bigdecimal.gemspec
|
|
+++ b/ext/bigdecimal/bigdecimal.gemspec
|
|
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
|
|
s.name = name
|
|
s.version = source_version
|
|
s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.email = ["mrkn@mrkn.jp"]
|
|
|
|
s.summary = "Arbitrary-precision decimal floating-point number library."
|
|
diff --git a/ext/fiddle/fiddle.gemspec b/ext/fiddle/fiddle.gemspec
|
|
index 8781093..efdca32 100644
|
|
--- a/ext/fiddle/fiddle.gemspec
|
|
+++ b/ext/fiddle/fiddle.gemspec
|
|
@@ -8,6 +8,7 @@ end
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "fiddle"
|
|
spec.version = version_module::Fiddle::VERSION
|
|
+ spec.date = RUBY_RELEASE_DATE
|
|
spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
|
|
spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
|
|
|
|
diff --git a/ext/io/console/io-console.gemspec b/ext/io/console/io-console.gemspec
|
|
index d4f5276..8f89611 100644
|
|
--- a/ext/io/console/io-console.gemspec
|
|
+++ b/ext/io/console/io-console.gemspec
|
|
@@ -4,6 +4,7 @@ _VERSION = "0.7.1"
|
|
Gem::Specification.new do |s|
|
|
s.name = "io-console"
|
|
s.version = _VERSION
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.summary = "Console interface"
|
|
s.email = "nobu@ruby-lang.org"
|
|
s.description = "add console capabilities to IO instances."
|
|
diff --git a/lib/ipaddr.gemspec b/lib/ipaddr.gemspec
|
|
index 1f4798e..48743cf 100644
|
|
--- a/lib/ipaddr.gemspec
|
|
+++ b/lib/ipaddr.gemspec
|
|
@@ -18,6 +18,7 @@ end
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "ipaddr"
|
|
spec.version = version
|
|
+ spec.date = RUBY_RELEASE_DATE
|
|
spec.authors = ["Akinori MUSHA", "Hajimu UMEMOTO"]
|
|
spec.email = ["knu@idaemons.org", "ume@mahoroba.org"]
|
|
|
|
diff --git a/lib/rdoc/rdoc.gemspec b/lib/rdoc/rdoc.gemspec
|
|
index 93a281c..cc5c155 100644
|
|
--- a/lib/rdoc/rdoc.gemspec
|
|
+++ b/lib/rdoc/rdoc.gemspec
|
|
@@ -7,6 +7,7 @@ end
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "rdoc"
|
|
+ s.date = RUBY_RELEASE_DATE
|
|
s.version = RDoc::VERSION
|
|
|
|
s.authors = [
|