-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fc] Repository: plone.app.multilingual
Branch: refs/heads/master Date: 2024-11-04T16:25:22+01:00 Author: Yuri (yurj) <[email protected]> Commit: plone/plone.app.multilingual@0674f94 Update helper_views.py See plone/plone.app.multilingual#472 Files changed: M src/plone/app/multilingual/browser/helper_views.py Repository: plone.app.multilingual Branch: refs/heads/master Date: 2024-11-04T16:27:06+01:00 Author: Yuri (yurj) <[email protected]> Commit: plone/plone.app.multilingual@c596751 Create 472.bug Files changed: A news/472.bug Repository: plone.app.multilingual Branch: refs/heads/master Date: 2024-11-04T17:15:19+01:00 Author: Mikel Larreategi (erral) <[email protected]> Commit: plone/plone.app.multilingual@315b308 Merge pull request #473 from plone/yurj-patch-472-missing-comma Update helper_views.py Files changed: A news/472.bug M src/plone/app/multilingual/browser/helper_views.py
- Loading branch information
Showing
1 changed file
with
36 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,50 @@ | ||
Repository: plone.restapi | ||
Repository: plone.app.multilingual | ||
|
||
|
||
Branch: refs/heads/main | ||
Date: 2024-11-01T14:25:01-07:00 | ||
Author: David Glick (davisagli) <[email protected]> | ||
Commit: https://github.com/plone/plone.restapi/commit/741bd1cdfd5b27440554979d54510eae42d3ae2c | ||
Branch: refs/heads/master | ||
Date: 2024-11-04T16:25:22+01:00 | ||
Author: Yuri (yurj) <[email protected]> | ||
Commit: https://github.com/plone/plone.app.multilingual/commit/0674f9442b6256c5425657a0ae44a08eb3f6eaf5 | ||
|
||
Preparing release 9.8.3 | ||
Update helper_views.py | ||
|
||
See https://github.com/plone/plone.app.multilingual/issues/472 | ||
|
||
Files changed: | ||
M CHANGES.rst | ||
M setup.py | ||
D news/1830.bugfix | ||
M src/plone/app/multilingual/browser/helper_views.py | ||
|
||
b'diff --git a/src/plone/app/multilingual/browser/helper_views.py b/src/plone/app/multilingual/browser/helper_views.py\nindex b88d7b66..fb7b32a3 100644\n--- a/src/plone/app/multilingual/browser/helper_views.py\n+++ b/src/plone/app/multilingual/browser/helper_views.py\n@@ -192,7 +192,7 @@ def wrapDestination(self, url, postpath=True):\n """\n if postpath:\n url += self.request.form.get("post_path", "")\n- return addQuery(self.request, url, exclude=("post_path"))\n+ return addQuery(self.request, url, exclude=("post_path",))\n \n def __call__(self):\n url = self.getDestination()\n' | ||
|
||
Repository: plone.app.multilingual | ||
|
||
|
||
Branch: refs/heads/master | ||
Date: 2024-11-04T16:27:06+01:00 | ||
Author: Yuri (yurj) <[email protected]> | ||
Commit: https://github.com/plone/plone.app.multilingual/commit/c5967510101e069fe446e98cd251064fb67ec452 | ||
|
||
Create 472.bug | ||
|
||
Files changed: | ||
A news/472.bug | ||
|
||
b'diff --git a/news/472.bug b/news/472.bug\nnew file mode 100644\nindex 000000000..78add43c2\n--- /dev/null\n+++ b/news/472.bug\n@@ -0,0 +1 @@\n+[yurj] missing comma lead to unexpected variable remove from url\n' | ||
|
||
b'diff --git a/CHANGES.rst b/CHANGES.rst\nindex 4954960da..3e6cc99b8 100644\n--- a/CHANGES.rst\n+++ b/CHANGES.rst\n@@ -8,6 +8,15 @@ Changelog\n \n .. towncrier release notes start\n \n+9.8.3 (2024-11-01)\n+------------------\n+\n+Bug fixes:\n+\n+\n+- Fixed Plone Site serialization when there is a field with read_permission set. @ericof (#1830)\n+\n+\n 9.8.2 (2024-10-30)\n ------------------\n \ndiff --git a/news/1830.bugfix b/news/1830.bugfix\ndeleted file mode 100644\nindex df8dfb81c..000000000\n--- a/news/1830.bugfix\n+++ /dev/null\n@@ -1 +0,0 @@\n-Fixed Plone Site serialization when there is a field with read_permission set. @ericof\n\\ No newline at end of file\ndiff --git a/setup.py b/setup.py\nindex 183ac1eed..03ea5095b 100644\n--- a/setup.py\n+++ b/setup.py\n@@ -4,7 +4,7 @@\n import sys\n \n \n-version = "9.8.3.dev0"\n+version = "9.8.3"\n \n if sys.version_info.major == 2:\n raise ValueError(\n' | ||
Repository: plone.app.multilingual | ||
|
||
Repository: plone.restapi | ||
|
||
Branch: refs/heads/master | ||
Date: 2024-11-04T17:15:19+01:00 | ||
Author: Mikel Larreategi (erral) <[email protected]> | ||
Commit: https://github.com/plone/plone.app.multilingual/commit/315b30885f224db91c58c4c38331edcb65f8b43a | ||
|
||
Branch: refs/heads/main | ||
Date: 2024-11-01T14:25:51-07:00 | ||
Author: David Glick (davisagli) <[email protected]> | ||
Commit: https://github.com/plone/plone.restapi/commit/e63416968eb390f42df50c1025395d1b3baf7f60 | ||
Merge pull request #473 from plone/yurj-patch-472-missing-comma | ||
|
||
Back to development: 9.8.4 | ||
Update helper_views.py | ||
|
||
Files changed: | ||
M setup.py | ||
A news/472.bug | ||
M src/plone/app/multilingual/browser/helper_views.py | ||
|
||
b'diff --git a/setup.py b/setup.py\nindex 03ea5095b..dc007c4c1 100644\n--- a/setup.py\n+++ b/setup.py\n@@ -4,7 +4,7 @@\n import sys\n \n \n-version = "9.8.3"\n+version = "9.8.4.dev0"\n \n if sys.version_info.major == 2:\n raise ValueError(\n' | ||
b'diff --git a/news/472.bug b/news/472.bug\nnew file mode 100644\nindex 000000000..78add43c2\n--- /dev/null\n+++ b/news/472.bug\n@@ -0,0 +1 @@\n+[yurj] missing comma lead to unexpected variable remove from url\ndiff --git a/src/plone/app/multilingual/browser/helper_views.py b/src/plone/app/multilingual/browser/helper_views.py\nindex b88d7b669..fb7b32a3d 100644\n--- a/src/plone/app/multilingual/browser/helper_views.py\n+++ b/src/plone/app/multilingual/browser/helper_views.py\n@@ -192,7 +192,7 @@ def wrapDestination(self, url, postpath=True):\n """\n if postpath:\n url += self.request.form.get("post_path", "")\n- return addQuery(self.request, url, exclude=("post_path"))\n+ return addQuery(self.request, url, exclude=("post_path",))\n \n def __call__(self):\n url = self.getDestination()\n' | ||
|