Skip to content
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

Generate requirements.txt for use with pip #26

Closed
wants to merge 354 commits into from

Conversation

witsch
Copy link
Member

@witsch witsch commented Oct 13, 2012

This adds a buildout part generating a requirements.txt file suitable for installing Plone using pip:

$ virtualenv-2.7 --no-site-packages .
$ bin/pip install -r .../requirements.txt

Timo Stollenwerk and others added 30 commits June 17, 2012 20:01
Conflicts:

	versions.cfg
mister-roboto pushed a commit that referenced this pull request Jun 18, 2019
Branch: refs/heads/master
Date: 2019-06-18T14:47:12+02:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.staticresources@a400923

Integrate plone/mockup#906 which fixes wrong in-path marking for similar pathnames.

Files changed:
A news/26.bugfix
M src/plone/staticresources/profiles/default/registry/bundles.xml
M src/plone/staticresources/static/plone-compiled.css.map
M src/plone/staticresources/static/plone-compiled.js
M src/plone/staticresources/static/plone-compiled.min.js
M src/plone/staticresources/static/plone-compiled.min.js.map
Repository: plone.staticresources

Branch: refs/heads/master
Date: 2019-06-18T14:49:05+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.staticresources@fecb987

Merge pull request #26 from plone/fix-inpath-class

Fix width issue with second level navigation

Files changed:
A news/26.bugfix
M src/plone/staticresources/profiles/default/registry/bundles.xml
M src/plone/staticresources/static/plone-compiled.css.map
M src/plone/staticresources/static/plone-compiled.js
M src/plone/staticresources/static/plone-compiled.min.js
M src/plone/staticresources/static/plone-compiled.min.js.map
mister-roboto pushed a commit that referenced this pull request Aug 29, 2019
Branch: refs/heads/master
Date: 2019-08-17T00:26:23+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@f0d5021

Ran black.

Black sees a SyntaxError in changelog.py, so that one is not changed.

Files changed:
M bootstrap.py
M plone/__init__.py
M plone/releaser/__init__.py
M plone/releaser/buildout.py
M plone/releaser/db.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:28:27+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@10513b2

Fixed old-style exceptions in changelog.py

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:28:36+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@27f43e2

Ran black on changelog.py.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:37:50+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@34004c2

Call sources.items instead of iteritems.

iteritems does not exist in Python 3.

Files changed:
M plone/releaser/manage.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:38:08+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@7179ec3

Use a urlopen that works in Python 2 and 3.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:40:33+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@2b62ded

changelog DIST_URL: use https.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T01:02:18+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@8c90f40

Ran python-modernize.

https://docs.plone.org/manage/upgrading/version_specific_migration/upgrade_to_python3.html#automated-fixing-with-modernize

Some manual edits, because I got 'print((...))' and python 2 imports in a try/except ImportError were replaced with six.

Files changed:
M plone/releaser/buildout.py
M plone/releaser/changelog.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T22:50:26+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@1e047b7

Fixed bytes/unicode error in 'manage changelog'.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T22:54:21+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@72e6620

changelog: output string does not need to be encoded.

Otherwise you get an ugly one-liner with b'' on Python 3.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T23:13:02+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@c6142c3

changelog: ignore packages without version.

This happens for lines with an '=' like this:

[versionannotations:python27]
towncrier =
    18.6.0 does not work on Python 2, see twisted/towncrier#121

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T23:22:12+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@885cc54

Fixed TypeError in manage changelog.

Not all versions can be compared.
We might need to switch from distutils.LooseVersion to something from setuptools.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-22T17:45:01+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@9182d3f

Fixed ugly bytes representation in commit report.

Files changed:
M plone/releaser/package.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-22T17:50:41+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@de4f829

Added news snippet for issue 25.

Files changed:
A news/25.bugfix
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-29T20:21:01+02:00
Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl>
Commit: plone/plone.releaser@fa57959

Merge pull request #26 from plone/maurits-issue-25-python3

[WIP] Fix Python 3 compatibility

