mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +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>
32 lines
952 B
Diff
32 lines
952 B
Diff
From b74950d4f06bbfb91b2e68044147a226c15f4639 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik@jci.com>
|
|
Date: Mon, 30 Sep 2019 16:57:01 +0100
|
|
Subject: [PATCH] extmk: fix cross-compilation of external gems
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Note that I (André) didn't actually write this patch, I
|
|
only updated it so that git-am works.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: André Draszik <andre.draszik@jci.com>
|
|
---
|
|
ext/extmk.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ext/extmk.rb b/ext/extmk.rb
|
|
index d9c2417..da14c49 100755
|
|
--- a/ext/extmk.rb
|
|
+++ b/ext/extmk.rb
|
|
@@ -428,8 +428,8 @@ else
|
|
end
|
|
$ruby = [$ruby]
|
|
$ruby << "-I'$(topdir)'"
|
|
+$ruby << "-I'$(top_srcdir)/lib'"
|
|
unless CROSS_COMPILING
|
|
- $ruby << "-I'$(top_srcdir)/lib'"
|
|
$ruby << "-I'$(extout)/$(arch)'" << "-I'$(extout)/common'" if $extout
|
|
ENV["RUBYLIB"] = "-"
|
|
end
|