summaryrefslogtreecommitdiff
path: root/NEWS.md
AgeCommit message (Collapse)Author
2020-11-22NEWS for [Feature #16233] [ci skip]Nobuyoshi Nakada
2020-11-20Minor fixes to NEWS for String subclass method change [ci skip]Jeremy Evans
2020-11-20Update NEWS for String subclass method change [ci skip]Jeremy Evans
2020-11-19Update the default gems section in NEWS.mdHiroshi SHIBATA
2020-11-18Add Fiddle 1.0.2 to NEWSSutou Kouhei
Notes: Merged: https://github.com/ruby/ruby/pull/3780
2020-11-17NEWS: Add --backtrace-limit option [ci skip]Junichi Ito
Notes: Merged: https://github.com/ruby/ruby/pull/3782
2020-11-17Remove NEWS entry about taint deprecation warnings [ci skip]Jeremy Evans
JunichiIto on GitHub correctly pointed out this is no longer accurate due to the change to not display deprecation warnings by default.
2020-11-16Fix a link [ci skip]Kazuhiro NISHIYAMA
2020-11-16Fix links [ci skip]Kazuhiro NISHIYAMA
2020-11-15NEWS: merge Range and Regexp being frozen [doc]Marc-Andre Lafortune
2020-11-10Fix some typos in NEWS.md.Fabio Sangiovanni
Notes: Merged: https://github.com/ruby/ruby/pull/3756
2020-11-07Rename to `Fiber#set_scheduler`.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3742
2020-11-03Update NEWS for Array methods changeJeremy Evans
2020-11-04Rightward assignment is replaced by one-line pattern matchingKazuki Tsujimoto
2020-11-03Add links to the tickets [ci skip]Kazuhiro NISHIYAMA
2020-11-02Fix typo in the auto compact announcement [ci-skip]Luciano Sousa
I'm sorry, but I think there is a typo here. This fix will help folks who are trying to translate this announcement to other languages. I hope this is not a joke and I didn't get it 🙏 Notes: Merged: https://github.com/ruby/ruby/pull/3730
2020-11-02Add `GC.auto_compact= true/false` and `GC.auto_compact`Aaron Patterson
* `GC.auto_compact=`, `GC.auto_compact` can be used to control when compaction runs. Setting `auto_compact=` to true will cause compaction to occurr duing major collections. At the moment, compaction adds significant overhead to major collections, so please test first! [Feature #17176]
2020-11-01Pattern matching is no longer experimentalKazuki Tsujimoto
2020-10-28Add Thread.ignore_deadlock accessorJeremy Evans
Setting this to true disables the deadlock detector. It should only be used in cases where the deadlock could be broken via some external means, such as via a signal. Now that $SAFE is no longer used, replace the safe_level_ VM flag with ignore_deadlock for storing the setting. Fixes [Bug #13768] Notes: Merged: https://github.com/ruby/ruby/pull/3710 Merged-By: jeremyevans <code@jeremyevans.net>
2020-10-20NEWS.md: mention TypeProfYusuke Endoh
Notes: Merged: https://github.com/ruby/ruby/pull/3674
2020-10-20add a NEWS for Fiber#transferKoichi Sasada
2020-10-01Add links to the tickets [ci skip]Kazuhiro NISHIYAMA
2020-09-30[ruby/ostruct] Improved YAML serialization.Marc-Andre Lafortune
Patch adapted from Pietro Monteiro [Fixes bug#8382] Notes: Merged: https://github.com/ruby/ruby/pull/3593
2020-09-30[ruby/ostruct] Update NEWSMarc-Andre Lafortune
Notes: Merged: https://github.com/ruby/ruby/pull/3593
2020-09-30Remove trailing whitespace [doc]Marc-Andre Lafortune
Notes: Merged: https://github.com/ruby/ruby/pull/3593
2020-09-27Fix a typo [ci skip]Kazuhiro NISHIYAMA
2020-09-27Add links to the tickets [ci skip]Kazuhiro NISHIYAMA
2020-09-25freeze all Range objects.v3_0_0_preview1Koichi Sasada
Matz want to try to freeze all Range objects. [Feature #15504] Notes: Merged: https://github.com/ruby/ruby/pull/3583
2020-09-25NEWS.md: Add memory view entryKenta Murata
The memory view interface added at 890bc2cdde is experimental new C-API set. This feature permits extension libraries to share a memory area that contains such a numerical array and a bitmap image. This is designed by referring to Python's buffer protocol. [[Feature #13767]] [[Feature #14722]]
2020-09-25Update NEWS about RBS (#3579)Soutaro Matsumoto
Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2020-09-25Describe resolv_timeout in NEWSMasaki Matsushita
2020-09-23Update the version number of rubygems and bundler at NEWS.mdHiroshi SHIBATA
2020-09-21Add NEWS about `Fiber#backtrace` and `Fiber#backtrace_locations`.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3562
2020-09-21Update NEWS & documentation relating to scheduler.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3561
2020-09-17Sort links in NEWS.md by URI [ci skip]Kazuhiro NISHIYAMA
2020-09-17Add NEWS entry for [Feature #16792]Benoit Daloze
2020-09-15Interpolated strings are no longer frozen with frozen-string-literal: trueBenoit Daloze
* Remove freezestring instruction since this was the only usage for it. * [Feature #17104] Notes: Merged: https://github.com/ruby/ruby/pull/3488
2020-09-15Add IRB and Reline update for NEWS of 3.0.0-preview1aycabta
Notes: Merged: https://github.com/ruby/ruby/pull/3540
2020-09-14add NEW entries about Ractor and new method cache.Koichi Sasada
2020-09-14Added promoted libraries to default gems section on NEWSHiroshi SHIBATA
2020-09-09Revert the related commits about `Tempfile.open` change.Hiroshi SHIBATA
Start with https://github.com/ruby/ruby/commit/fa21985a7a2f8f52a8bd82bd12a724e9dca74934 to https://github.com/ruby/ruby/commit/d7492a0be885ea9f2b9f71e3e95582f9a859c439
2020-09-04Sort links in NEWS.md by URI [ci skip]Nobuyoshi Nakada
2020-09-04Added Symbol#nameNobuyoshi Nakada
https://bugs.ruby-lang.org/issues/16150#change-87446 Notes: Merged: https://github.com/ruby/ruby/pull/3514 Merged-By: nobu <nobu@ruby-lang.org>
2020-09-01Support passing a category to `Warning.warn`eileencodes
This change adds a `category` kwarg to make it easier to monkey patch `Warning.warn`. Warnings already have a category, but that warning isn't exposed. This implements a way to get the category so that warnings with a specific category, like deprecated, can be treated differently than other warnings in an application. The change here does an arity check on the method to support backwards compatibility for applications that may already have a warning monkey patch. For our usecase we want to `raise` for deprecation warnings in order to get the behavior for the next Ruby version. For example, now that we fixed all our warnings and deployed Ruby 2.7 to production, we want to be able to have deprecation warnings behave like they would in 3.0: raise an error. For other warnings, like uninialized constants, that behavior won't be removed from Ruby in the next version, so we don't need to raise errors. Co-authored-by: Aaron Patterson <tenderlove@ruby-lang.org> Notes: Merged: https://github.com/ruby/ruby/pull/3418
2020-08-31Update version to 3.0.0 in NEWS.mdKazuhiro NISHIYAMA
2020-08-31[DOC] Fixed wording [ci skip]Nobuyoshi Nakada
2020-08-31[DOC] Indent a code block in NEWS [ci skip]Nobuyoshi Nakada
2020-08-29Sync with ruby/tempfile@aa9ea12d94a905161cbd79af1ad9ab427f250f4eBenoit Daloze
2020-08-29Some fixes in NEWS.mdBenoit Daloze
2020-08-24Added entry for changes of default gemsHiroshi SHIBATA