chore(deps): update penpotapp/backend docker tag to v2.14.1#46
Open
renovate[bot] wants to merge 1 commit intodevelopfrom
Open
chore(deps): update penpotapp/backend docker tag to v2.14.1#46renovate[bot] wants to merge 1 commit intodevelopfrom
renovate[bot] wants to merge 1 commit intodevelopfrom
Conversation
5110cef to
58c5be3
Compare
58c5be3 to
63924d3
Compare
63924d3 to
8cc085e
Compare
8cc085e to
8c3b46f
Compare
8c3b46f to
1c8f635
Compare
1c8f635 to
26345dd
Compare
26345dd to
464b077
Compare
464b077 to
e1835f9
Compare
e1835f9 to
5d24d5e
Compare
5d24d5e to
50ed922
Compare
d7a532b to
790a6c7
Compare
a9634b8 to
f6e486d
Compare
f6e486d to
4e73737
Compare
4e73737 to
8dc7f02
Compare
8dc7f02 to
7bf0a00
Compare
7bf0a00 to
f2cdbf2
Compare
f2cdbf2 to
4375738
Compare
4375738 to
cbdd995
Compare
cbdd995 to
129e4db
Compare
129e4db to
97172d6
Compare
97172d6 to
150bf3d
Compare
150bf3d to
9c184c3
Compare
9c184c3 to
7fb72f3
Compare
7fb72f3 to
4046fed
Compare
4046fed to
e72acfb
Compare
e72acfb to
b8534fb
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.0.1→2.14.1Release Notes
penpot/penpot (penpotapp/backend)
v2.14.1Compare Source
✨ New features & Enhancements
🐛 Bugs fixed
v2.14.0Compare Source
💥 Breaking changes & Deprecations
PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZEin favour ofPENPOT_HTTP_SERVER_MAX_BODY_SIZE.✨ New features & Enhancements
🐛 Bugs fixed
penpot.openPage()plugin API not navigating in the same tab; change default to same-tab navigation and allow passing a UUID string instead of a Page object Github #8520v2.13.3Compare Source
🐛 Bugs fixed
v2.13.2Compare Source
🐛 Bugs fixed
v2.13.0Compare Source
❤️ Community contributions (Thank you!)
Add 'page' special shapeId to MCP export_shape tool for full-page snapshots Github #8689
Fix mask issues with component swap (by @dfelinto) Github #7675
✨ New features & Enhancements
🐛 Bugs fixed
v2.12.1Compare Source
🐛 Bugs fixed
v2.12.0Compare Source
💥 Breaking changes & Deprecations
Backend RPC API changes
The backend RPC API URLS are changed from
/api/rpc/command/<name>to/api/main/methods/<name>. The previous PATH is preserved for backwardcompatibility; however, if you are a user of this API, it is strongly
recommended that you adapt your code to use the new PATH.
Updated SSO Callback URL
The OAuth / Single Sign-On (SSO) callback endpoint has changed to
align with the new OpenID Connect (OIDC) implementation.
Old callback URL:
New callback URL:
Action required:
If you have SSO/Social-Auth configured on your on-premise instance,
the following actions are required before update:
Update your OAuth or SSO provider configuration (e.g., Okta, Google,
Azure AD, etc.) to use the new callback URL. Failure to update may
result in authentication failures after upgrading.
Reason for change:
This update standardizes all authentication flows under the single URL
and makis it more modular, enabling the ability to configure SSO auth
provider dinamically.
Changes on default docker compose
We have updated the
docker/images/docker-compose.yamlwith a smallchange related to the
PENPOT_SECRET_KEY. Since this version, thisenvironment variable is also required on exporter. So if you are using
penpot on-premise you will need to apply the same changes on your own
docker-compose.yamlfile.We have removed the Minio server from the
docker/images/docker-compose.ymlexample. It's still usable as before, we just removed the example.
🚀 Epics and highlights
❤️ Community contributions (Thank you!)
✨ New features & Enhancements
🐛 Bugs fixed
v2.11.1Compare Source
v2.11.0Compare Source
💥 Breaking changes & Deprecations
Deprecated configuration variables with the prefix
PENPOT_ASSETS_*, and will beremoved in future versions:
PENPOT_ASSETS_STORAGE_BACKENDbecomesPENPOT_OBJECTS_STORAGE_BACKENDand itsvalues passes from (
assets-fsorassets-s3) to (fsors3)PENPOT_STORAGE_ASSETS_FS_DIRECTORYbecomesPENPOT_OBJECTS_STORAGE_FS_DIRECTORYPENPOT_STORAGE_ASSETS_S3_BUCKETbecomesPENPOT_OBJECTS_STORAGE_S3_BUCKETPENPOT_STORAGE_ASSETS_S3_REGIONbecomesPENPOT_OBJECTS_STORAGE_S3_REGIONPENPOT_STORAGE_ASSETS_S3_ENDPOINTbecomesPENPOT_OBJECTS_STORAGE_S3_ENDPOINTPENPOT_STORAGE_ASSETS_S3_IO_THREADSreplaced (see below)Add
PENPOT_NETTY_IO_THREADSandPENPOT_EXECUTOR_THREADSvariables to provide thecontrol over concurrency of the shared resources used by netty. Penpot uses the netty IO
threads for AWS S3 SDK and Redis/Valkey communication, and the EXEC threads to perform
out of HTTP serving threads tasks such that cache invalidation, S3 response completion,
configuration reloading and many other auxiliar tasks. By default they use a half number
if available cpus with a minumum of 2 for both executors. You should not touch that
variables unless you are know what you are doing.
Replace the
PENPOT_STORAGE_ASSETS_S3_IO_THREADSwith a more general configurationPENPOT_NETTY_IO_THREADSused to configure a shared netty resources across differentservices which use netty internally (redis connection, S3 SDK client). This
configuration is not very commonly used so don't expected real impact on any user.
✨ New features & Enhancements
🐛 Bugs fixed
v2.10.1Compare Source
✨ New features & Enhancements
🐛 Bugs fixed
v2.10.0Compare Source
🚀 Epics and highlights
💥 Breaking changes & Deprecations
❤️ Community contributions (Thank you!)
✨ New features & Enhancements
🐛 Bugs fixed
penpot_exporterDocker image GitHub #7205v2.9.0Compare Source
🚀 Epics and highlights
💥 Breaking changes & Deprecations
❤️ Community contributions (Thank you!)
✨ New features & Enhancements
mix-blend-modeproperty in code editor when present on shape Taiga #11282🐛 Bugs fixed
v2.8.1Compare Source
🐛 Bugs fixed
v2.8.0Compare Source
🚀 Epics and highlights
💥 Breaking changes & Deprecations
Penpot Library
The initial prototype is completly reworked to provide a more consistent API
and to have proper validation and params decoding. All the details can be found
on its own changelog
Penpot migrate from Redis to Valkey
As Valkey is an opne-souce fork of Redis
version 7.2.4, this version of Penpot will be compatible with Redis but may diverge
in future versions. Therefore, migration from Redis to ValKey is recommended for all
on-premises instances that want to keep up to date.
❤️ Community contributions (Thank you!)
✨ New features & Enhancements
input*wrapper component, andlabel*,input-field*andhint-message*components Taiga #10713🐛 Bugs fixed
v2.7.2Compare Source
🐛 Bugs fixed
generated by penpot library Github #6614
v2.7.1Compare Source
🐛 Bugs fixed
v2.7.0Compare Source
🚀 Epics and highlights
💥 Breaking changes & Deprecations
❤️ Community contributions (Thank you!)
✨ New features
🐛 Bugs fixed
stroke-linecapproperty when importing SVGs Taiga #9489v2.6.2Compare Source
🐛 Bugs fixed
v2.6.1Compare Source
🐛 Bugs fixed
v2.6.0Compare Source
🚀 Epics and highlights
💥 Breaking changes & Deprecations
❤️ Community contributions (Thank you!)
✨ New features
🐛 Bugs fixed
v2.5.4Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.