diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-02-28 08:05:29 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-02-28 08:20:14 +0000 |
commit | d0833d76bb573f8694627e82fe44e56df049d252 (patch) | |
tree | a01a9f23df1088a533338d8ed5052e4e1df00692 | |
parent | 779b65a24d4857099a9929bf46a226f2e54fe756 (diff) |
*/ruby: Switch DEFAULT to 3.2
BREAKING CHANGES:
www/redmine50 will stop working. At the moment there is no redmine 5.1.X
in the tree. So users of redmine should utilize the following in their
relevant make.conf file:
DEFAULT_VERSIONS=ruby=3.1
PR: 244427
Approved by: portmgr (exp-run)
-rw-r--r-- | Mk/bsd.default-versions.mk | 2 | ||||
-rw-r--r-- | UPDATING | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk index b7968889e5ae..b10a1d07ad68 100644 --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -139,7 +139,7 @@ PYTHON_DEFAULT?= 3.9 # Possible values: 2.7 PYTHON2_DEFAULT?= 2.7 # Possible values: 3.0, 3.1, 3.2, 3.3 -RUBY_DEFAULT?= 3.1 +RUBY_DEFAULT?= 3.2 # Possible values: rust, rust-nightly RUST_DEFAULT?= rust # Possible values: 4.13, 4.16, 4.19 @@ -5,6 +5,20 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20240228: + AFFECTS: users of www/redmine50 + AUTHOR: bofh@FreeBSD.org + + The default vesion of ruby has been switched from 3.1 to 3.2. + + However www/redmine50 does not support ruby 3.2. Users should add the + following in their relevant make.conf file: + + DEFAULT_VERSIONS+=ruby=3.1 + + Although redmin 5.1.X supports ruby 3.2 and later but so far there is + no redmine51 ports in the tree. + 20240222: AFFECTS: users of databases/xtrabackup8 AUTHOR: eugen@FreeBSD.org |