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

Update octoprint to version 1.10.2 #1272

Merged
merged 2 commits into from
Jul 31, 2024
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
2 changes: 1 addition & 1 deletion octoprint/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.7"

Check notice on line 1 in octoprint/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "web"

The default container user "root" can lead to security vulnerabilities. If you are using the root user, please try to specify a different user (e.g. "1000:1000") in the compose file or try to set the UID/PUID and GID/PGID environment variables to 1000.

services:
app_proxy:
Expand All @@ -8,8 +8,8 @@
PROXY_AUTH_ADD: "false"

web:
image: octoprint/octoprint:1.9.3@sha256:32e81a9d8c73511855ad5b9d7212ef61e0ba7608c47ce215ec2c6402c52423ee
image: octoprint/octoprint:1.10.2@sha256:dcc74b1a6074972ba2fce80e1abc80e98e2603adcab771918d89abaed2e4c277
privileged: true
volumes:

Check notice on line 13 in octoprint/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Mounted file/directory "/octoprint/data" doesn't exist

The volume "${APP_DATA_DIR}/data:/octoprint" tries to mount the file/directory "/octoprint/data", but it is not present. This can lead to permission errors!
- ${APP_DATA_DIR}/data:/octoprint
- /dev:/dev
Expand Down
15 changes: 7 additions & 8 deletions octoprint/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1
id: octoprint
category: files
name: OctoPrint
version: "1.9.3"
version: "1.10.2"
tagline: A snappy web interface for your 3D printer
description: >-
OctoPrint provides a snappy web interface for controlling consumer 3D printers.
Expand All @@ -17,19 +17,18 @@ support: https://community.octoprint.org/
port: 5003
submitter: mateosilguero
releaseNotes: >-
This update brings Octoprint from 1.9.2 to 1.9.3
✋ Heads-up


🔒 Security fixes

- Fixed possiblity for a malicious admin to configure a specially crafted GCODE script through the Settings that would allow code execution during rendering of that script
As of Octoprint 1.10.0, you are required to re-enter your password on critical operations (e.g. adding/changing/deleting users and groups, installing plugins, revealing the deprecated global API key, etc).


🐛 Bug fixes

- Fix for not being able to extrude/retract from the control panel in the UI after editing the extrusion speed in the printer profile.
- Fixed a translation string in the German translation.
- Fixed a third-party dependency change that broke a development command.
- Improved the behavior of the "Hide successful prints" filter in the file list.

- Pin pydantic dependency to 1.10.12. This works around an issue existing in some environments with pydantic version 1.10.13, which was released on September 26 2023. Said issue causes OctoPrint to no longer be able to start.
Full release notes are found at https://github.com/OctoPrint/OctoPrint/releases
submission: https://github.com/getumbrel/umbrel-apps/pull/449
gallery:
- 1.jpg
Expand Down