summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-12-19 12:10:02 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-12-19 12:10:02 +0900
commitdf4820e749fbada28b622ccd36c3a1d542231705 (patch)
tree46962592eacc0c07090de83bd7afdd21ffffb5c1 /NEWS.md
parent40ec3762d233de12a04bd6321fc32ef1affd7852 (diff)
Added some changes that are only exists on GitHub to NEWS
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index 124f8956e0..647cc9cda4 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -157,6 +157,9 @@ Note: We're only listing outstanding class updates.
STDIN.read # => Blocking operation timed out! (IO::TimeoutError)
```
+ * Introduce `IO.new(..., path:)` and promote `File#path` to `IO#path`.
+ [[Feature #19036]]
+
* UNIXSocket
* Add support for UNIXSocket on Windows. Emulate anonymous sockets. Add
@@ -407,6 +410,14 @@ Note: We're only listing outstanding class updates.
`"#<UnboundMethod: Kernel#object_id()>"`
(was `"#<UnboundMethod: String(Kernel)#object_id()>"`).
+* GC
+
+ * Expose `need_major_gc` via `GC.latest_gc_info`. [[GH-6791]]
+
+* ObjectSpace
+
+ * `ObjectSpace.dump_all` dump shapes as well. [[GH-6868]]
+
## Stdlib updates
* CGI
@@ -748,6 +759,7 @@ The following deprecated APIs are removed.
[Feature #19008]: https://bugs.ruby-lang.org/issues/19008
[Feature #19013]: https://bugs.ruby-lang.org/issues/19013
[Feature #19026]: https://bugs.ruby-lang.org/issues/19026
+[Feature #19036]: https://bugs.ruby-lang.org/issues/19036
[Feature #19060]: https://bugs.ruby-lang.org/issues/19060
[Feature #19070]: https://bugs.ruby-lang.org/issues/19070
[Feature #19071]: https://bugs.ruby-lang.org/issues/19071
@@ -759,3 +771,5 @@ The following deprecated APIs are removed.
[Feature #19138]: https://bugs.ruby-lang.org/issues/19138
[Feature #19194]: https://bugs.ruby-lang.org/issues/19194
[GH-6086]: https://github.com/ruby/ruby/pull/6086
+[GH-6791]: https://github.com/ruby/ruby/pull/6791
+[GH-6868]: https://github.com/ruby/ruby/pull/6868