Crystal 0.25.1 released!
Crystal 0.25.1 has been released!
Although there are a couple of new features, this release is focused on polishing and fixing some regressions introduced by 0.25.0. There were 40 commits since 0.25.0 by 18 contributors.
Shards is updated to 0.8.1
The global cache introduced in 0.8.0 had some regressions, so an updated version was required. Did you know that shards can be checked out, hacked around, compiled and used like any other console application? Don’t forget to check it’s repo to see other code bases that help Crystal move forward.
Read more here.
Breaking changes
None! (we hope)
Standard library
There were a couple of edge cases fixed, documentation improvements and some features added.
For the record
The record
macro now generates a #copy_with
method that would simplify creating a copy of the struct with some changed values.
record Point, x = 0, y = 0
p = Point.new y: 2 # => #<Point(@x=0, @y=2)>
p.copy_with x: 3 # => #<Point(@x=3, @y=2)>
p # => #<Point(@x=0, @y=2)>
Read more here.
Refinements in JSON::Any
and YAML::Any
These wrapper structures are very handy but sometimes they cause a bit of confusion.
For example, with the inherited default #dup
, the result and the receiver would share a reference to the same inner value. Wrapper’s identity is rarely more important than the inner value’s identity. So having #dup
(and #clone
) on the wrapper to actually perform the operation on the inner value makes a bit more sense.
Read more here.
Improve HTTP::StaticFileHandler
with ETag
In case you didn’t know, there are headers that help HTTP
communications to avoid sending too much data if the client already has it. The HTTP::StaticFileHandler
keeps and will keep learning about them.
Read more here.
Next step
Please update your Crystal and report any issues. If there are regression or blocking issues with 0.25.1, a 0.25.2 could be released earlier.
Don’t miss the rest of the release changelog, it’s packed with information about lots of other fixes.
We made progress towards allowing safer arithmetic operations with overflow. On the following releases that should start to land in the compiler. If you are interested in the topic, check this PR.
The development is possible thanks to the community’s effort, 84codes’ support, and every BountySource supporter.
Contribute