From Fedora Project Wiki

No edit summary
 
(30 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{header|docs}}{{Docs_beat_open}}
{{header|docs}}


== Python 3.4 ==
{{Docs_beat_closed}}
https://fedoraproject.org/wiki/Changes/Python_3.4


== Ruby 2.1 ==
== Perl 5.24 ==
Ruby 2.1 is the latest stable version of Ruby, and brings major increases in speed, memory efficiency, and reliability.
Perl has been updated to the latest stable version, 5.24, for Fedora 25. Changes include:


The update brings a soname bump. Therefore, Ruby packages which use binary extensions should be rebuilt. Nevertheless, since upstream payed great attention to source compatibility, no changes to your code should be needed. Additionally, RubyGems with binary extensions need to be updated to conform to the recent package guidelines to ensure compatibility with the new RubyGems release.
{{:Changes/perl5.24}}


Also note that starting with this release, Ruby is adopting [https://www.ruby-lang.org/en/news/2013/12/21/ruby-version-policy-changes-with-2-1-0/ semantic versioning].
== Node.js 6.x ==
Fedora 25 offers Node.js 6.x, the latest LTS release of the platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications.  


You can find a full list of changes in Ruby 2.1 in the [https://github.com/ruby/ruby/blob/v2_1_0/NEWS changelog]. Full documentation is available at the [http://www.ruby-doc.org/ Ruby documentation] page.
This replaces the older Node.js 4.x libraries found in legacy Fedora releases. Users of Node.js applications should notice no problems from this change, although developers should review the upstream release notes and API changes:


== Review Board 2.0 ==
* [http://blog.nodejs.org Upstream release announcements]
Fedora now provides Review Board 2.0, a powerful, web-based patch review and management tool.
* [https://github.com/nodejs/node/wiki/Breaking-changes-between-v4-and-v5 API changes in 5.x]
* [https://github.com/nodejs/node/wiki/Breaking-changes-between-v5-and-v6 API changes in 6.x]


Version 2.0 adds the ability to post committed changes from a branch directly from the web UI, adds review of text file attachments, greatly extends the capabilities of the public API and extension framework, and offers significant performance improvements, usability enhancements, and visual cleanups.
Significant enhancements have been made to the diff viewer, as well as adding support for reviews on non-code files (such as binary file formats).
Documentation for Review Board 2.0 is available at the [https://www.reviewboard.org/docs/manual/2.0/ Review Board Manual] website.
{{admon/important|Important|Upgrading to Review Board 2.0 from a previous release will modify your database schema. The migration will be performed when you restart Apache for the first time after the upgrade, and the process is irreversible. Back up your database before upgrading.}}
== RPM 4.12 ==
The RPM package manager has been updated to version 4.12, which brings Fedora in line with the latest upstream version.
This update brings a number of improvements, including:
* Ability to package files larger than 4 GB.
* Support for weak dependencies. (Note that this does not automatically mean Fedora packages and other tools support this feature.)
* API users will be able to access file data more cleanly.
* Payload data is now accessible over the API.
* A new tool, '''rpm2archive''', will allow converting rpm packages to tar files instead of the outdated cpio format. The new tool will work with files larger than 4 GB, while cpio (and '''rpm2cpio''') does not.
See the [http://rpm.org/wiki/Releases/4.12.0 RPM 4.12 Release Notes] for a full list of changes.
{{admon/important|Important|Using some of the new features will break forward compatibility. Packages using these features will not be able be built or be installed on older Fedora versions. Backward compatibility is expected to be maintained.}}
== TCL/TK 8.6 ==
In Fedora 21, '''TCL/TK''' has been upgraded to version 8.6.1, which includes numerous bug fixes and enhancements. Some of the notable features include:
'''TCL 8.6'''
* Support for IPv6 networking for both client and server sockets
* Support for SQL Database - The bundled tdbc package which contains the Tcl DataBase Connectivity interface now enables writing SQL database-powered scripts decoupled from any particular database engine. The bundled sqlite3 and tdbc::sqlite3 packages supply a powerful and popular SQL database engine ready to use.
* Support for Object Oriented Programming - The commands of the TclOO package are now part of the TCL language itself. This gives TCL a built-in fully dynamic, class-based object system and also includes advanced features such as meta-classes, filters, and mixins. A new version 4 of the popular package Itcl (also known as "incr TCL") is also included, now built on a TclOO foundation, granting support for some traditional Object Oriented TCL programming out of the box as well.
'''
'''TK 8.6'''
* PNG Image Support - Photo images now support read/write in the PNG format, with the ability to set the alpha channel.
For the full list of changes, see the [http://www.tcl.tk/software/tcltk/8.6.html TCL/TK Release Notes].
== Erlang/OTP ==
In Fedora 21, the '''Erlang''' programming language has been unpgraded to version R7 which provides better integration with the rest of the system. It also includes initial support for Ellyptic Curves (EC), enabling the use of some Ellyptic Curves, which was not possible in the previous version. Other notable changes include:
* Better interaction with systemd and improved EPMD integration.
* Centralized unified logging from all Erlang applications.
* It is now possible to install Erlang without installing the graphical libraries, if the user is not planning to use a GUI on the target machine.
* Improved packaging process. It now takes less time to package Erlang software for Fedora.
* rpmlint messages regarding marking architecture-independent packages as architecture-dependent ones have been removed
See the [http://www.erlang.org/news/77 Erlang/OTP 17.1 release article] for the full list of changes.


[[Category:Docs Project]]
[[Category:Docs Project]]
[[Category:Draft documentation]]
[[Category:Draft documentation]]
[[Category:Documentation beats]]
[[Category:Documentation beats]]

Latest revision as of 01:32, 20 September 2016

DocsProject Header docTeam1.png


Warning.png
Beat Closed on Wiki
Work on beats has now moved to git at https://pagure.io/fedora-docs/release-notes. If you have changes or additions, please contact the docs team via #fedora-docs, docs@lists.fedoraproject.org, or with the release-notes BZ component.


Perl 5.24

Perl has been updated to the latest stable version, 5.24, for Fedora 25. Changes include:


  • New features:
    • Unicode 8.0 is now supported.
    • An exception will be raised when closing an in-place output file fails.
    • (?[ ]) will successfully compile when use locale is in effect.
    • Integer shift (<< and >>) now more explicitly defined. Negative shifts are reverse shifts.
    • printf and sprintf now allow reordered precision arguments.
    • When passing the SA_SIGINFO flag to sigaction, the errno, status, uid, pid, addr and band fields are included in the hash passed to the handler, if supported by the platform.
    • Hashbang redirection was extended also to Perl 6.
  • Changes:
    • Postfix dereferencing is no longer experimental.
    • Remove duplicate environment variables from environ.
    • More regular expression patterns are now checked for validity at compilation time, and invalid ones will cause the program to not compile.
    • Using \N{} is a fatal error under experimental feature "'strict' mode" in re.
    • A my, our, or state declaration is no longer allowed inside of another my, our, or state declaration.
    • The /\C/ character class has been removed.
    • Using chdir(\'\') or chdir(undef) to change working directory to a home directory fails now. Use chdir() instead.
    • ASCII characters in variable names must now be all visible.
    • $Carp::MaxArgNums is supposed to be the number of arguments to display.
    • Only blanks and tabs are now allowed within [...] within (?[...]).
    • Matching fixed string regular expression is now faster in most cases.
  • Removed features:
    • The autoderef feature has been removed.
    • Lexical $_ has been removed.
    • PPPort.so no longer get installed, as they are not used by PPPort.pm.
    • Using code points above the platform's IV_MAX is now deprecated.
    • Bitwise operations on strings containing code points above 0xFF is deprecated. Instead, encode these strings to byte strings first.
    • sysread(), syswrite(), recv() and send() are deprecated on :utf8 handles.


Node.js 6.x

Fedora 25 offers Node.js 6.x, the latest LTS release of the platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications.

This replaces the older Node.js 4.x libraries found in legacy Fedora releases. Users of Node.js applications should notice no problems from this change, although developers should review the upstream release notes and API changes: