v2.6.1
-
Fix: update Spring Boot to 2.5.12 in order to mitigate CVE-2022-22965 See the GitHub issue for the latest updates on how this issue affects ShinyProxy.
-
Note: when using Redis for session persistence (e.g. when using the ShinyProxy Operator), you have to change the Redis configuration to use a different database (or a different namespace). By default, database
0is used, you must change this to use database1(or any other free database). Use thespring.redis.databaseproperty for this (see example). This change will require the users to re-login. This change is required because the data format of the session information has changed in Spring.A typical Redis session configuration should be changed from:
spring: session: store-type: redis redis: host: redis password: ${REDIS_PASSWORD}
to:
spring: session: store-type: redis redis: host: redis password: ${REDIS_PASSWORD} database: 1