From efaa98054a4460fe56dc323469809d23b9d51abd Mon Sep 17 00:00:00 2001 From: mauritsvanrees Date: Mon, 16 Dec 2024 17:41:32 +0100 Subject: [PATCH] [fc] Repository: Products.CMFPlone Branch: refs/heads/master Date: 2024-12-16T17:41:32+01:00 Author: Maurits van Rees (mauritsvanrees) Commit: https://github.com/plone/Products.CMFPlone/commit/eba6e73108541efac28eef47c7be61c658684db9 Officially drop support for Python 3.8 and 3.9, and support 3.13. See https://github.com/plone/Products.CMFPlone/issues/3926 Files changed: A news/313.feature A news/3926.breaking M setup.py --- last_commit.txt | 49 ++++++++++--------------------------------------- 1 file changed, 10 insertions(+), 39 deletions(-) diff --git a/last_commit.txt b/last_commit.txt index cd786e5497..94725d4c14 100644 --- a/last_commit.txt +++ b/last_commit.txt @@ -1,48 +1,19 @@ -Repository: plone.app.users +Repository: Products.CMFPlone Branch: refs/heads/master -Date: 2024-12-12T16:15:15+01:00 -Author: Mikel Larreategi (erral) -Commit: https://github.com/plone/plone.app.users/commit/6ab77fcee20a8e2b9dc514e282e603685d202e4f +Date: 2024-12-16T17:41:32+01:00 +Author: Maurits van Rees (mauritsvanrees) +Commit: https://github.com/plone/Products.CMFPlone/commit/eba6e73108541efac28eef47c7be61c658684db9 -missing string for locales +Officially drop support for Python 3.8 and 3.9, and support 3.13. -Files changed: -M plone/app/users/schema.py - -b'diff --git a/plone/app/users/schema.py b/plone/app/users/schema.py\nindex 2c5fdbf..5735fd6 100644\n--- a/plone/app/users/schema.py\n+++ b/plone/app/users/schema.py\n@@ -79,7 +79,7 @@ class IUserDataSchema(Interface):\n \n email = ProtectedEmail(\n title=_("label_email", default="Email"),\n- description="We will use this address if you need to recover your " "password",\n+ description=_("We will use this address if you need to recover your password"),\n required=True,\n constraint=checkEmailAddress,\n )\n' - -Repository: plone.app.users - - -Branch: refs/heads/master -Date: 2024-12-12T16:15:50+01:00 -Author: Mikel Larreategi (erral) -Commit: https://github.com/plone/plone.app.users/commit/d9f409e5c3268dc699a8b100b9b2456df47f0723 - -changelog - -Files changed: -A news/132.bugfix - -b'diff --git a/news/132.bugfix b/news/132.bugfix\nnew file mode 100644\nindex 00000000..80c8b72a\n--- /dev/null\n+++ b/news/132.bugfix\n@@ -0,0 +1 @@\n+Add missing locale for translations [erral]\n' - -Repository: plone.app.users - - -Branch: refs/heads/master -Date: 2024-12-12T11:04:46-08:00 -Author: David Glick (davisagli) -Commit: https://github.com/plone/plone.app.users/commit/2e7332f820ba6c0b2222bf81413f386ff8fc2d58 - -Merge pull request #132 from plone/erral-missing-string - -missing string for locales +See https://github.com/plone/Products.CMFPlone/issues/3926 Files changed: -A news/132.bugfix -M plone/app/users/schema.py +A news/313.feature +A news/3926.breaking +M setup.py -b'diff --git a/news/132.bugfix b/news/132.bugfix\nnew file mode 100644\nindex 00000000..80c8b72a\n--- /dev/null\n+++ b/news/132.bugfix\n@@ -0,0 +1 @@\n+Add missing locale for translations [erral]\ndiff --git a/plone/app/users/schema.py b/plone/app/users/schema.py\nindex 2c5fdbf4..5735fd62 100644\n--- a/plone/app/users/schema.py\n+++ b/plone/app/users/schema.py\n@@ -79,7 +79,7 @@ class IUserDataSchema(Interface):\n \n email = ProtectedEmail(\n title=_("label_email", default="Email"),\n- description="We will use this address if you need to recover your " "password",\n+ description=_("We will use this address if you need to recover your password"),\n required=True,\n constraint=checkEmailAddress,\n )\n' +b'diff --git a/news/313.feature b/news/313.feature\nnew file mode 100644\nindex 0000000000..7303bfa9d4\n--- /dev/null\n+++ b/news/313.feature\n@@ -0,0 +1,2 @@\n+Support Python 3.13. You need at least Python 3.13.1.\n+[maurits]\ndiff --git a/news/3926.breaking b/news/3926.breaking\nnew file mode 100644\nindex 0000000000..b89eaa8ca3\n--- /dev/null\n+++ b/news/3926.breaking\n@@ -0,0 +1,4 @@\n+Officially drop support for Python 3.8 and 3.9.\n+This was always the case for Plone 6.1, but we did not yet say this in the changelog.\n+See [PLIP 3926](https://github.com/plone/Products.CMFPlone/issues/3926).\n+[maurits]\ndiff --git a/setup.py b/setup.py\nindex c594aa8c4a..0dffd8d9fb 100644\n--- a/setup.py\n+++ b/setup.py\n@@ -15,17 +15,16 @@\n "Development Status :: 5 - Production/Stable",\n "Environment :: Web Environment",\n "Framework :: Plone",\n- "Framework :: Plone :: 6.0",\n+ "Framework :: Plone :: 6.1",\n "Framework :: Plone :: Core",\n "Framework :: Zope :: 5",\n "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",\n "Operating System :: OS Independent",\n "Programming Language :: Python",\n- "Programming Language :: Python :: 3.8",\n- "Programming Language :: Python :: 3.9",\n "Programming Language :: Python :: 3.10",\n "Programming Language :: Python :: 3.11",\n "Programming Language :: Python :: 3.12",\n+ "Programming Language :: Python :: 3.13",\n ],\n python_requires=">=3.8",\n keywords="Plone CMF Python Zope CMS Webapplication",\n'