aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS.md
Commit message (Collapse)AuthorAgeFilesLines
* NEWS for [Feature #17136] [ci skip]Nobuyoshi Nakada2020-11-281-0/+5
|
* Add CSV 3.1.9 to NEWSSutou Kouhei2020-11-241-0/+4
|
* NEWS for [Feature #16233] [ci skip]Nobuyoshi Nakada2020-11-221-0/+7
|
* Minor fixes to NEWS for String subclass method change [ci skip]Jeremy Evans2020-11-201-3/+5
|
* Update NEWS for String subclass method change [ci skip]Jeremy Evans2020-11-201-0/+41
|
* Update the default gems section in NEWS.mdHiroshi SHIBATA2020-11-191-7/+19
|
* Add Fiddle 1.0.2 to NEWSSutou Kouhei2020-11-181-0/+4
|
* NEWS: Add --backtrace-limit option [ci skip]Junichi Ito2020-11-171-0/+5
|
* Remove NEWS entry about taint deprecation warnings [ci skip]Jeremy Evans2020-11-171-3/+0
| | | | | | JunichiIto on GitHub correctly pointed out this is no longer accurate due to the change to not display deprecation warnings by default.
* Fix a link [ci skip]Kazuhiro NISHIYAMA2020-11-161-0/+1
|
* Fix links [ci skip]Kazuhiro NISHIYAMA2020-11-161-1/+1
|
* NEWS: merge Range and Regexp being frozen [doc]Marc-Andre Lafortune2020-11-151-7/+3
|
* Fix some typos in NEWS.md.Fabio Sangiovanni2020-11-101-4/+4
|
* Rename to `Fiber#set_scheduler`.Samuel Williams2020-11-071-3/+3
|
* Update NEWS for Array methods changeJeremy Evans2020-11-031-0/+19
|
* Rightward assignment is replaced by one-line pattern matchingKazuki Tsujimoto2020-11-041-7/+0
|
* Add links to the tickets [ci skip]Kazuhiro NISHIYAMA2020-11-031-0/+4
|
* Fix typo in the auto compact announcement [ci-skip]Luciano Sousa2020-11-021-1/+1
| | | | | | 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 🙏
* Add `GC.auto_compact= true/false` and `GC.auto_compact`Aaron Patterson2020-11-021-0/+10
| | | | | | | | | | * `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]
* Pattern matching is no longer experimentalKazuki Tsujimoto2020-11-011-1/+17
|
* Add Thread.ignore_deadlock accessorJeremy Evans2020-10-281-0/+3
| | | | | | | | | | 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]
* NEWS.md: mention TypeProfYusuke Endoh2020-10-201-2/+35
|
* add a NEWS for Fiber#transferKoichi Sasada2020-10-201-0/+1
|
* Add links to the tickets [ci skip]Kazuhiro NISHIYAMA2020-10-011-0/+3
|
* [ruby/ostruct] Improved YAML serialization.Marc-Andre Lafortune2020-09-301-0/+1
| | | | Patch adapted from Pietro Monteiro [Fixes bug#8382]
* [ruby/ostruct] Update NEWSMarc-Andre Lafortune2020-09-301-0/+8
|
* Remove trailing whitespace [doc]Marc-Andre Lafortune2020-09-301-1/+1
|
* Fix a typo [ci skip]Kazuhiro NISHIYAMA2020-09-271-1/+1
|
* Add links to the tickets [ci skip]Kazuhiro NISHIYAMA2020-09-271-0/+3
|
* freeze all Range objects.v3_0_0_preview1Koichi Sasada2020-09-251-0/+4
| | | | | Matz want to try to freeze all Range objects. [Feature #15504]
* NEWS.md: Add memory view entryKenta Murata2020-09-251-0/+11
| | | | | | | | | 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]]
* Update NEWS about RBS (#3579)Soutaro Matsumoto2020-09-251-0/+13
|
* Describe resolv_timeout in NEWSMasaki Matsushita2020-09-251-0/+9
|
* Update the version number of rubygems and bundler at NEWS.mdHiroshi SHIBATA2020-09-231-2/+2
|
* Add NEWS about `Fiber#backtrace` and `Fiber#backtrace_locations`.Samuel Williams2020-09-211-0/+3
|
* Update NEWS & documentation relating to scheduler.Samuel Williams2020-09-211-3/+44
|
* Sort links in NEWS.md by URI [ci skip]Kazuhiro NISHIYAMA2020-09-171-1/+1
|
* Add NEWS entry for [Feature #16792]Benoit Daloze2020-09-171-0/+7
|
* Interpolated strings are no longer frozen with frozen-string-literal: trueBenoit Daloze2020-09-151-0/+4
| | | | | * Remove freezestring instruction since this was the only usage for it. * [Feature #17104]
* Add IRB and Reline update for NEWS of 3.0.0-preview1aycabta2020-09-151-0/+8
|
* add NEW entries about Ractor and new method cache.Koichi Sasada2020-09-141-1/+12
|
* Added promoted libraries to default gems section on NEWSHiroshi SHIBATA2020-09-141-0/+10
|
* Revert the related commits about `Tempfile.open` change.Hiroshi SHIBATA2020-09-091-10/+0
| | | | | Start with https://github.com/ruby/ruby/commit/fa21985a7a2f8f52a8bd82bd12a724e9dca74934 to https://github.com/ruby/ruby/commit/d7492a0be885ea9f2b9f71e3e95582f9a859c439
* Sort links in NEWS.md by URI [ci skip]Nobuyoshi Nakada2020-09-041-12/+12
|
* Added Symbol#nameNobuyoshi Nakada2020-09-041-0/+7
| | | https://bugs.ruby-lang.org/issues/16150#change-87446
* Support passing a category to `Warning.warn`eileencodes2020-09-011-0/+8
| | | | | | | | | | | | | | | | | | | | | | 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>
* Update version to 3.0.0 in NEWS.mdKazuhiro NISHIYAMA2020-08-311-1/+1
|
* [DOC] Fixed wording [ci skip]Nobuyoshi Nakada2020-08-311-1/+1
|
* [DOC] Indent a code block in NEWS [ci skip]Nobuyoshi Nakada2020-08-311-9/+8
|
* Sync with ruby/tempfile@aa9ea12d94a905161cbd79af1ad9ab427f250f4eBenoit Daloze2020-08-291-0/+10
|