mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01: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>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 09a6df0d32e2177406ed391e536c0c7c4b503c5d Mon Sep 17 00:00:00 2001
|
|
From: Christian Hofstaedtler <zeha@debian.org>
|
|
Date: Tue, 10 Oct 2017 15:04:34 -0300
|
|
Subject: [PATCH] rdoc: build reproducible documentation
|
|
|
|
- provide a fixed timestamp to the gzip compression
|
|
|
|
Upstream-Status: Backport [debian]
|
|
|
|
Signed-off-by: Antonio Terceiro <terceiro@debian.org>
|
|
Signed-off-by: Christian Hofstaedtler <zeha@debian.org>
|
|
---
|
|
lib/rdoc/generator/json_index.rb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/rdoc/generator/json_index.rb b/lib/rdoc/generator/json_index.rb
|
|
index c454910..24feab0 100644
|
|
--- a/lib/rdoc/generator/json_index.rb
|
|
+++ b/lib/rdoc/generator/json_index.rb
|
|
@@ -178,7 +178,7 @@ class RDoc::Generator::JsonIndex
|
|
debug_msg "Writing gzipped search index to %s" % outfile
|
|
|
|
Zlib::GzipWriter.open(outfile) do |gz|
|
|
- gz.mtime = File.mtime(search_index_file)
|
|
+ gz.mtime = -1
|
|
gz.orig_name = search_index_file.basename.to_s
|
|
gz.write search_index
|
|
gz.close
|
|
@@ -196,7 +196,7 @@ class RDoc::Generator::JsonIndex
|
|
debug_msg "Writing gzipped file to %s" % outfile
|
|
|
|
Zlib::GzipWriter.open(outfile) do |gz|
|
|
- gz.mtime = File.mtime(dest)
|
|
+ gz.mtime = -1
|
|
gz.orig_name = dest.basename.to_s
|
|
gz.write data
|
|
gz.close
|