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 paperless to version v2.14.5 #2099

Merged
merged 1 commit into from
Jan 22, 2025
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 paperless/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 paperless/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "broker"

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.

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

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "db"

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.

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

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "webserver"

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.

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

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "gotenberg"

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.

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

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "tika"

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 @@ -15,7 +15,7 @@

db:
image: docker.io/library/postgres:16@sha256:46aa2ee5d664b275f05d1a963b30fff60fb422b4b594d509765c42db46d48881
restart: unless-stopped

Check warning on line 18 in paperless/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Invalid restart policy

The restart policy of the container "db" should be set to "on-failure".
volumes:
- ${APP_DATA_DIR}/data/pgdata:/var/lib/postgresql/data
environment:
Expand All @@ -24,7 +24,7 @@
POSTGRES_PASSWORD: paperless

webserver:
image: ghcr.io/paperless-ngx/paperless-ngx:2.14.4@sha256:e806e507bce660602ce3e477d8a895c4f303b8564b51530e94ffe9fc7e946f51
image: ghcr.io/paperless-ngx/paperless-ngx:2.14.5@sha256:0dd05692644ab4e052aa9f0e3029436ca77b0385453ec7a6c8f8785ae2179c02
restart: on-failure
depends_on:
- db
Expand Down
12 changes: 6 additions & 6 deletions paperless/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1
id: paperless
category: files
name: Paperless-ngx
version: "2.14.4"
version: "2.14.5"
tagline: Transform your physical documents into a searchable online archive
description: >-
Paperless-ngx is a community-supported open-source document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.
Expand All @@ -24,11 +24,11 @@ description: >-
- Paperless stores your documents plain on disk. Filenames and folders are managed by paperless and their format can be configured freely with different configurations assigned to different documents.
releaseNotes: >-
This update includes several improvements and fixes:
- Enhanced webhook functionality with JSON encoding options
- Improved email attachment handling
- Better management of document lists and pagination
- Various UI and functionality improvements
- ⚠️ Basic API authentication is now disabled when two-factor authentication is enabled
- Improved user management and permissions
- Enhanced email attachment handling
- Fixed visual issues with long tags
- Various UI improvements and bug fixes
- ⚠️ Only superusers can now create or modify superuser accounts


Full release notes are found at https://github.com/paperless-ngx/paperless-ngx/releases
Expand Down
Loading