-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update 5.0 to latest zope 2.13.23 #99
Conversation
Ok, this fails with datetime and timezone problems. Things one would not expect.... |
0bd15b1
to
76368aa
Compare
jenkins was red, next trial http://jenkins.plone.org/job/pull-request-5.0/218/ |
e7db76d
to
ecdb458
Compare
Mostly test failures about dates. Could be due to updated DateTime module, but I have not checked. For ease of reference, here is the diff between the current and new Zope2 versions:
|
I had to build that kgs from hand since the release on zope.org changed formats and left a lot of things out. I'd appreciate it if someone could sanity check that for me to make sure I didn't muck it up even more. |
Here are the few versions that actually change with this pr (above: old, below: new).
|
3234d01
to
c9d5bfb
Compare
This looks hard to get right. It will currently fail, but let's give Jenkins another go at it: |
Lots of funky stuff. plone.app.event tests fail because the list of occurrences of an event is supposed to have the event as first item, but this is not the case because timezones mess up the logic. When you jump in with a pdb, you get things like this In plone.event.recurrence:
The LMT+1 is how the new pytz wants it, CET+1 is like the old pytz, and Zope DateTime prefers GMT+1. All three somehow need to work together and be comparable, which is hard. It probably gets harder if you want to try to support both the old and new pytz versions with the same code base, if that is a goal. It also does not help if
In this case, somehow one of the other tests does not properly cleanup a mock DateTime, so any DateTime call results in the same date. Strange that the debug flag for bin/test would cause that. Also, if we update pytz, I wonder if we want to update Zope DateTime too, from 3.0.3 to 4.0.1. But that does not help for the tests, at least not for all of them. Meanwhile, Jenkins gives strange errors in plone.app.testing, so let's try again: For now, if we want to use the latest Zope2, I guess it it better to override its pytz version and keep that to the 2013b version that we have been using so far. Or update it to 2014.2 at the most. |
And trying again, after fixing a syntax error in the Japanese po file which tripped up the tests... |
Jenkins is still running, but it is failing already. So let's see what happens when we use a less new pytz version: |
Trying yet again, with the original pytz 2013b: |
01ebdfb
to
e64fe38
Compare
Jenkins is still not happy. |
Still failing. Reverting zope.testrunner to an earlier version helped for pull request #100, so let's try that here too. Go Jenkins: |
Hah, now the tests pass, except for one: "Scenario Show warning when deleting linked item from foldercontents". That is the randomly failing linkintegrity test from plone/Products.CMFPlone#854. |
Awesome. Thanks!
|
Use branch of plone.dexterity. We can try, but this seems very tricky. Zope DateTime likes timezones as GMT plus an offset, and Python pytz 2014.3 and higher seem to be very much against it.
This reverts commit 14791e6.
For newer versions we need changes in the tests of several packages, and maybe in actual code too.
3bf7069
to
e412d6b
Compare
Rebased. test: http://jenkins.plone.org/job/pull-request-5.0/302/ |
Update 5.0 to latest zope 2.13.23
👍 |
Branch: refs/heads/master Date: 2016-07-13T07:42:08+02:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.app.content@c4dfa7e fix recursive workflow actions Files changed: M CHANGES.rst M plone/app/content/browser/contents/workflow.py Repository: plone.app.content Branch: refs/heads/master Date: 2016-07-22T18:48:55+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.content@b6fdabf Merge pull request #99 from plone/issue_94 fix recursive workflow actions Files changed: M CHANGES.rst M plone/app/content/browser/contents/workflow.py
Branch: refs/heads/master Date: 2016-07-13T07:42:08+02:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.app.content@c4dfa7e fix recursive workflow actions Files changed: M CHANGES.rst M plone/app/content/browser/contents/workflow.py Repository: plone.app.content Branch: refs/heads/master Date: 2016-07-22T18:48:55+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.content@b6fdabf Merge pull request #99 from plone/issue_94 fix recursive workflow actions Files changed: M CHANGES.rst M plone/app/content/browser/contents/workflow.py
Branch: refs/heads/master Date: 2016-11-04T23:10:58+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.upgrade@f8bc1f4 Install plone.app.caching in 5.0 alpha, if available. When it is already installed, upgrade it. Note that plone.app.caching is required by Plone, not by Products.CMFPlone, so it may not be available for installing. Files changed: M CHANGES.rst M plone/app/upgrade/tests/base.py M plone/app/upgrade/v50/alphas.py M plone/app/upgrade/v50/testing.py M setup.py Repository: plone.app.upgrade Branch: refs/heads/master Date: 2016-11-06T13:16:02+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.upgrade@50b7c1a Merge pull request #99 from plone/install-caching-50-alpha Install plone.app.caching in 5.0 alpha, if available. Files changed: M CHANGES.rst M plone/app/upgrade/tests/base.py M plone/app/upgrade/v50/alphas.py M plone/app/upgrade/v50/testing.py M setup.py
Branch: refs/heads/master Date: 2016-11-04T23:10:58+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.upgrade@f8bc1f4 Install plone.app.caching in 5.0 alpha, if available. When it is already installed, upgrade it. Note that plone.app.caching is required by Plone, not by Products.CMFPlone, so it may not be available for installing. Files changed: M CHANGES.rst M plone/app/upgrade/tests/base.py M plone/app/upgrade/v50/alphas.py M plone/app/upgrade/v50/testing.py M setup.py Repository: plone.app.upgrade Branch: refs/heads/master Date: 2016-11-06T13:16:02+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.upgrade@50b7c1a Merge pull request #99 from plone/install-caching-50-alpha Install plone.app.caching in 5.0 alpha, if available. Files changed: M CHANGES.rst M plone/app/upgrade/tests/base.py M plone/app/upgrade/v50/alphas.py M plone/app/upgrade/v50/testing.py M setup.py
Branch: refs/heads/master Date: 2017-02-22T17:23:33+01:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.api@f73bddc fix #99 for Archetypes content suggested by pgrunewald Files changed: M src/plone/api/content.py Repository: plone.api Branch: refs/heads/master Date: 2017-02-22T17:24:25+01:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.api@9202c49 update changelog Files changed: M CHANGES.rst Repository: plone.api Branch: refs/heads/master Date: 2017-02-23T09:12:06+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.api@0278775 Merge pull request #319 from gotcha/master fix #99 for Archetypes content Files changed: M CHANGES.rst M src/plone/api/content.py
Branch: refs/heads/master Date: 2017-02-22T17:23:33+01:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.api@f73bddc fix #99 for Archetypes content suggested by pgrunewald Files changed: M src/plone/api/content.py Repository: plone.api Branch: refs/heads/master Date: 2017-02-22T17:24:25+01:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.api@9202c49 update changelog Files changed: M CHANGES.rst Repository: plone.api Branch: refs/heads/master Date: 2017-02-23T09:12:06+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.api@0278775 Merge pull request #319 from gotcha/master fix #99 for Archetypes content Files changed: M CHANGES.rst M src/plone/api/content.py
Branch: refs/heads/master Date: 2017-06-12T22:32:53+02:00 Author: Johannes Raggam (thet) <[email protected]> Commit: plone/plone.app.portlets@cd21ea3 Cleanup of PLIP #1734 Files changed: M CHANGES.rst M plone/app/portlets/portlets/navigation.py M plone/app/portlets/portlets/navigation_recurse.pt M plone/app/portlets/portlets/news.pt M plone/app/portlets/portlets/news.py M plone/app/portlets/portlets/recent.pt M plone/app/portlets/portlets/recent.py M plone/app/portlets/portlets/review.pt M plone/app/portlets/portlets/review.py M plone/app/portlets/tests/profiles/testing/portlets.xml M plone/app/portlets/tests/test_configuration.py Repository: plone.app.portlets Branch: refs/heads/master Date: 2017-06-14T14:41:51+02:00 Author: Johannes Raggam (thet) <[email protected]> Commit: plone/plone.app.portlets@2c41122 Merge pull request #99 from plone/thet-1734-cleanup Cleanup of PLIP #1734 Files changed: M CHANGES.rst M plone/app/portlets/portlets/navigation.py M plone/app/portlets/portlets/navigation_recurse.pt M plone/app/portlets/portlets/news.pt M plone/app/portlets/portlets/news.py M plone/app/portlets/portlets/recent.pt M plone/app/portlets/portlets/recent.py M plone/app/portlets/portlets/review.pt M plone/app/portlets/portlets/review.py M plone/app/portlets/tests/profiles/testing/portlets.xml M plone/app/portlets/tests/test_configuration.py
Branch: refs/heads/master Date: 2019-03-29T21:40:32+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.dexterity@4cab6b2 feat: ignore more attribute names This is mostly an optimization, see the rationale at the linked issue. Fixes plone/plone.dexterity#98 Files changed: M plone/dexterity/content.py Repository: plone.dexterity Branch: refs/heads/master Date: 2019-03-29T21:40:32+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.dexterity@a8cc9c9 Add news entry Files changed: A news/98.feature Repository: plone.dexterity Branch: refs/heads/master Date: 2019-04-01T15:22:20+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.dexterity@e3749d2 Merge pull request #99 from plone/minor-optimization Minor optimization Files changed: A news/98.feature M plone/dexterity/content.py
Branch: refs/heads/master Date: 2019-04-27T16:56:20+02:00 Author: Jürgen Gmach (jugmac00) <[email protected]> Commit: plone/plone.recipe.zope2instance@50a0293 Remove duplicate word. Files changed: M README.rst Repository: plone.recipe.zope2instance Branch: refs/heads/master Date: 2019-05-02T21:18:27+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.recipe.zope2instance@eb3f54e Merge pull request #99 from jugmac00/patch-1 Remove duplicate word. Files changed: M README.rst
Branch: refs/heads/master Date: 2021-06-19T01:50:25+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.namedfile@37b9b7f Prevent stored XSS from file upload (svg, html). Do this by implementing an allowlist of trusted mimetypes. You can turn this around by using a denylist of just svg, html and javascript. Do this by setting OS environment variable ``NAMEDFILE_USE_DENYLIST=1``. From [Products.PloneHotfix20210518](https://plone.org/security/hotfix/20210518/reflected-xss-in-various-spots). Files changed: A news/3274.feature A plone/namedfile/tests/file.pdf A plone/namedfile/tests/test_display_file.py M plone/namedfile/browser.py M plone/namedfile/usage.rst M setup.py Repository: plone.namedfile Branch: refs/heads/master Date: 2021-06-30T12:10:56+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.namedfile@2ae8ad9 Merge pull request #99 from plone/hotfix-20210518 Prevent stored XSS from file upload (svg, html). Files changed: A news/3274.feature A plone/namedfile/tests/file.pdf A plone/namedfile/tests/test_display_file.py M plone/namedfile/browser.py M plone/namedfile/usage.rst M setup.py
Branch: refs/heads/master Date: 2021-06-19T01:50:25+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.namedfile@37b9b7f Prevent stored XSS from file upload (svg, html). Do this by implementing an allowlist of trusted mimetypes. You can turn this around by using a denylist of just svg, html and javascript. Do this by setting OS environment variable ``NAMEDFILE_USE_DENYLIST=1``. From [Products.PloneHotfix20210518](https://plone.org/security/hotfix/20210518/reflected-xss-in-various-spots). Files changed: A news/3274.feature A plone/namedfile/tests/file.pdf A plone/namedfile/tests/test_display_file.py M plone/namedfile/browser.py M plone/namedfile/usage.rst M setup.py Repository: plone.namedfile Branch: refs/heads/master Date: 2021-06-30T12:10:56+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.namedfile@2ae8ad9 Merge pull request #99 from plone/hotfix-20210518 Prevent stored XSS from file upload (svg, html). Files changed: A news/3274.feature A plone/namedfile/tests/file.pdf A plone/namedfile/tests/test_display_file.py M plone/namedfile/browser.py M plone/namedfile/usage.rst M setup.py
Branch: refs/heads/master Date: 2022-05-06T10:34:56+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.caching@d352e16 move to registry folder Files changed: A plone/app/caching/profiles/default/registry/basesettings.xml D plone/app/caching/profiles/default/registry.xml Repository: plone.app.caching Branch: refs/heads/master Date: 2022-05-06T12:11:11+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.caching@a16b9b1 review documentation Files changed: M docs/caching-control-panel.rst M docs/caching-profiles.rst M docs/caching-proxies.rst M docs/composite-views.rst M docs/etags.rst M docs/ram-cache.rst M docs/restapi.rst Repository: plone.app.caching Branch: refs/heads/master Date: 2022-05-06T12:14:44+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.caching@e644972 remove split-view - it was not maintained for a while and is pointless Files changed: M docs/caching-profiles.rst M plone/app/caching/caching.zcml D docs/split-views.rst D plone/app/caching/profiles/with-caching-proxy-splitviews/registry.xml Repository: plone.app.caching Branch: refs/heads/master Date: 2022-05-06T12:16:34+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.caching@b6f35f3 minor code cleanup Files changed: M plone/app/caching/lastmodified.py M plone/app/caching/lookup.py M plone/app/caching/operations/default.py M plone/app/caching/operations/etags.py M plone/app/caching/operations/ramcache.py M plone/app/caching/operations/utils.py M plone/app/caching/purge.py M plone/app/caching/tests/test_etags.py M plone/app/caching/tests/test_lastmodified.py M plone/app/caching/tests/test_operation_utils.py M plone/app/caching/utils.py Repository: plone.app.caching Branch: refs/heads/master Date: 2022-05-06T12:23:00+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.caching@bc643a4 add news file Files changed: A news/99.breaking A news/99.bugfix Repository: plone.app.caching Branch: refs/heads/master Date: 2022-05-07T16:59:54-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/plone.app.caching@9843fd4 Merge pull request #99 from plone/cleanup Cleanup Files changed: A news/99.breaking A news/99.bugfix A plone/app/caching/profiles/default/registry/basesettings.xml M docs/caching-control-panel.rst M docs/caching-profiles.rst M docs/caching-proxies.rst M docs/composite-views.rst M docs/etags.rst M docs/ram-cache.rst M docs/restapi.rst M plone/app/caching/caching.zcml M plone/app/caching/lastmodified.py M plone/app/caching/lookup.py M plone/app/caching/operations/default.py M plone/app/caching/operations/etags.py M plone/app/caching/operations/ramcache.py M plone/app/caching/operations/utils.py M plone/app/caching/purge.py M plone/app/caching/tests/test_etags.py M plone/app/caching/tests/test_lastmodified.py M plone/app/caching/tests/test_operation_utils.py M plone/app/caching/utils.py D docs/split-views.rst D plone/app/caching/profiles/default/registry.xml D plone/app/caching/profiles/with-caching-proxy-splitviews/registry.xml
Branch: refs/heads/master Date: 2023-03-03T21:43:53+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.schemaeditor@47e1326 Configuring with plone/meta Files changed: A .pre-commit-config.yaml A news/13d8d6c0.internal M .meta.toml M setup.cfg M tox.ini Repository: plone.schemaeditor Branch: refs/heads/master Date: 2023-03-03T22:16:31+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.schemaeditor@83a966c chore: black Files changed: M plone/schemaeditor/browser/field/edit.py M plone/schemaeditor/browser/schema/add_field.py M plone/schemaeditor/browser/schema/add_fieldset.py M plone/schemaeditor/browser/schema/listing.py M plone/schemaeditor/fields.py M plone/schemaeditor/interfaces.py M plone/schemaeditor/schema.py M plone/schemaeditor/testing.py M plone/schemaeditor/tests/fixtures.py M plone/schemaeditor/tests/test_fields.py Repository: plone.schemaeditor Branch: refs/heads/master Date: 2023-03-03T22:42:17+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.schemaeditor@9e206a2 chore: zpretty Files changed: M plone/schemaeditor/browser/configure.zcml M plone/schemaeditor/browser/field/configure.zcml M plone/schemaeditor/browser/field/edit.pt M plone/schemaeditor/browser/schema/add.pt M plone/schemaeditor/browser/schema/configure.zcml M plone/schemaeditor/browser/schema/schema_listing.pt M plone/schemaeditor/configure.zcml M plone/schemaeditor/fields.zcml M plone/schemaeditor/schema.zcml M plone/schemaeditor/tests/browser_testing.zcml M plone/schemaeditor/tests/layout.pt M plone/schemaeditor/tests/robot_testing.zcml Repository: plone.schemaeditor Branch: refs/heads/master Date: 2023-03-04T09:19:43+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.schemaeditor@d1125dc Fix attribute Files changed: M plone/schemaeditor/browser/schema/schema_listing.pt Repository: plone.schemaeditor Branch: refs/heads/master Date: 2023-03-04T09:21:53+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.schemaeditor@75c72b4 Run zpretty Files changed: M plone/schemaeditor/browser/schema/schema_listing.pt Repository: plone.schemaeditor Branch: refs/heads/master Date: 2023-03-07T23:26:46+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.schemaeditor@6182d47 Merge pull request #99 from plone/config-with-default-template-f81c1b30 Config with default template Files changed: A .pre-commit-config.yaml A news/13d8d6c0.internal M .meta.toml M plone/schemaeditor/browser/configure.zcml M plone/schemaeditor/browser/field/configure.zcml M plone/schemaeditor/browser/field/edit.pt M plone/schemaeditor/browser/field/edit.py M plone/schemaeditor/browser/schema/add.pt M plone/schemaeditor/browser/schema/add_field.py M plone/schemaeditor/browser/schema/add_fieldset.py M plone/schemaeditor/browser/schema/configure.zcml M plone/schemaeditor/browser/schema/listing.py M plone/schemaeditor/browser/schema/schema_listing.pt M plone/schemaeditor/configure.zcml M plone/schemaeditor/fields.py M plone/schemaeditor/fields.zcml M plone/schemaeditor/interfaces.py M plone/schemaeditor/schema.py M plone/schemaeditor/schema.zcml M plone/schemaeditor/testing.py M plone/schemaeditor/tests/browser_testing.zcml M plone/schemaeditor/tests/fixtures.py M plone/schemaeditor/tests/layout.pt M plone/schemaeditor/tests/robot_testing.zcml M plone/schemaeditor/tests/test_fields.py M setup.cfg M tox.ini
Branch: refs/heads/master Date: 2023-04-11T13:37:51+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.protect@115c110 do not depend here on plone.portlets Files changed: A news/99.bugfix M plone/protect/auto.py Repository: plone.protect Branch: refs/heads/master Date: 2023-04-11T16:36:22+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.protect@beb045c Merge pull request #99 from plone/no-dep-portlets do not depend here on plone.portlets Files changed: A news/99.bugfix M plone/protect/auto.py
Branch: refs/heads/master Date: 2023-04-11T13:37:51+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.protect@115c110 do not depend here on plone.portlets Files changed: A news/99.bugfix M plone/protect/auto.py Repository: plone.protect Branch: refs/heads/master Date: 2023-04-11T16:36:22+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.protect@beb045c Merge pull request #99 from plone/no-dep-portlets do not depend here on plone.portlets Files changed: A news/99.bugfix M plone/protect/auto.py
Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@dca9b12 Configuring with plone/meta Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@26ae2d0 cleanup: remove unused file Files changed: D setup.cfg Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@ebe23b2 fix: adjust setup.py Files changed: M setup.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@44c1a73 fix: mark strings for translation Files changed: M Products/CMFEditions/browser/templates/diff.pt M Products/CMFEditions/browser/templates/version_image_view.pt M Products/CMFEditions/browser/templates/version_metadata_view.pt Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:28+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@cdcb1cc fix: declare dependencies Files changed: M setup.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T22:46:24+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@f31865e Merge pull request #99 from plone/config-with-default-template-22f401c4 Config with default template Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M Products/CMFEditions/browser/templates/diff.pt M Products/CMFEditions/browser/templates/version_image_view.pt M Products/CMFEditions/browser/templates/version_metadata_view.pt M pyproject.toml M setup.py M tox.ini D setup.cfg
Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@dca9b12 Configuring with plone/meta Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@26ae2d0 cleanup: remove unused file Files changed: D setup.cfg Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@ebe23b2 fix: adjust setup.py Files changed: M setup.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:27+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@44c1a73 fix: mark strings for translation Files changed: M Products/CMFEditions/browser/templates/diff.pt M Products/CMFEditions/browser/templates/version_image_view.pt M Products/CMFEditions/browser/templates/version_metadata_view.pt Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T20:25:28+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@cdcb1cc fix: declare dependencies Files changed: M setup.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2023-12-22T22:46:24+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFEditions@f31865e Merge pull request #99 from plone/config-with-default-template-22f401c4 Config with default template Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M Products/CMFEditions/browser/templates/diff.pt M Products/CMFEditions/browser/templates/version_image_view.pt M Products/CMFEditions/browser/templates/version_metadata_view.pt M pyproject.toml M setup.py M tox.ini D setup.cfg
Branch: refs/heads/master Date: 2024-06-03T19:59:45Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.app.linkintegrity@07ba55a [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.15.0 → v3.15.2](asottile/pyupgrade@v3.15.0...v3.15.2) - [github.com/psf/black: 24.1.1 → 24.4.2](psf/black@24.1.1...24.4.2) - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) - [github.com/collective/i18ndude: 6.1.0 → 6.2.0](collective/i18ndude@6.1.0...6.2.0) Files changed: M .pre-commit-config.yaml Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2024-06-12T19:48:30+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.linkintegrity@2139866 codespell ignore assertin Files changed: M .meta.toml M pyproject.toml Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2024-06-12T13:50:36-04:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.linkintegrity@70b08e8 Merge pull request #99 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .meta.toml M .pre-commit-config.yaml M pyproject.toml
Branch: refs/heads/master Date: 2024-06-03T19:59:45Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.app.linkintegrity@07ba55a [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.15.0 → v3.15.2](asottile/pyupgrade@v3.15.0...v3.15.2) - [github.com/psf/black: 24.1.1 → 24.4.2](psf/black@24.1.1...24.4.2) - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) - [github.com/collective/i18ndude: 6.1.0 → 6.2.0](collective/i18ndude@6.1.0...6.2.0) Files changed: M .pre-commit-config.yaml Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2024-06-12T19:48:30+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.linkintegrity@2139866 codespell ignore assertin Files changed: M .meta.toml M pyproject.toml Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2024-06-12T13:50:36-04:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.linkintegrity@70b08e8 Merge pull request #99 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .meta.toml M .pre-commit-config.yaml M pyproject.toml
No description provided.