Files changed:
A news/25.bugfix
M bootstrap.py
M plone/__init__.py
M plone/releaser/__init__.py
M plone/releaser/buildout.py
M plone/releaser/changelog.py
M plone/releaser/db.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
mister-roboto pushed a commit that referenced this pull request Aug 29, 2019
Branch: refs/heads/master
Date: 2019-08-17T00:26:23+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@f0d5021

Ran black.

Black sees a SyntaxError in changelog.py, so that one is not changed.

Files changed:
M bootstrap.py
M plone/__init__.py
M plone/releaser/__init__.py
M plone/releaser/buildout.py
M plone/releaser/db.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:28:27+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@10513b2

Fixed old-style exceptions in changelog.py

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:28:36+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@27f43e2

Ran black on changelog.py.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:37:50+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@34004c2

Call sources.items instead of iteritems.

iteritems does not exist in Python 3.

Files changed:
M plone/releaser/manage.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:38:08+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@7179ec3

Use a urlopen that works in Python 2 and 3.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T00:40:33+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@2b62ded

changelog DIST_URL: use https.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-17T01:02:18+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@8c90f40

Ran python-modernize.

https://docs.plone.org/manage/upgrading/version_specific_migration/upgrade_to_python3.html#automated-fixing-with-modernize

Some manual edits, because I got 'print((...))' and python 2 imports in a try/except ImportError were replaced with six.

Files changed:
M plone/releaser/buildout.py
M plone/releaser/changelog.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T22:50:26+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@1e047b7

Fixed bytes/unicode error in 'manage changelog'.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T22:54:21+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@72e6620

changelog: output string does not need to be encoded.

Otherwise you get an ugly one-liner with b'' on Python 3.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T23:13:02+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@c6142c3

changelog: ignore packages without version.

This happens for lines with an '=' like this:

[versionannotations:python27]
towncrier =
    18.6.0 does not work on Python 2, see twisted/towncrier#121

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-21T23:22:12+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@885cc54

Fixed TypeError in manage changelog.

Not all versions can be compared.
We might need to switch from distutils.LooseVersion to something from setuptools.

Files changed:
M plone/releaser/changelog.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-22T17:45:01+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@9182d3f

Fixed ugly bytes representation in commit report.

Files changed:
M plone/releaser/package.py
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-22T17:50:41+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.releaser@de4f829

Added news snippet for issue 25.

Files changed:
A news/25.bugfix
Repository: plone.releaser

Branch: refs/heads/master
Date: 2019-08-29T20:21:01+02:00
Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl>
Commit: plone/plone.releaser@fa57959

Merge pull request #26 from plone/maurits-issue-25-python3

[WIP] Fix Python 3 compatibility

Files changed:
A news/25.bugfix
M bootstrap.py
M plone/__init__.py
M plone/releaser/__init__.py
M plone/releaser/buildout.py
M plone/releaser/changelog.py
M plone/releaser/db.py
M plone/releaser/manage.py
M plone/releaser/package.py
M plone/releaser/pypi.py
M plone/releaser/release.py
M setup.py
mister-roboto pushed a commit that referenced this pull request Sep 28, 2020
Branch: refs/heads/master
Date: 2020-09-28T14:49:08+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/Products.CMFFormController@72b57cf

Tests: set request method to POST in a way that works on Plone 6 as well.

Files changed:
A news/3057.bugfix
M Products/CMFFormController/tests/testRedirectTo.py
Repository: Products.CMFFormController

Branch: refs/heads/master
Date: 2020-09-28T18:06:16+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.CMFFormController@a3b0b67

Merge pull request #26 from plone/maurits/folder_publish

Tests: set request method to POST in a way that works on Plone 6 too

Files changed:
A news/3057.bugfix
M Products/CMFFormController/tests/testRedirectTo.py
mister-roboto pushed a commit that referenced this pull request Jan 21, 2021
Branch: refs/heads/master
Date: 2021-01-20T18:32:58-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.app.workflow@ddbc47b

Have the icons from the sharing tab to have their URL relative to the site root. closes gh-25

Files changed:
A news/25.feature
M plone/app/workflow/browser/sharing.pt
Repository: plone.app.workflow

Branch: refs/heads/master
Date: 2021-01-21T13:09:21+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.workflow@80fde75

Merge pull request #26 from plone/frapell-sharing-view

