aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald Klop <ronald@FreeBSD.org>2024-09-16 13:52:22 +0000
committerRonald Klop <ronald@FreeBSD.org>2024-09-27 13:04:30 +0000
commit3f41069bec5c3d55c89dadcd53e7cfe2299970c8 (patch)
tree30e991532cf595d4e10e79bcc706d3b64e00914d
parent0f610da3403de28d5e7f3e182585815551884dc9 (diff)
databases/mongodb50: deprecate, EOL from October 2024
See https://www.mongodb.com/legal/support-policy/lifecycles. Please use databases/mongodb60. There are no ports dependent upon this port. See UPDATING for instructions on upgrading.
-rw-r--r--UPDATING16
-rw-r--r--databases/mongodb50/Makefile3
2 files changed, 19 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 1680f96e85b8..bdf738ea691c 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,22 @@ 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.
+20240927:
+ AFFECTS: users of databases/mongodb50
+ AUTHOR: ronald@FreeBSD.org
+
+ MongoDB version 5.0 is End of Life starting October 2024.
+ Please make sure you are running MongoDB version 6.0 or higher.
+ In-place upgrades are supported from version 5.0 to 6.0.
+ For an in-place upgrade it is important that the
+ 'featureCompatibilityVersion' is set to 5.0.
+ See: https://www.mongodb.com/docs/v6.0/release-notes/6.0-upgrade-standalone/#feature-compatibility-version
+
+ TL;DR, run these commands in mongodb50 before upgrading:
+ $ mongo --port <portnr>
+ > db.adminCommand( { setFeatureCompatibilityVersion: "5.0" } )
+ > exit
+
20240912:
AFFECTS: security/clamav, security/clamav-lts
AUTHOR: netchildFreeBSD.org
diff --git a/databases/mongodb50/Makefile b/databases/mongodb50/Makefile
index 18a6ac7fe6b1..9ce5cdbb3007 100644
--- a/databases/mongodb50/Makefile
+++ b/databases/mongodb50/Makefile
@@ -1,6 +1,7 @@
PORTNAME= mongodb
DISTVERSIONPREFIX= r
DISTVERSION= 5.0.28
+PORTREVISION= 1
CATEGORIES= databases net
PKGNAMESUFFIX= ${DISTVERSION:R:S/.//}
@@ -14,6 +15,8 @@ LICENSE_NAME_SSPLv1= Server Side Public License Version 1
LICENSE_FILE_SSPLv1= ${WRKSRC}/LICENSE-Community.txt
LICENSE_PERMS_SSPLv1= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+DEPRECATED= EOL from October 2024, see https://www.mongodb.com/legal/support-policy/lifecycles, please use databases/mongodb60
+EXPIRATION_DATE= 2025-04-30
ONLY_FOR_ARCHS= aarch64 amd64 powerpc64le
ONLY_FOR_ARCHS_REASON= only ported to amd64, aarch64, and powerpc64le on FreeBSD; upstream supports arm64, ppc64le, s390x, and x86-64