Skip to content

Commit ec66333

Browse files
committed
Merge branch 'master' into dist/3.2/focal
2 parents bf437df + d6e35de commit ec66333

File tree

175 files changed

+3847
-3911
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+3847
-3911
lines changed

ChangeLog

Lines changed: 864 additions & 0 deletions
Large diffs are not rendered by default.

LEGAL

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,6 @@ mentioned below.
979979
{MIT License}[rdoc-label:label-MIT+License]
980980

981981
[lib/rubygems/resolver/molinillo]
982-
[lib/bundler/vendor/molinillo]
983982

984983
molinillo is under the following license.
985984

@@ -988,6 +987,15 @@ mentioned below.
988987

989988
{MIT License}[rdoc-label:label-MIT+License]
990989

990+
[lib/bundler/vendor/pub_grub]
991+
992+
pub_grub is under the following license.
993+
994+
>>>
995+
Copyright (c) 2018 John Hawthorn
996+
997+
{MIT License}[rdoc-label:label-MIT+License]
998+
991999
[lib/bundler/vendor/connection_pool]
9921000

9931001
connection_pool is under the following license.

ast.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ static VALUE
202202
node_id_for_backtrace_location(rb_execution_context_t *ec, VALUE module, VALUE location)
203203
{
204204
int node_id;
205+
206+
if (!rb_frame_info_p(location)) {
207+
rb_raise(rb_eTypeError, "Thread::Backtrace::Location object expected");
208+
}
209+
205210
node_id = rb_get_node_id_from_frame_info(location);
206211
if (node_id == -1) {
207212
return Qnil;

bignum.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4184,7 +4184,6 @@ rb_int_parse_cstr(const char *str, ssize_t len, char **endp, size_t *ndigits,
41844184
}
41854185
if (!c || ISSPACE(c)) --str;
41864186
if (end) len = end - str;
4187-
ASSERT_LEN();
41884187
}
41894188
c = *str;
41904189
c = conv_digit(c);

common.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,6 @@ update-config_files: PHONY
13751375

13761376
refresh-gems: update-bundled_gems prepare-gems
13771377
prepare-gems: $(HAVE_BASERUBY:yes=update-gems) $(HAVE_BASERUBY:yes=extract-gems)
1378-
prepare-gems: $(DOT_WAIT) $(HAVE_BASERUBY:yes=outdate-bundled-gems)
13791378
extract-gems: $(HAVE_BASERUBY:yes=update-gems)
13801379

13811380
update-gems$(gnumake:yes=-sequential): PHONY

compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12311,7 +12311,7 @@ ibf_load_iseq_each(struct ibf_load *load, rb_iseq_t *iseq, ibf_offset_t offset)
1231112311
verify_call_cache(iseq);
1231212312

1231312313
RB_GC_GUARD(dummy_frame);
12314-
rb_vm_pop_frame(ec);
12314+
rb_vm_pop_frame_no_int(ec);
1231512315
}
1231612316

1231712317
struct ibf_dump_iseq_list_arg

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
ruby3.2 (3.2.1-0nkmi1~dist) unstable; urgency=medium
2+
3+
* Ruby 3.2.1
4+
5+
-- Sorah Fukumori <[email protected]> Wed, 08 Feb 2023 21:58:56 +0900
6+
17
ruby3.2 (3.2.0-1nkmi1~dist) unstable; urgency=medium
28

39
* Ruby 3.2.0

debian/patches/Fix-undefined-behavior-in-shape.c.patch

Lines changed: 0 additions & 49 deletions
This file was deleted.

debian/patches/extract-gems-sequential-Keep-using-RUNRUBY.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Partially reverts https://github.com/ruby/ruby/pull/6203
1111
1 file changed, 1 insertion(+), 1 deletion(-)
1212

1313
diff --git a/common.mk b/common.mk
14-
index e89d127..c57ee31 100644
14+
index 3798f82..5375f52 100644
1515
--- a/common.mk
1616
+++ b/common.mk
17-
@@ -1394,7 +1394,7 @@ update-gems$(gnumake:yes=-sequential): PHONY
17+
@@ -1393,7 +1393,7 @@ update-gems$(gnumake:yes=-sequential): PHONY
1818

1919
extract-gems$(gnumake:yes=-sequential): PHONY
2020
$(ECHO) Extracting bundled gem files...

debian/patches/series

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ TestProcess-disable-gems-to-disable-rubygems_integration.patch
88
ruby_default_arch.m4-don-t-require-arhitectures-to-be-kno.patch
99
extract-gems-sequential-Keep-using-RUNRUBY.patch
1010
test_dumb_terminal-ruby-command-is-not-always-available.patch
11-
Fix-undefined-behavior-in-shape.c.patch

0 commit comments

Comments
 (0)