Compare commits

...

3 Commits

Author SHA1 Message Date
Maksim Eltyshev
0436bd2e7b chore: Update chart version 2025-09-04 15:44:12 +02:00
Maksim Eltyshev
cec09b2db2 chore: Update version 2025-09-04 13:53:03 +02:00
Maksim Eltyshev
94410ee994 fix: Patch react-photoswipe-gallery to prevent XSS in captions 2025-09-04 13:50:54 +02:00
7 changed files with 21 additions and 8 deletions

View File

@@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.2 version: 1.0.4
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "2.0.0-rc.3" appVersion: "2.0.0-rc.4"
dependencies: dependencies:
- alias: postgresql - alias: postgresql

View File

@@ -0,0 +1,13 @@
diff --git a/node_modules/react-photoswipe-gallery/dist/gallery.js b/node_modules/react-photoswipe-gallery/dist/gallery.js
index 53cc02c..f4baccb 100644
--- a/node_modules/react-photoswipe-gallery/dist/gallery.js
+++ b/node_modules/react-photoswipe-gallery/dist/gallery.js
@@ -181,7 +181,7 @@ export const Gallery = ({
alt
} = pswpInstance.currSlide.data;
// eslint-disable-next-line no-param-reassign
- el.innerHTML = caption || alt || '';
+ el.textContent = caption || alt || '';
});
}
});

View File

@@ -1 +1 @@
export default '2.0.0-rc.3'; export default '2.0.0-rc.4';

View File

@@ -1,6 +1,6 @@
services: services:
planka: planka:
image: ghcr.io/plankanban/planka:2.0.0-rc.3 image: ghcr.io/plankanban/planka:2.0.0-rc.4
restart: on-failure restart: on-failure
volumes: volumes:
- favicons:/app/public/favicons - favicons:/app/public/favicons

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "planka", "name": "planka",
"version": "2.0.0-rc.3", "version": "2.0.0-rc.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "planka", "name": "planka",
"version": "2.0.0-rc.3", "version": "2.0.0-rc.4",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"concurrently": "^8.2.2", "concurrently": "^8.2.2",

View File

@@ -1,6 +1,6 @@
{ {
"name": "planka", "name": "planka",
"version": "2.0.0-rc.3", "version": "2.0.0-rc.4",
"private": true, "private": true,
"scripts": { "scripts": {
"client:build": "npm run build --prefix client", "client:build": "npm run build --prefix client",

View File

@@ -1 +1 @@
module.exports = '2.0.0-rc.3'; module.exports = '2.0.0-rc.4';