-
Notifications
You must be signed in to change notification settings - Fork 653
Translate "Ruby 4.0.0 preview2 Released" (ko) #3709
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
yhk1038
wants to merge
2
commits into
ruby:master
Choose a base branch
from
yhk1038:tr-ruby-4-0-0-preview2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
ko/news/_posts/2025-11-17-ruby-4-0-0-preview2-released.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| --- | ||
| layout: news_post | ||
| title: "Ruby 4.0.0 preview2 릴리스" | ||
| author: "naruse" | ||
| translator: "Yonghyun Kim" | ||
| date: 2025-11-17 00:00:00 +0000 | ||
| lang: ko | ||
| --- | ||
|
|
||
| {% assign release = site.data.releases | where: "version", "4.0.0-preview2" | first %} | ||
| Ruby {{ release.version }} 릴리스를 알리게 되어 기쁩니다. Ruby 4.0은 유니코드 버전을 17.0.0으로 업데이트했으며, 더 많은 것들이 있습니다. | ||
|
|
||
| ## 언어 변경 | ||
|
|
||
| * `**nil`이 `nil.to_hash`를 호출하지 않는 것과 마찬가지로, `*nil`은 더 이상 `nil.to_a`를 호출하지 않습니다. | ||
| [[Feature #21047]] | ||
|
|
||
| ## 코어 클래스 변경 | ||
|
|
||
| 주의: 주목할만한 코어 클래스 변경만을 포함합니다. | ||
|
|
||
| * Binding | ||
|
|
||
| * `Binding#local_variables`는 더 이상 번호가 매겨진 매개변수를 포함하지 않습니다. | ||
| 또한, `Binding#local_variable_get`과 `Binding#local_variable_set`은 번호가 매겨진 매개변수를 처리하지 않습니다. | ||
| [[Bug #21049]] | ||
|
|
||
| * IO | ||
|
|
||
| * `IO.select`는 타임아웃 인자로 +Float::INFINITY+를 허용합니다. | ||
| [[Feature #20610]] | ||
|
|
||
| * String | ||
|
|
||
| * 유니코드 17.0.0 및 이모지 버전 17.0으로 업데이트합니다. [[Feature #19908]][[Feature #20724]][[Feature #21275]] | ||
| (Regexp에도 적용됩니다) | ||
|
|
||
|
|
||
| ## 표준 라이브러리 변경 | ||
|
|
||
| 주의: 주목할만한 표준 라이브러리 변경만을 포함합니다. | ||
yhk1038 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| * ostruct 0.6.1 | ||
| * pstore 0.2.0 | ||
| * benchmark 0.4.0 | ||
| * logger 1.7.0 | ||
| * rdoc 6.13.1 | ||
| * win32ole 1.9.2 | ||
| * irb 1.15.2 | ||
| * reline 0.6.1 | ||
| * readline 0.0.4 | ||
| * fiddle 1.1.6 | ||
|
|
||
| ## 호환성 이슈 | ||
yhk1038 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 주의: 기능 버그 수정은 포함되어 있지 않습니다. | ||
|
|
||
|
|
||
|
|
||
| ## 표준 라이브러리 호환성 이슈 | ||
yhk1038 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
| ## C API 변경 | ||
|
|
||
|
|
||
| ## JIT | ||
|
|
||
| * YJIT | ||
| * YJIT 통계 | ||
| * `ratio_in_yjit`은 더 이상 기본 빌드에서 작동하지 않습니다. | ||
| `--yjit-stats`에서 활성화하려면 `configure`에서 `--enable-yjit=stats`를 사용하세요. | ||
| * TracePoint에 의해 모든 코드가 무효화될 때 증가하는 `invalidate_everything`을 기본 통계에 추가합니다. | ||
yhk1038 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * `RubyVM::YJIT.enable`에 `mem_size:`와 `call_threshold:` 옵션을 추가합니다. | ||
| * ZJIT | ||
| * 실험적인 메서드 기반 JIT 컴파일러를 추가합니다. | ||
| `--zjit` 지원을 활성화하려면 `configure`에서 `--enable-zjit`을 사용하세요. | ||
| * Ruby 4.0.0-preview2 기준으로 ZJIT은 아직 대부분의 벤치마크에서 속도 향상을 제공할 준비가 되어 있지 않습니다. | ||
| 아직 ZJIT을 평가하지 마시고, Ruby 4.0 릴리스를 기다려 주세요. | ||
| * RJIT | ||
| * `--rjit`이 제거되었습니다. 서드파티 JIT API 구현은 | ||
| [ruby/rjit](https://github.com/ruby/rjit) 저장소로 이동할 예정입니다. | ||
|
|
||
| ## 그 이외의 변경 | ||
|
|
||
|
|
||
|
|
||
| 더 자세한 내용은 [NEWS](https://github.com/ruby/ruby/blob/{{ release.tag }}/NEWS.md)나 | ||
| [커밋 로그](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }})를 | ||
| 확인해 주세요. | ||
|
|
||
| 이러한 변경사항에 따라, Ruby 3.4.0 이후로 [파일 {{ release.stats.files_changed }}개 수정, {{ release.stats.insertions }}줄 추가(+), {{ release.stats.deletions }}줄 삭제(-)](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }}#file_bucket)가 | ||
| 이루어졌습니다! | ||
|
|
||
| ## 다운로드 | ||
|
|
||
| * <{{ release.url.gz }}> | ||
|
|
||
| SIZE: {{ release.size.gz }} | ||
| SHA1: {{ release.sha1.gz }} | ||
| SHA256: {{ release.sha256.gz }} | ||
| SHA512: {{ release.sha512.gz }} | ||
|
|
||
| * <{{ release.url.xz }}> | ||
|
|
||
| SIZE: {{ release.size.xz }} | ||
| SHA1: {{ release.sha1.xz }} | ||
| SHA256: {{ release.sha256.xz }} | ||
| SHA512: {{ release.sha512.xz }} | ||
|
|
||
| * <{{ release.url.zip }}> | ||
|
|
||
| SIZE: {{ release.size.zip }} | ||
| SHA1: {{ release.sha1.zip }} | ||
| SHA256: {{ release.sha256.zip }} | ||
| SHA512: {{ release.sha512.zip }} | ||
|
|
||
| ## Ruby란 | ||
|
|
||
| Ruby는 1993년에 Matz(마츠모토 유키히로) 씨가 처음 개발했고, | ||
| 현재는 오픈 소스로서 개발되고 있습니다. 여러 플랫폼에서 동작하며, | ||
| 특히 웹 개발에서 전 세계적으로 이용되고 있습니다. | ||
|
|
||
| [Feature #21047]: https://bugs.ruby-lang.org/issues/21047 | ||
| [Bug #21049]: https://bugs.ruby-lang.org/issues/21049 | ||
| [Feature #20610]: https://bugs.ruby-lang.org/issues/20610 | ||
| [Feature #19908]: https://bugs.ruby-lang.org/issues/19908 | ||
| [Feature #20724]: https://bugs.ruby-lang.org/issues/20724 | ||
| [Feature #21275]: https://bugs.ruby-lang.org/issues/21275 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.