Skip to content

Commit db77863

Browse files
committed
Ruby 2.6.0-rc1 Released
1 parent 1f54908 commit db77863

File tree

4 files changed

+273
-1
lines changed

4 files changed

+273
-1
lines changed

_data/downloads.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# optional
55
preview:
66

7-
- 2.6.0-preview3
7+
- 2.6.0-rc1
88

99
stable:
1010

_data/releases.yml

+14
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@
2121

2222
# 2.6 series
2323

24+
- version: 2.6.0-rc1
25+
date: 2018-12-07
26+
post: /en/news/2018/12/07/ruby-2-6-0-rc1-released/
27+
url:
28+
gz: https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0-rc1.tar.gz
29+
zip: https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0-rc1.zip
30+
bz2: https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0-rc1.tar.bz2
31+
xz: https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0-rc1.tar.xz
32+
sha256:
33+
gz: 6d6183639ed9c02320d7132e97c65489a39e24d8b55fc4ed35ac53d1189cb61d
34+
zip: 2bcdf468de499e4d6983d60d63dcc883f4c54fdc05a08a54eb93d315477bc4cc
35+
bz2: b4e9c0e8801946e9f0baba30948955f4341e9e04f363c206b7bd774208053eb5
36+
xz: 21d9d54c20e45ccacecf8bea4dfccd05edc52479c776381ae98ef6a7b4afa739
37+
2438
- version: 2.6.0-preview3
2539
date: 2018-11-06
2640
post: /en/news/2018/11/06/ruby-2-6-0-preview3-released/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
---
2+
layout: news_post
3+
title: "Ruby 2.6.0-rc1 Released"
4+
author: "naruse"
5+
translator:
6+
date: 2018-12-06 00:00:00 +0000
7+
lang: en
8+
---
9+
10+
We are pleased to announce the release of Ruby 2.6.0-rc1.
11+
12+
Ruby 2.6.0-rc1 is the third preview toward Ruby 2.6.0.
13+
This rc1 is released to test new features before coming Release Candidate.
14+
15+
## JIT
16+
17+
Ruby 2.6 introduces an initial implementation of JIT (Just-in-time) compiler.
18+
19+
JIT compiler aims to improve performance of any Ruby program execution.
20+
Unlike ordinary JIT compilers for other languages, Ruby's JIT compiler does JIT compilation in a unique way, which prints C code to a disk and spawns common C compiler process to generate native code.
21+
See also: [MJIT organization by Vladimir Makarov](https://github.com/vnmakarov/ruby/tree/rtl_mjit_branch#mjit-organization).
22+
23+
How to use: Just specify `--jit` in command line or `$RUBYOPT` environment variable.
24+
Specifying `--jit-verbose=1` allows to print basic information of ongoing JIT compilation. See `ruby --help` for other options.
25+
26+
The main purpose of this JIT release is to provide a chance to check if it works for your platform and to find out security risks before the 2.6 release.
27+
JIT compiler is supported when Ruby is built by GCC, Clang, or Microsoft VC++, which needs to be available on runtime. Otherwise you can't use it for now.
28+
29+
As of Ruby 2.6.0-rc1, we achieved 1.7x faster performance than Ruby 2.5 on CPU-intensive non-trivial benchmark workload called Optcarrot <https://gist.github.com/k0kubun/d7f54d96f8e501bbbc78b927640f4208>. We're going to improve the performance on memory-intensive workload like Rails application as well.
30+
31+
Stay tuned for the new age of Ruby's performance.
32+
33+
## RubyVM::AbstractSyntaxTree [Experimental]
34+
35+
Ruby 2.6 introduces `RubyVM::AbstractSyntaxTree` module.
36+
37+
This module has `parse` method which parses a given ruby code of string and returns AST (Abstract Syntax Tree) nodes, and `parse_file` method which parses a given ruby code file and returns AST nodes.
38+
`RubyVM::AbstractSyntaxTree::Node` class is also introduced. You can get location information and children nodes from `Node` objects. This feature is experimental. Compatibility of the structure of AST nodes are not guaranteed.
39+
40+
## New Features
41+
42+
* Add a new alias `then` to `Kernel#yield_self`. [[Feature #14594]](https://bugs.ruby-lang.org/issues/14594)
43+
44+
* `else` without `rescue` now causes a syntax error. [EXPERIMENTAL]
45+
46+
* constant names may start with a non-ASCII capital letter. [[Feature #13770]](https://bugs.ruby-lang.org/issues/13770)
47+
48+
* endless range [[Feature #12912]](https://bugs.ruby-lang.org/issues/12912)
49+
50+
An endless range, `(1..)`, is introduced. It works as it has no end. This shows typical use cases:
51+
52+
ary[1..] # identical to ary[1..-1] without magical -1
53+
(1..).each {|index| ... } # inifinite loop from index 1
54+
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
55+
56+
* Add `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)
57+
58+
This method returns the source location of binding, a 2-element array of `__FILE__` and `__LINE__`. Traditionally, the same information could be retrieved by `eval("[__FILE__, __LINE__]", binding)`, but we are planning to change this behavior so that `Kernel#eval` ignores binding's source location [[Bug #4352]](https://bugs.ruby-lang.org/issues/4352). So, users should use this newly-introduced method instead of `Kernel#eval`.
59+
60+
* Add `:exception` option to let `Kernel#system` raise error instead of returning `false`. [[Feature #14386]](https://bugs.ruby-lang.org/issues/14386)
61+
62+
* add the oneshot mode [[Feature#15022]](https://bugs.ruby-lang.org/issues/15022)
63+
* This mode checks "whether each line was executed at least once or not", instead of "how many times each line was executed". A hook for each line is fired at most once, and after it is fired the hook flag is removed, i.e., it runs with zero overhead.
64+
* Add `:oneshot_lines` keyword argument to Coverage.start.
65+
* Add `:stop` and `:clear` keyword arguments to Coverage.result. If `clear` is true, it clears the counters to zero. If `stop` is true, it disables coverage measurement.
66+
* Coverage.line_stub, which is a simple helper function that creates the "stub" of line coverage from a given source code.
67+
68+
* `FileUtils#cp_lr`. [[Feature #4189]](https://bugs.ruby-lang.org/issues/4189)
69+
70+
## Performance improvements
71+
72+
* Speedup `Proc#call` because we don't need to care about `$SAFE` any more.
73+
[[Feature #14318]](https://bugs.ruby-lang.org/issues/14318)
74+
75+
With `lc_fizzbuzz` benchmark which uses `Proc#call` so many times we can measure
76+
x1.4 improvements [[Bug #10212]](https://bugs.ruby-lang.org/issues/10212).
77+
78+
* Speedup `block.call` where `block` is passed block parameter. [[Feature #14330]](https://bugs.ruby-lang.org/issues/14330)
79+
80+
Ruby 2.5 improves block passing performance. [[Feature #14045]](https://bugs.ruby-lang.org/issues/14045)
81+
Additionally, Ruby 2.6 improves the performance of passed block calling.
82+
With micro-benchmark we can observe x2.6 improvement.
83+
84+
* Transient Heap (theap) is introduced. [[Bug #14858]](https://bugs.ruby-lang.org/issues/14858) [[Feature #14989]](https://bugs.ruby-lang.org/issues/14989)
85+
theap is managed heap for short-living memory objects which are pointed by
86+
specific classes (Array, Hash, Object, and Struct). For example, making small
87+
and short-living Hash object is x2 faster. With rdoc benchmark, we observed
88+
6-7% performance improvement.
89+
90+
## Other notable changes since 2.5
91+
92+
* `$SAFE` is a process global state and we can set `0` again. [[Feature #14250]](https://bugs.ruby-lang.org/issues/14250)
93+
94+
* Passing `safe_level` to `ERB.new` is deprecated. `trim_mode` and `eoutvar` arguments are changed to keyword arguments. [[Feature #14256]](https://bugs.ruby-lang.org/issues/14256)
95+
96+
* Supported Unicode version is updated to 11. It is planed to update 12 and 12.1 in future TEENY releases of Ruby 2.6.
97+
98+
* Merge RubyGems 3.0.0.beta3. `--ri` and `--rdoc` options was removed. Please use `--document` and `--no-document` options instead of them.
99+
100+
* Merge [Bundler](https://github.com/bundler/bundler) as Default gems.
101+
102+
See [NEWS](https://github.com/ruby/ruby/blob/v2_6_0_rc1/NEWS)
103+
or [commit logs](https://github.com/ruby/ruby/compare/v2_5_0...v2_6_0_rc1)
104+
for details.
105+
106+
With those changes,
107+
[6376 files changed, 227364 insertions(+), 51599 deletions(-)](https://github.com/ruby/ruby/compare/v2_5_0...v2_6_0_rc1)
108+
since Ruby 2.5.0!
109+
110+
Enjoy programming with Ruby 2.6.0-rc1!
111+
112+
## Download
113+
114+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
115+
116+
SIZE: 16823448 bytes
117+
SHA1: 889db7731fd43f6dbf7f31ffdb0a29bba1a8d356
118+
SHA256: 6d6183639ed9c02320d7132e97c65489a39e24d8b55fc4ed35ac53d1189cb61d
119+
SHA512: ad101adee5c43f3645561e73970f15d4e9141f707da69a92e224575c665949e18ca53389e5315fca2ea393
120+
4d77967a59e304353cde4a915537e7c4e4ee20be73
121+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
122+
123+
SIZE: 20737499 bytes
124+
SHA1: 457e39aee1978da5e42af42a6ad230421544aa07
125+
SHA256: 2bcdf468de499e4d6983d60d63dcc883f4c54fdc05a08a54eb93d315477bc4cc
126+
SHA512: 0842fae8a199f6c1e76f5d775edbf468e18a54f0419324eb73595e0268c728c71733371d71dc2fa342105dbc487987ca5556948a9ef067276a7b5f552462802a
127+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
128+
129+
SIZE: 14607078 bytes
130+
SHA1: 269fe9d414d7731e4a63959fadffe5c50c08ce0e
131+
SHA256: b4e9c0e8801946e9f0baba30948955f4341e9e04f363c206b7bd774208053eb5
132+
SHA512: cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8
133+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
134+
135+
SIZE: 11851908 bytes
136+
SHA1: 3b93fdf1c5bd969ab4fe0a8176a6cf64e4597e6e
137+
SHA256: 21d9d54c20e45ccacecf8bea4dfccd05edc52479c776381ae98ef6a7b4afa739
138+
SHA512: 3d93d8d80e4900e8b3a27f904ed60581cebc6c55f4ab7acafc81e95001f92f3ea4ddec2da6169b1ed5e0146f7b7c35c1c13b3243955d5825c72170834fe933f3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
---
2+
layout: news_post
3+
title: "Ruby 2.6.0-rc1 Released"
4+
author: "naruse"
5+
translator:
6+
date: 2018-12-06 00:00:00 +0000
7+
lang: ja
8+
---
9+
10+
Ruby 2.6.0に向けた最初のリリース候補である、Ruby 2.6.0-rc1がリリースされました。
11+
12+
Ruby 2.6.0-rc1は、リリース前に出されるRelease Candidateに向けて最新の機能を試せるようにするためリリースされています。
13+
14+
## JIT
15+
16+
Ruby 2.6ではJIT (Just-in-time) コンパイラが導入されました。
17+
18+
JITコンパイラはあらゆるRubyプログラムの実行を高速化することを目的としています。
19+
他言語の一般的なJITコンパイラと異なり、RubyのJITコンパイラはC言語のソースコードをファイルとしてディスクに書き、通常のCコンパイラを用いてネイティブコードに変換することでJITコンパイルを行うという手法を用いています。(参考: [MJIT organization by Vladimir Makarov](https://github.com/vnmakarov/ruby/tree/rtl_mjit_branch#mjit-organization))
20+
21+
JITコンパイルを有効にするには `--jit` オプションをコマンドラインまたは$RUBYOPT環境変数を指定します。`--jit-verbose=1`を指定すれば指定すれば実行中のJITコンパイルの基本的な情報を表示します。その他のオプションについては `ruby --help` を参照ください。
22+
23+
今回のリリースはこのJITコンパイル機能を皆さんの環境で動作を確認して頂くとともに、セキュリティ上の問題が無いかを早期に確認するために行っています。
24+
現在のJITコンパイラを利用するためには、GCC、Clang、あるいはMicrosoft VC++によってビルドされたRubyでかつ、そのコンパイラが実行時に利用可能である必要があります。
25+
26+
Ruby 2.6.0-rc1の時点で、OptcarrotというCPU負荷中心のベンチマークにおいてRuby 2.5の約1.7倍の性能向上を達成しました。 <https://gist.github.com/k0kubun/d7f54d96f8e501bbbc78b927640f4208>
27+
Railsアプリケーションなどのメモリ負荷の高い環境における性能は現在改善中です。
28+
29+
引き続き新時代のRubyの実効性能にご期待ください。
30+
31+
## RubyVM::AbstractSyntaxTree [Experimental]
32+
33+
Ruby 2.6では `RubyVM::AbstractSyntaxTree` モジュールが導入されました。
34+
35+
このモジュールには、文字列をパースしてAST(抽象構文木)のNodeを返す`parse`メソッド、ファイルをパースする`parse_file`メソッドが実装されています。
36+
`RubyVM::AbstractSyntaxTree::Node` も導入されました。このクラスのインスタンスから位置情報や子ノードを取得することができます。この機能はexperimentalです。また、ASTの構造に関する互換性は保証されていません。
37+
38+
## 新機能
39+
40+
* `Kernel#yield_self` の別名として `then` が追加されました [[Feature #14594]](https://bugs.ruby-lang.org/issues/14594)
41+
42+
* `rescue` 無しの `else` が文法エラーとなるようになりました [EXPERIMENTAL]
43+
44+
* ASCII以外の大文字でも定数を定義出来るようになりました [[Feature #13770]](https://bugs.ruby-lang.org/issues/13770)
45+
46+
* 終端なしRange [[Feature #12912]](https://bugs.ruby-lang.org/issues/12912)
47+
48+
終端なしRange `(1..)` が導入されました。これは終端を持ちません。これが典型的な用途です:
49+
50+
ary[1..] # マジックナンバー -1 なしで ary[1..-1] と同じ意味
51+
(1..).each {|index| ... } # index が 1 から始まる無限ループ
52+
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
53+
54+
* `Binding#source_location` の追加 [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)
55+
* `binding`のソースコード上の位置を `__FILE__``__LINE__` の二要素配列として返します。従来でも `eval("[__FILE__, __LINE__]", binding)` とすることでこれらの情報は得られましたが、将来的に `Kernel#eval` はbindingのソースコード行を無視する変更を予定しているため [[Bug #4352]](https://bugs.ruby-lang.org/issues/4352)、この新しいメソッドを用いることが今後は推奨されます。
56+
57+
* `Kernel#system` の失敗時に、falseを返す代わりに例外を上げさせる `:exception` オプションを追加 [[Feature #14386]](https://bugs.ruby-lang.org/issues/14386)
58+
59+
* Coverage の oneshot_lines モードの追加 [[Feature#15022]](https://bugs.ruby-lang.org/issues/15022)
60+
* This mode checks "whether each line was executed at least once or not", instead of "how many times each line was executed". A hook for each line is fired at most once, and after it is fired the hook flag is removed, i.e., it runs with zero overhead.
61+
* Add `:oneshot_lines` keyword argument to Coverage.start.
62+
* Add `:stop` and `:clear` keyword arguments to Coverage.result. If `clear` is true, it clears the counters to zero. If `stop` is true, it disables coverage measurement.
63+
* Coverage.line_stub, which is a simple helper function that creates the "stub" of line coverage from a given source code.
64+
65+
* `FileUtils#cp_lr`. [[Feature #4189]](https://bugs.ruby-lang.org/issues/4189)
66+
67+
## パフォーマンスの改善
68+
69+
* 後述の`$SAFE`の変更に伴って考慮すべきことが減ったため、`Proc#call`が高速化されました [[Feature #14318]](https://bugs.ruby-lang.org/issues/14318)
70+
`Proc#call` を大量に呼び出す `lc_fizzbuzz` ベンチマークにおいては、1.4倍高速化されています [[Bug #10212]](https://bugs.ruby-lang.org/issues/10212)
71+
* `block` がブロックパラメータである時、`block.call`が高速化されました [[Feature #14330]](https://bugs.ruby-lang.org/issues/14330)
72+
Ruby 2.5ではブロック渡しの性能が改善されましたが [[Feature #14045]](https://bugs.ruby-lang.org/issues/14045)、加えてRuby 2.6では渡されたブロックの呼び出しも改善されました。
73+
マイクロベンチマークにおいては2.6倍高速化されています。
74+
* Transient Heap (theap) is introduced. [[Bug #14858]](https://bugs.ruby-lang.org/issues/14858) [[Feature #14989]](https://bugs.ruby-lang.org/issues/14989)
75+
theap is managed heap for short-living memory objects which are pointed by
76+
specific classes (Array, Hash, Object, and Struct). For example, making small
77+
and short-living Hash object is x2 faster. With rdoc benchmark, we observed
78+
6-7% performance improvement.
79+
80+
## その他の注目すべき 2.5 からの変更点
81+
82+
* `$SAFE` はプロセスグローバルで扱われることになると共に、`0`以外を設定した後に`0`に戻せるようになりました [[Feature #14250]](https://bugs.ruby-lang.org/issues/14250)
83+
* `ERB.new``safe_level`を渡すのは非推奨になりました。また、`trim_mode``eoutvar`はキーワード引数に変更されました。 [[Feature #14256]](https://bugs.ruby-lang.org/issues/14256)
84+
* サポートする Unicode のバージョンを 11 に更新しました。Ruby 2.6 では今後の TEENY リリースで、12 そして 12.1 への更新が予定されています。
85+
* RubyGems 3.0.0.beta3 をマージしました。 `--ri``--rdoc` オプションは使えなくなりました。`--document` または `--no-document` を利用してください。
86+
* [Bundler](https://github.com/bundler/bundler) を Default gems として標準添付しました。
87+
88+
その他詳細については、[NEWS](https://github.com/ruby/ruby/blob/v2_6_0_rc1/NEWS) ファイルまたは[コミットログ](https://github.com/ruby/ruby/compare/v2_5_0...v2_6_0_rc1)を参照してください。
89+
90+
なお、こうした変更により、Ruby 2.5.0 以降では [6376 個のファイルに変更が加えられ、227364 行の追加と 51599 行の削除が行われました](https://github.com/ruby/ruby/compare/v2_5_0...v2_6_0_rc1) !
91+
92+
みなさんもRuby 2.6.0-rc1で楽しいプログラミングを!
93+
94+
## Download
95+
96+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
97+
98+
SIZE: 16823448 bytes
99+
SHA1: 889db7731fd43f6dbf7f31ffdb0a29bba1a8d356
100+
SHA256: 6d6183639ed9c02320d7132e97c65489a39e24d8b55fc4ed35ac53d1189cb61d
101+
SHA512: ad101adee5c43f3645561e73970f15d4e9141f707da69a92e224575c665949e18ca53389e5315fca2ea393
102+
4d77967a59e304353cde4a915537e7c4e4ee20be73
103+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
104+
105+
SIZE: 20737499 bytes
106+
SHA1: 457e39aee1978da5e42af42a6ad230421544aa07
107+
SHA256: 2bcdf468de499e4d6983d60d63dcc883f4c54fdc05a08a54eb93d315477bc4cc
108+
SHA512: 0842fae8a199f6c1e76f5d775edbf468e18a54f0419324eb73595e0268c728c71733371d71dc2fa342105dbc487987ca5556948a9ef067276a7b5f552462802a
109+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
110+
111+
SIZE: 14607078 bytes
112+
SHA1: 269fe9d414d7731e4a63959fadffe5c50c08ce0e
113+
SHA256: b4e9c0e8801946e9f0baba30948955f4341e9e04f363c206b7bd774208053eb5
114+
SHA512: cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8
115+
* <https://cache.ruby-lang.org/pub/ruby/2.6/2.6.0-rc1.tar.bz2>
116+
117+
SIZE: 11851908 bytes
118+
SHA1: 3b93fdf1c5bd969ab4fe0a8176a6cf64e4597e6e
119+
SHA256: 21d9d54c20e45ccacecf8bea4dfccd05edc52479c776381ae98ef6a7b4afa739
120+
SHA512: 3d93d8d80e4900e8b3a27f904ed60581cebc6c55f4ab7acafc81e95001f92f3ea4ddec2da6169b1ed5e0146f7b7c35c1c13b3243955d5825c72170834fe933f3

0 commit comments

Comments
 (0)