Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
pull_request:
branches:
- main

concurrency:
group: requirements-${{ github.head_ref }}
cancel-in-progress: false

jobs:
build:
name: requirements.txt
Expand Down Expand Up @@ -44,6 +49,6 @@ jobs:
git config --global user.name "RedTurtle CI BOT"
git add dependabot/requirements.txt sbom.spdx.json
git commit -m "Auto-generate file at $(date)" || exit 0
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:${{ github.ref_name }}
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:refs/heads/${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
tags:
- '*'

concurrency:
group: tag-update-${{ github.ref }}
cancel-in-progress: false

jobs:
update_file:
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Changelog

## XXX
## 20260407-01
- collective.volto.formsupport 3.3.0 -> 3.3.2
- Fix csv export: always insert fixed_columns as latest ones. [cekk]
- design.plone.policy 5.0.19 -> 5.0.20
- Convert formsupport patches into overrides [cekk]
- design.plone.contenttypes 6.3.14 -> 6.3.15
- design.plone.contenttypes 6.3.14 -> 6.3.16
- Avoid showing items inside cartella modulistica if omitted from navigation. [daniele]
- Add linkintegrity support for canale_digitale_link field in Servizio CT. [cekk]
- Modulo: mime_type is now indexed as the mime type of file_principale (the main attached file). The to_7321 upgrade step re-aligns the catalog index and refreshes stale portal_enhancedlinks cache entries for existing Modulo objects. [TheSaintSimon]
- Products.isurlinportal = 2.1.0 - security fix [mamico]
- design.plone.iosegnalo = 1.0.5 [lucabel]

Expand Down
2 changes: 1 addition & 1 deletion versions.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ collective.volto.slimheader = 2.0.0
collective.volto.subfooter = 2.0.0
collective.volto.subsites = 1.5.1
collective.z3cform.datagridfield = 3.0.1
design.plone.contenttypes = 6.3.15
design.plone.contenttypes = 6.3.16
design.plone.policy = 5.0.20
design.plone.externallogin = 1.0.6
et-xmlfile = 1.1.0
Expand Down
Loading