-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
NEWS: some improvements and additions #17585
Conversation
@@ -68,7 +60,8 @@ Language changes | |||
* `using` and `import` are now case-sensitive even on case-insensitive filesystems | |||
(common on Mac and Windows) ([#13542]). | |||
|
|||
* Relational symbols are now allowed as infix operators ([#8036]). | |||
* Relational algebra symbols are now allowed as infix operators ([#8036]): | |||
`⨝`, `⟕`, `⟖`, `⟗` a for joins and `▷` for anti-join. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"a" extraneous in "a for"?
NEWS also needed for #16024 |
`utf32` converter functions have been removed from the standard library. | ||
If you need these types, they have been moved to the `LegacyStrings` | ||
package. In the future, more robust Unicode string support will be provided | ||
by the `StringEncodings` package. If you only need these types to call wide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice if the referenced packages were linked to.
* miscellaneous copy improvements * note that open now respects umask on UNIX * note deprecation of integer-character comparisons [ci skip]
@@ -157,6 +175,14 @@ Library improvements | |||
* A `transcode(T, src)` function is now exported for converting data | |||
between UTF-xx Unicode encodings ([#17323]). | |||
|
|||
* Comparisons between `Char`s and `Integer`s are now deprecated ([#16024]): | |||
`'x' == 120` now produces a warning but still evaluates to `true`. In the | |||
future it may evalaute to `false` or the comparison may be an error. To |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
evaluate
No description provided.