The Enable Sysadmin community continues to answer key questions about OpenShift and Kubernetes. Read More at Enable Sysadmin
The post What sysadmins want to know about OpenShift and Kubernetes in 2022 appeared first on Linux.com.
The Enable Sysadmin community continues to answer key questions about OpenShift and Kubernetes. Read More at Enable Sysadmin
The post What sysadmins want to know about OpenShift and Kubernetes in 2022 appeared first on Linux.com.
Subscribe Here: https://bit.ly/3dh3Yj1
#Mehfilesama #Qawali #ARYQtv
Official Facebook: https://www.facebook.com/ARYQTV/
Official Website: https://aryqtv.tv/
Watch ARY Qtv Live: http://live.aryqtv.tv/
Programs Schedule: https://aryqtv.tv/schedule/
Islamic Information: https://bit.ly/2MfIF4P
Android App: https://bit.ly/33wgto4
Ios App: https: https://apple.co/2v3zoXW
To Watch More Click Here: http://aryqtv.tv
We are pleased to announce the release of Ruby 3.2.0. Ruby 3.2 adds many features and performance improvements.
This is an initial port of WASI based WebAssembly support. This enables a CRuby binary to be available on a Web browser, a Serverless Edge environment, or other kinds of WebAssembly/WASI embedders. Currently this port passes basic and bootstrap test suites not using the Thread API.
WebAssembly (Wasm) was originally introduced to run programs safely and fast in web browsers. But its objective – running programs efficiently with security on various environment – is long wanted not only for web but also by general applications.
WASI (The WebAssembly System Interface) is designed for such use cases. Though such applications need to communicate with operating systems, WebAssembly runs on a virtual machine which didn’t have a system interface. WASI standardizes it.
WebAssembly/WASI support in Ruby intends to leverage those projects. It enables Ruby developers to write applications which run on such promised platforms.
This support encourages developers to utilize CRuby in a WebAssembly environment. An example use case is TryRuby playground’s CRuby support. Now you can try original CRuby in your web browser.
Today’s WASI and WebAssembly itself is missing some features to implement Fiber, exception, and GC because it’s still evolving, and also for security reasons. So CRuby fills the gap by using Asyncify, which is a binary transformation technique to control execution in userland.
In addition, we built a VFS on top of WASI so that we can easily pack Ruby apps into a single .wasm file. This makes distribution of Ruby apps a bit easier.
rustc
>= 1.58.0./configure
script.--yjit-exec-mem-size
will not be mapped to physical--yjit-exec-mem-size
.RubyVM::YJIT.runtime_stats
returns Code GC metrics in addition toinline_code_size
and outlined_code_size
keys:code_gc_count
, live_page_count
, freed_page_count
, and freed_code_size
.RubyVM::YJIT.runtime_stats
are now available in release builds.
--yjit-stats
to compute and dump stats (incurs some run-time overhead).--yjit-exec-mem-size
is changed to 64 (MiB).--yjit-call-threshold
is changed to 30.It is known that Regexp matching may take unexpectedly long. If your code attempts to match a possibly inefficient Regexp against an untrusted input, an attacker may exploit it for efficient Denial of Service (so-called Regular expression DoS, or ReDoS).
We have introduced two improvements that significantly mitigate ReDoS.
Since Ruby 3.2, Regexp’s matching algorithm has been greatly improved by using a memoization technique.
# This match takes 10 sec. in Ruby 3.1, and 0.003 sec. in Ruby 3.2
/^a*b?a*$/ =~ "a" * 50000 + "x"
The improved matching algorithm allows most Regexp matching (about 90% in our experiments) to be completed in linear time.
(For preview users: this optimization may consume memory proportional to the input length for each match. We expect no practical problems to arise because this memory allocation is usually delayed, and a normal Regexp match should consume at most 10 times as much memory as the input length. If you run out of memory when matching Regexps in a real-world application, please report it.)
The original proposal is https://bugs.ruby-lang.org/issues/19104
The optimization above cannot be applied to some kind of regular expressions, such as those including advanced features (e.g., back-references or look-around), or with a huge fixed number of repetitions. As a fallback measure, a timeout feature for Regexp matches is also introduced.
Regexp.timeout = 1.0
/^a*b?a*()1$/ =~ "a" * 50000 + "x"
#=> Regexp::TimeoutError is raised in one second
Note that Regexp.timeout
is a global configuration. If you want to use different timeout settings for some special Regexps, you may want to use the timeout
keyword for Regexp.new
.
Regexp.timeout = 1.0
# This regexp has no timeout
long_time_re = Regexp.new('^a*b?a*()1$', timeout: Float::INFINITY)
long_time_re =~ "a" * 50000 + "x" # never interrupted
The original proposal is https://bugs.ruby-lang.org/issues/17837.
The feature of syntax_suggest
(formerly dead_end
) is integrated into Ruby. This helps you find the position of errors such as missing or superfluous end
s, to get you back on your way faster, such as in the following example:
Unmatched `end', missing keyword (`do', `def`, `if`, etc.) ?
1 class Dog
> 2 defbark
> 3 end
4 end
test.rb:2:in `+': nil can't be coerced into Integer (TypeError)
sum = ary[0] + ary[1]
^^^^^^
Anonymous rest and keyword rest arguments can now be passed as
arguments, instead of just used in method parameters.
[Feature #18351]
def foo(*)
bar(*)
end
def baz(**)
quux(**)
end
A proc that accepts a single positional argument and keywords will
no longer autosplat. [Bug #18633]
proc{|a, **k| a}.call([1, 2])
# Ruby 3.1 and before
# => 1
# Ruby 3.2 and after
# => [1, 2]
Constant assignment evaluation order for constants set on explicit
objects has been made consistent with single attribute assignment
evaluation order. With this code:
foo::BAR = baz
foo
is now called before baz
. Similarly, for multiple assignments
to constants, left-to-right evaluation order is used. With this
code:
foo1::BAR1, foo2::BAR2 = baz1, baz2
The following evaluation order is now used:
foo1
foo2
baz1
baz2
The find pattern is no longer experimental.
[Feature #18585]
Methods taking a rest parameter (like *args
) and wishing to delegate keyword
arguments through foo(*args)
must now be marked with ruby2_keywords
(if not already the case). In other words, all methods wishing to delegate
keyword arguments through *args
must now be marked with ruby2_keywords
,
with no exception. This will make it easier to transition to other ways of
delegation once a library can require Ruby 3+. Previously, the ruby2_keywords
flag was kept if the receiving method took *args
, but this was a bug and an
inconsistency. A good technique to find potentially missing ruby2_keywords
is to run the test suite, find the last method which must
receive keyword arguments for each place where the test suite fails, and use puts nil, caller, nil
there. Then check that each
method/block on the call chain which must delegate keywords is correctly marked
with ruby2_keywords
. [Bug #18625] [Bug #16466]
def target(**kw)
end
# Accidentally worked without ruby2_keywords in Ruby 2.7-3.1, ruby2_keywords
# needed in 3.2+. Just like (*args, **kwargs) or (...) would be needed on
# both #foo and #bar when migrating away from ruby2_keywords.
ruby2_keywords def bar(*args)
target(*args)
end
ruby2_keywords def foo(*args)
bar(*args)
end
foo(k: 1)
ruby_vm/mjit/compiler
.--mjit-min-calls
to --mjit-call-threshold
.--mjit-max-cache
back from 10000 to 100.Bundler 2.4 now uses PubGrub resolver instead of Molinillo.
pub
package manager for the Dart programming language.RubyGems still uses Molinillo resolver in Ruby 3.2. We plan to replace it with PubGrub in the future.
New core class to represent simple immutable value object. The class is
similar to Struct and partially shares an implementation, but has more
lean and strict API. [Feature #16122]
Measure = Data.define(:amount, :unit)
distance = Measure.new(100, 'km') #=> #<data Measure amount=100, unit="km">
weight = Measure.new(amount: 50, unit: 'kg') #=> #<data Measure amount=50, unit="kg">
weight.with(amount: 40) #=> #<data Measure amount=40, unit="kg">
weight.amount #=> 50
weight.amount = 40 #=> NoMethodError: undefined method `amount='
Hash#shift
now always returns nil if the hash isMatchData#byteoffset
has been added. [Feature #13110]Module.used_refinements
has been added. [Feature #14332]Module#refinements
has been added. [Feature #12737]Module#const_added
has been added. [Feature #17881]Proc#dup
returns an instance of subclass. [Bug #17545]Proc#parameters
now accepts lambda keyword. [Feature #15357]Refinement#refined_class
has been added. [Feature #12737]error_tolerant
option for parse
, parse_file
and of
. [Feature #19013]end
is complemented when a parser reaches to the end of input but end
is insufficientend
is treated as keyword based on indent # Without error_tolerant option
root = RubyVM::AbstractSyntaxTree.parse(<<~RUBY)
def m
a = 10
if
end
RUBY
# => <internal:ast>:33:in `parse': syntax error, unexpected `end' (SyntaxError)
# With error_tolerant option
root = RubyVM::AbstractSyntaxTree.parse(<<~RUBY, error_tolerant: true)
def m
a = 10
if
end
RUBY
p root # => #<RubyVM::AbstractSyntaxTree::Node:SCOPE@1:0-4:3>
# `end` is treated as keyword based on indent
root = RubyVM::AbstractSyntaxTree.parse(<<~RUBY, error_tolerant: true)
module Z
class Foo
foo.
end
def bar
end
end
RUBY
p root.children[-1].children[-1].children[-1].children[-2..-1]
# => [#<RubyVM::AbstractSyntaxTree::Node:CLASS@2:2-4:5>, #<RubyVM::AbstractSyntaxTree::Node:DEFN@6:2-7:5>]
Add keep_tokens
option for parse
, parse_file
and of
. [Feature #19070]
root = RubyVM::AbstractSyntaxTree.parse("x = 1 + 2", keep_tokens: true)
root.tokens # => [[0, :tIDENTIFIER, "x", [1, 0, 1, 1]], [1, :tSP, " ", [1, 1, 1, 2]], ...]
root.tokens.map{_1[2]}.join # => "x = 1 + 2"
require "set"
. [Feature #16989]Set
constant or a call to Enumerable#to_set
.String#byteindex
and String#byterindex
have been added. [Feature #13110]String#bytesplice
has been added. [Feature #18598]A Struct class can also be initialized with keyword arguments
without keyword_init: true
on Struct.new
[Feature #16806]
Post = Struct.new(:id, :name)
Post.new(1, "hello") #=> #<struct Post id=1, name="hello">
# From Ruby 3.2, the following code also works without keyword_init: true.
Post.new(id: 1, name: "hello") #=> #<struct Post id=1, name="hello">
Note: Excluding feature bug fixes.
The following deprecated constants are removed.
Fixnum
and Bignum
[Feature #12005]Random::DEFAULT
[Feature #17351]Struct::Group
Struct::Passwd
The following deprecated methods are removed.
Dir.exists?
[Feature #17391]File.exists?
[Feature #17391]Kernel#=~
[Feature #15231]Kernel#taint
, Kernel#untaint
, Kernel#tainted?
Kernel#trust
, Kernel#untrust
, Kernel#untrusted?
We no longer bundle 3rd party sources like libyaml
, libffi
.
libyaml source has been removed from psych. You may need to install libyaml-dev
with Ubuntu/Debian platform. The package name is different for each platform.
Bundled libffi source is also removed from fiddle
Psych and fiddle supported static builds with specific versions of libyaml and libffi sources. You can build psych with libyaml-0.2.5 like this:
$ ./configure --with-libyaml-source-dir=/path/to/libyaml-0.2.5
And you can build fiddle with libffi-3.4.4 like this:
$ ./configure --with-libffi-source-dir=/path/to/libffi-3.4.4
The following APIs are updated.
rb_random_interface_t
updated and versioned.init_int32
function needs to be defined.The following deprecated APIs are removed.
rb_cData
variable.Bundler
RubyGems
ERB
ERB::Util.html_escape
is made faster than CGI.escapeHTML
.
#to_s
method when an argument is already a String.ERB::Escape.html_escape
is added as an alias to ERB::Util.html_escape
,IRB
debug
, break
, catch
,next
, delete
, step
, continue
, finish
, backtrace
, info
gem "debug"
in your Gemfile.edit
and show_cmds
(like Pry’s help
) are added.ls
takes -g
or -G
option to filter out outputs.show_source
is aliased from $
and accepts unquoted inputs.whereami
is aliased from @
.The following default gems are updated.
The following bundled gems are updated.
See GitHub releases like GitHub Releases of logger or changelog for details of the default gems or bundled gems.
See NEWS
or commit logs
for more details.
With those changes, 3048 files changed, 218253 insertions(+), 131067 deletions(-)
since Ruby 3.1.0!
Merry Christmas, Happy Holidays, and enjoy programming with Ruby 3.2!
https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.0.tar.gz
SIZE: 20440715
SHA1: fb4ab2ceba8bf6a5b9bc7bf7cac945cc94f94c2b
SHA256: daaa78e1360b2783f98deeceb677ad900f3a36c0ffa6e2b6b19090be77abc272
SHA512: 94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35
https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.0.tar.xz
SIZE: 15058364
SHA1: bcdae07183d66fd902cb7bf995545a472d2fefea
SHA256: d2f4577306e6dd932259693233141e5c3ec13622c95b75996541b8d5b68b28b4
SHA512: 733ecc6709470ee16916deeece9af1c76220ae95d17b2681116aff7f381d99bc3124b1b11b1c2336b2b29e468e91b90f158d5ae5fca810c6cf32a0b6234ae08e
https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.0.zip
SIZE: 24583271
SHA1: 581ec7b9289c2a85abf4f41c93993ecaa5cf43a5
SHA256: cca9ddbc958431ff77f61948cb67afa569f01f99c9389d2bbedfa92986c9ef09
SHA512: b7d2753825cc0667e8bb391fc7ec59a53c3db5fa314e38eee74b6511890b585ac7515baa2ddac09e2c6b6c42b9221c82e040af5b39c73e980fbd3b1bc622c99d
Ruby was first developed by Matz (Yukihiro Matsumoto) in 1993,
and is now developed as Open Source. It runs on multiple platforms
and is used all over the world especially for web development.
Posted by naruse on 25 Dec 2022