Have the icons from the sharing tab to have their URL relative to the site root

Files changed:
A news/25.feature
M plone/app/workflow/browser/sharing.pt
mister-roboto pushed a commit that referenced this pull request Feb 3, 2021
Branch: refs/heads/master
Date: 2021-02-02T10:56:25+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@9dcc5c4

Show more useful dates in portlet: start | modified | created

Files changed:
A news/25.fix
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T13:41:16+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@7ec9386

add fallback to obj/Date

Files changed:
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T14:35:13+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@14952ef

use python expression

Files changed:
M news/25.fix
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T14:36:26+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@2e8b1cc

Merge branch 'datedisplayfix' of https://github.com/plone/plone.portlet.collection into datedisplayfix

# Conflicts:
#	plone/portlet/collection/collection.pt

Files changed:

Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-03T10:36:15+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.portlet.collection@7d71aa5

Merge pull request #26 from plone/datedisplayfix

Show more useful dates in portlet: start | modified | created

Files changed:
A news/25.fix
M plone/portlet/collection/collection.pt
mister-roboto pushed a commit that referenced this pull request Feb 3, 2021
Branch: refs/heads/master
Date: 2021-02-02T10:56:25+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@9dcc5c4

Show more useful dates in portlet: start | modified | created

Files changed:
A news/25.fix
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T13:41:16+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@7ec9386

add fallback to obj/Date

Files changed:
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T14:35:13+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@14952ef

use python expression

Files changed:
M news/25.fix
M plone/portlet/collection/collection.pt
Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-02T14:36:26+01:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.portlet.collection@2e8b1cc

Merge branch 'datedisplayfix' of https://github.com/plone/plone.portlet.collection into datedisplayfix

# Conflicts:
#	plone/portlet/collection/collection.pt

Files changed:

Repository: plone.portlet.collection

Branch: refs/heads/master
Date: 2021-02-03T10:36:15+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.portlet.collection@7d71aa5

Merge pull request #26 from plone/datedisplayfix

Show more useful dates in portlet: start | modified | created

Files changed:
A news/25.fix
M plone/portlet/collection/collection.pt
mister-roboto pushed a commit that referenced this pull request Jul 23, 2021
Branch: refs/heads/master
Date: 2021-07-21T11:30:12-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@fab00e4

Work in a FIPS enabled environment. closes gh-25

Files changed:
A news/25.feature
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-21T12:17:34-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@692b1d1

Typo

Files changed:
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-21T15:35:06-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@5fd47fc

Replace MD5 with SHA1

Files changed:
M news/25.feature
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-23T19:20:00+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.memoize@306af6c

Merge pull request #26 from enfold/master

Work in a FIPS enabled environment.

Files changed:
A news/25.feature
M plone/memoize/ram.py
mister-roboto pushed a commit that referenced this pull request Jul 23, 2021
Branch: refs/heads/master
Date: 2021-07-21T11:30:12-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@fab00e4

Work in a FIPS enabled environment. closes gh-25

Files changed:
A news/25.feature
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-21T12:17:34-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@692b1d1

Typo

Files changed:
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-21T15:35:06-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.memoize@5fd47fc

Replace MD5 with SHA1

Files changed:
M news/25.feature
M plone/memoize/ram.py
Repository: plone.memoize

Branch: refs/heads/master
Date: 2021-07-23T19:20:00+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.memoize@306af6c

Merge pull request #26 from enfold/master

Work in a FIPS enabled environment.

Files changed:
A news/25.feature
M plone/memoize/ram.py
mister-roboto pushed a commit that referenced this pull request Oct 7, 2021
Branch: refs/heads/master
Date: 2021-10-05T21:01:05+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/Products.contentmigration@d8632da

Prevent installation on Py 3, where Archetypes does not work.

See plone/Products.CMFPlone#3330

Files changed:
A news/3330.bugfix
M setup.cfg
M setup.py
Repository: Products.contentmigration

Branch: refs/heads/master
Date: 2021-10-07T12:26:32+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.contentmigration@6219103

Merge pull request #26 from plone/prevent-installation-on-py3

Prevent installation on Py 3, where Archetypes does not work.

Files changed:
A news/3330.bugfix
M setup.cfg
M setup.py
mister-roboto pushed a commit that referenced this pull request Oct 7, 2021
Branch: refs/heads/master
Date: 2021-10-05T21:01:05+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/Products.contentmigration@d8632da

Prevent installation on Py 3, where Archetypes does not work.

See plone/Products.CMFPlone#3330

Files changed:
A news/3330.bugfix
M setup.cfg
M setup.py
Repository: Products.contentmigration

Branch: refs/heads/master
Date: 2021-10-07T12:26:32+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.contentmigration@6219103

Merge pull request #26 from plone/prevent-installation-on-py3

Prevent installation on Py 3, where Archetypes does not work.

Files changed:
A news/3330.bugfix
M setup.cfg
M setup.py
mister-roboto pushed a commit that referenced this pull request Nov 18, 2021
Branch: refs/heads/main
Date: 2021-11-18T15:29:21+01:00
Author: Timo Stollenwerk (tisto) <tisto@users.noreply.github.com>
Commit: plone/plone.volto@1601963

Update German translations (#26)

Files changed:
M CHANGES.rst
M src/plone/volto/locales/de/LC_MESSAGES/plone.volto.po
M src/plone/volto/locales/en/LC_MESSAGES/plone.volto.po
M src/plone/volto/locales/it/LC_MESSAGES/plone.volto.po
M src/plone/volto/locales/plone.volto.pot
mister-roboto pushed a commit that referenced this pull request May 5, 2022
Branch: refs/heads/master
Date: 2022-05-05T12:26:38+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@4214908

dependencies

Files changed:
M setup.py
D bootstrap.py
D bootstrap.sh
D buildout.cfg
Repository: plone.cachepurging

Branch: refs/heads/master
Date: 2022-05-05T12:27:05+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@8e3803a

improve isort rules

Files changed:
M setup.cfg
M setup.py
Repository: plone.cachepurging

Branch: refs/heads/master
Date: 2022-05-05T12:27:16+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@0be1c60

black

Files changed:
M plone/cachepurging/browser.py
M plone/cachepurging/hooks.py
M plone/cachepurging/interfaces.py
M plone/cachepurging/paths.py
M plone/cachepurging/purger.py
M plone/cachepurging/rewrite.py
M plone/cachepurging/tests/test_hooks.py
M plone/cachepurging/tests/test_purger.py
M plone/cachepurging/tests/test_rewrite.py
M plone/cachepurging/tests/test_utils.py
M plone/cachepurging/tests/test_views.py
M plone/cachepurging/utils.py
M setup.py
Repository: plone.cachepurging

Branch: refs/heads/master
Date: 2022-05-05T12:27:42+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@e025513

find  -name "*.py" -exec pyupgrade  --py3-only --py37-plus {} +

Files changed:
M plone/__init__.py
M plone/cachepurging/browser.py
M plone/cachepurging/hooks.py
M plone/cachepurging/interfaces.py
M plone/cachepurging/paths.py
M plone/cachepurging/purger.py
M plone/cachepurging/rewrite.py
M plone/cachepurging/tests/test_hooks.py
M plone/cachepurging/tests/test_purger.py
M plone/cachepurging/tests/test_rewrite.py
M plone/cachepurging/tests/test_traversable_paths.py
M plone/cachepurging/tests/test_utils.py
M plone/cachepurging/tests/test_views.py
M plone/cachepurging/utils.py
Repository: plone.cachepurging

Branch: refs/heads/master
Date: 2022-05-05T12:36:33+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@4a5e656

add newsfile

Files changed:
A news/26.breaking
Repository: plone.cachepurging

Branch: refs/heads/master
Date: 2022-05-05T14:49:38+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.cachepurging@7ec00fb

Merge pull request #26 from plone/overhaul

Overhaul: py3/black/...

Files changed:
A news/26.breaking
M plone/__init__.py
M plone/cachepurging/browser.py
M plone/cachepurging/hooks.py
M plone/cachepurging/interfaces.py
M plone/cachepurging/paths.py
M plone/cachepurging/purger.py
M plone/cachepurging/rewrite.py
M plone/cachepurging/tests/test_hooks.py
M plone/cachepurging/tests/test_purger.py
M plone/cachepurging/tests/test_rewrite.py
M plone/cachepurging/tests/test_traversable_paths.py
M plone/cachepurging/tests/test_utils.py
M plone/cachepurging/tests/test_views.py
M plone/cachepurging/utils.py
M setup.cfg
M setup.py
D bootstrap.py
D bootstrap.sh
D buildout.cfg
mister-roboto pushed a commit that referenced this pull request Aug 24, 2022
Branch: refs/heads/master
Date: 2022-03-30T19:18:35+03:00
Author: David Batranu (david-batranu) <david.batranu@eaudeweb.ro>
Commit: plone/plone.session@d6c7d5a

[refs #22] Per-user keyrings, session invalidation

Generate a Keyring for each user id, this makes it possible to
invalidate the keyring on logout, meaning other user sessions using
the same authentication token will become invalid.

This protects against session stealing (copying the __ac cookie) and
creates a working server-side log-out.

Files changed:
M plone/session/plugins/session.py
Repository: plone.session

Branch: refs/heads/master
Date: 2022-04-01T12:05:48+03:00
Author: David Batranu (david-batranu) <david.batranu@eaudeweb.ro>
Commit: plone/plone.session@f453ce9

[refs #22] Adding news, tests, optionally enable.

Files changed:
A news/26.feature.txt
M plone/session/plugins/secret.pt
M plone/session/plugins/session.py
M plone/session/tests/testPAS.py
Repository: plone.session

Branch: refs/heads/master
Date: 2022-05-02T12:12:50+03:00
Author: David Batranu (david-batranu) <david.batranu@eaudeweb.ro>
Commit: plone/plone.session@4114ee0

[refs #22] Trying to remove IDisableCSRFProtection

Tests now pass without IDisableCSRFProtection, unknown why.

Files changed:
M plone/session/plugins/session.py
Repository: plone.session

Branch: refs/heads/master
Date: 2022-08-24T15:37:03+02:00
Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl>
Commit: plone/plone.session@e10c43a

Merge pull request #26 from david-batranu/22_per_user_secret

[fixes #22] Per-user keyrings, session invalidation

Files changed:
A news/26.feature.txt
M plone/session/plugins/secret.pt
M plone/session/plugins/session.py
M plone/session/tests/testPAS.py
mister-roboto pushed a commit that referenced this pull request Sep 1, 2022
Branch: refs/heads/master
Date: 2022-09-01T11:31:35+02:00
Author: Stefan Antonelli (santonelli) <stefan.antonelli@operun.de>
Commit: plone/plone.app.viewletmanager@5879cae

update markup to use bs cards

Files changed:
M plone/app/viewletmanager/manage-viewletmanager.pt
M plone/app/viewletmanager/manage-viewlets.pt
Repository: plone.app.viewletmanager

Branch: refs/heads/master
Date: 2022-09-01T11:37:52+02:00
Author: Stefan Antonelli (santonelli) <stefan.antonelli@operun.de>
Commit: plone/plone.app.viewletmanager@444abd0

add changelog

Files changed:
A news/26.bugfix
Repository: plone.app.viewletmanager

Branch: refs/heads/master
Date: 2022-09-01T21:26:57+03:00
Author: Maik Derstappen (MrTango) <md@derico.de>
Commit: plone/plone.app.viewletmanager@55de757

Merge pull request #26 from plone/santonelli-update-markup

Update markup to use Bootstrap Cards

Files changed:
A news/26.bugfix
M plone/app/viewletmanager/manage-viewletmanager.pt
M plone/app/viewletmanager/manage-viewlets.pt
mister-roboto pushed a commit that referenced this pull request Sep 1, 2022
Branch: refs/heads/master
Date: 2022-09-01T11:31:35+02:00
Author: Stefan Antonelli (santonelli) <stefan.antonelli@operun.de>
Commit: plone/plone.app.viewletmanager@5879cae

update markup to use bs cards

Files changed:
M plone/app/viewletmanager/manage-viewletmanager.pt
M plone/app/viewletmanager/manage-viewlets.pt
Repository: plone.app.viewletmanager

Branch: refs/heads/master
Date: 2022-09-01T11:37:52+02:00
Author: Stefan Antonelli (santonelli) <stefan.antonelli@operun.de>
Commit: plone/plone.app.viewletmanager@444abd0

add changelog

Files changed:
A news/26.bugfix
Repository: plone.app.viewletmanager

Branch: refs/heads/master
Date: 2022-09-01T21:26:57+03:00
Author: Maik Derstappen (MrTango) <md@derico.de>
Commit: plone/plone.app.viewletmanager@55de757

Merge pull request #26 from plone/santonelli-update-markup

Update markup to use Bootstrap Cards

Files changed:
A news/26.bugfix
M plone/app/viewletmanager/manage-viewletmanager.pt
M plone/app/viewletmanager/manage-viewlets.pt
mister-roboto pushed a commit that referenced this pull request Dec 2, 2022
Branch: refs/heads/master
Date: 2022-12-01T15:54:03+03:00
Author: Érico Andrei (ericof) <ericof@gmail.com>
Commit: plone/Plone@a41d33a

Update Plone package metadata in pypi.org

Files changed:
M README.rst
M setup.cfg
Repository: Plone

Branch: refs/heads/master
Date: 2022-12-01T15:57:19+03:00
Author: Érico Andrei (ericof) <ericof@gmail.com>
Commit: plone/Plone@c6383cb

Update Changelog

Files changed:
M CHANGES.rst
Repository: Plone

Branch: refs/heads/master
Date: 2022-12-01T16:58:38+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/Plone@5b49d26

Add python_requires 3.8 minimum

Files changed:
M setup.cfg
Repository: Plone

Branch: refs/heads/master
Date: 2022-12-02T11:02:56+03:00
Author: Érico Andrei (ericof) <ericof@gmail.com>
Commit: plone/Plone@774d688

Merge pull request #26 from plone/pypi-metadata

Update Plone package metadata in pypi.org

Files changed:
M CHANGES.rst
M README.rst
M setup.cfg
mister-roboto pushed a commit that referenced this pull request Dec 23, 2022
Branch: refs/heads/main
Date: 2022-12-23T12:16:32-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.base@6693557

Add `required=False` to missing boolean field from syndication config. refs gh-14

Files changed:
A news/14.bugfix
M src/plone/base/interfaces/syndication.py
Repository: plone.base

Branch: refs/heads/main
Date: 2022-12-23T16:49:27-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.base@ab78e0a

Merge pull request #26 from plone/frapell-required-boolean

Add `required=False` to missing boolean field from syndication config

Files changed:
A news/14.bugfix
M src/plone/base/interfaces/syndication.py
mister-roboto pushed a commit that referenced this pull request Jan 16, 2023
Branch: refs/heads/master
Date: 2023-01-08T00:55:26+01:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.subrequest@1a08f30

Configuring for default

Files changed:
A .editorconfig
A .github/workflows/linting.yml
A .meta.toml
A lint-requirements.txt
A tox.ini
M pyproject.toml
M setup.cfg
Repository: plone.subrequest

Branch: refs/heads/master
Date: 2023-01-08T00:56:04+01:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.subrequest@1a21a56

chore: run tox -e format

Files changed:
M plone/subrequest/__init__.py
Repository: plone.subrequest

Branch: refs/heads/master
Date: 2023-01-08T00:56:56+01:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.subrequest@89db573

Add news entry

Files changed:
A news/1.bugfix
Repository: plone.subrequest

Branch: refs/heads/master
Date: 2023-01-16T12:49:03+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.subrequest@d5f888e

Merge pull request #26 from plone/config-with-default-template-cc762832

Config with default template

Files changed:
A .editorconfig
A .github/workflows/linting.yml
A .meta.toml
A lint-requirements.txt
A news/1.bugfix
A tox.ini
M plone/subrequest/__init__.py
M pyproject.toml
M setup.cfg
mister-roboto pushed a commit that referenced this pull request Apr 24, 2023
Branch: refs/heads/master
Date: 2023-04-23T18:58:22+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@f365e9d

Configuring with plone/meta

Files changed:
A .editorconfig
A .meta.toml
A .pre-commit-config.yaml
A news/a864b30f.internal
A tox.ini
M pyproject.toml
M setup.cfg
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:03:36+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@3fe894e

chore: pyupgrade

Files changed:
M plone/__init__.py
M plone/registry/__init__.py
M plone/registry/events.py
M plone/registry/field.py
M plone/registry/fieldfactory.py
M plone/registry/fieldref.py
M plone/registry/interfaces.py
M plone/registry/record.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
M plone/registry/tests.py
M setup.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:03:36+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@cc00b45

chore: remove unneeded aliases

Files changed:
M plone/registry/field.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:04:02+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@9975b61

chore: isort

Files changed:
M plone/registry/field.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
M plone/registry/tests.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:06:59+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@986096c

chore: black

Files changed:
M plone/__init__.py
M plone/registry/events.py
M plone/registry/field.py
M plone/registry/fieldfactory.py
M plone/registry/fieldref.py
M plone/registry/interfaces.py
M plone/registry/record.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
M plone/registry/tests.py
M setup.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:07:28+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@b245e66

chore: zpretty

Files changed:
M plone/registry/configure.zcml
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:11:13+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@0ebd402

chore: update trove classifiers

Files changed:
M setup.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:11:29+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@9d6ec1e

feat: pyroma

Files changed:
M setup.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:13:29+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@fee0899

feat: codespell

Files changed:
M plone/registry/events.py
M plone/registry/registry.py
M plone/registry/tests.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:17:08+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@a76152d

chore: configure flake8

Files changed:
M setup.cfg
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:17:41+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@c1523c7

feat: flake8

Files changed:
M plone/registry/field.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:22:19+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@ff042a3

fix: remove fallback import

Files changed:
M plone/registry/recordsproxy.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:23:00+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@5a6f054

feat: configure z3c.dependencychecker

Files changed:
M pyproject.toml
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:30:29+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@3909619

fix: drop more python 2 compatibility

Files changed:
M plone/registry/registry.rst
M plone/registry/tests.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-23T19:31:07+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.registry@bc1035a

Add news entry

Files changed:
A news/1.breaking
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-24T12:52:49+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.registry@08fcc86

bump version

Files changed:
M setup.py
Repository: plone.registry

Branch: refs/heads/master
Date: 2023-04-24T19:08:11+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.registry@03e9a40

Merge pull request #26 from plone/config-with-default-template-59299cef

Config with default template

Files changed:
A .editorconfig
A .meta.toml
A .pre-commit-config.yaml
A news/1.breaking
A news/a864b30f.internal
A tox.ini
M plone/__init__.py
M plone/registry/__init__.py
M plone/registry/configure.zcml
M plone/registry/events.py
M plone/registry/field.py
M plone/registry/fieldfactory.py
M plone/registry/fieldref.py
M plone/registry/interfaces.py
M plone/registry/record.py
M plone/registry/recordsproxy.py
M plone/registry/registry.py
M plone/registry/registry.rst
M plone/registry/tests.py
M pyproject.toml
M setup.cfg
M setup.py
mister-roboto pushed a commit that referenced this pull request Oct 5, 2023
Branch: refs/heads/master
Date: 2023-06-24T15:57:26+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.z3cform@99f72ef

Configuring with plone/meta

Files changed:
A .editorconfig
A .flake8
A .github/workflows/meta.yml
A .meta.toml
A .pre-commit-config.yaml
A news/cfffba8c.internal
M .gitignore
M pyproject.toml
M tox.ini
Repository: plone.z3cform

Branch: refs/heads/master
Date: 2023-06-24T15:57:26+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.z3cform@2352dfc

cleanup: remove unused sections

Files changed:
M setup.cfg
Repository: plone.z3cform

Branch: refs/heads/master
Date: 2023-10-05T11:06:02+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.z3cform@3819307

Merge pull request #26 from plone/config-with-default-template-9fb3a20a

Config with default template

[skip ci]

Files changed:
A .editorconfig
A .flake8
A .github/workflows/meta.yml
A .meta.toml
A .pre-commit-config.yaml
A news/cfffba8c.internal
M .gitignore
M pyproject.toml
M setup.cfg
M tox.ini
mister-roboto pushed a commit that referenced this pull request Oct 5, 2023
Branch: refs/heads/master
Date: 2023-06-24T15:57:26+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.z3cform@99f72ef

Configuring with plone/meta

Files changed:
A .editorconfig
A .flake8
A .github/workflows/meta.yml
A .meta.toml
A .pre-commit-config.yaml
A news/cfffba8c.internal
M .gitignore
M pyproject.toml
M tox.ini
Repository: plone.z3cform

Branch: refs/heads/master
Date: 2023-06-24T15:57:26+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.z3cform@2352dfc

cleanup: remove unused sections

Files changed:
M setup.cfg
Repository: plone.z3cform

Branch: refs/heads/master
Date: 2023-10-05T11:06:02+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.z3cform@3819307

Merge pull request #26 from plone/config-with-default-template-9fb3a20a

Config with default template

[skip ci]

Files changed:
A .editorconfig
A .flake8
A .github/workflows/meta.yml
A .meta.toml
A .pre-commit-config.yaml
A news/cfffba8c.internal
M .gitignore
M pyproject.toml
M setup.cfg
M tox.ini
mister-roboto pushed a commit that referenced this pull request Jan 21, 2024
Branch: refs/heads/master
Date: 2024-01-20T00:57:29+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@43610dd

Fix partial ordering tests.

Files changed:
A news/23.bugfix
M src/plone/folder/tests/test_partialordering.py
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-20T00:59:34+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@fb173ad

pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-20T01:12:34+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@bc6bdaf

Use isinstance and issubclass in partial ordering tests.

Files changed:
M src/plone/folder/tests/test_partialordering.py
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-21T10:39:15+01:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.folder@0d372fb

Merge pull request #26 from plone/maurits-fix-partial-ordering-tests

Fix partial ordering tests

Files changed:
A news/23.bugfix
M .pre-commit-config.yaml
M src/plone/folder/tests/test_partialordering.py
mister-roboto pushed a commit that referenced this pull request Jan 21, 2024
Branch: refs/heads/master
Date: 2024-01-20T00:57:29+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@43610dd

Fix partial ordering tests.

Files changed:
A news/23.bugfix
M src/plone/folder/tests/test_partialordering.py
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-20T00:59:34+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@fb173ad

pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-20T01:12:34+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.folder@bc6bdaf

Use isinstance and issubclass in partial ordering tests.

Files changed:
M src/plone/folder/tests/test_partialordering.py
Repository: plone.folder

Branch: refs/heads/master
Date: 2024-01-21T10:39:15+01:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.folder@0d372fb

Merge pull request #26 from plone/maurits-fix-partial-ordering-tests

Fix partial ordering tests

Files changed:
A news/23.bugfix
M .pre-commit-config.yaml
M src/plone/folder/tests/test_partialordering.py
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T20:01:29Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/plone.transformchain@d396cda

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: plone.transformchain

Branch: refs/heads/master
Date: 2024-06-04T03:21:37-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.transformchain@b726beb

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T20:01:29Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/plone.transformchain@d396cda

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: plone.transformchain

Branch: refs/heads/master
Date: 2024-06-04T03:21:37-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.transformchain@b726beb

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T20:00:33Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/plone.browserlayer@e941b27

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: plone.browserlayer

Branch: refs/heads/master
Date: 2024-06-04T03:28:16-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.browserlayer@57c9a83

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T20:00:33Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/plone.browserlayer@e941b27

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: plone.browserlayer

Branch: refs/heads/master
Date: 2024-06-04T03:28:16-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.browserlayer@57c9a83

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T19:59:13Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/Products.isurlinportal@4c23de8

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: Products.isurlinportal

Branch: refs/heads/master
Date: 2024-06-04T03:31:54-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.isurlinportal@26b4143

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
mister-roboto pushed a commit that referenced this pull request Jun 4, 2024
Branch: refs/heads/master
Date: 2024-06-03T19:59:13Z
Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Commit: plone/Products.isurlinportal@4c23de8

[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

Files changed:
M .pre-commit-config.yaml
Repository: Products.isurlinportal

Branch: refs/heads/master
Date: 2024-06-04T03:31:54-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.isurlinportal@26b4143

Merge pull request #26 from plone/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

Files changed:
M .pre-commit-config.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet