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 gitea to version v1.22.6 #1932

Merged
merged 1 commit into from
Dec 17, 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 gitea/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
PROXY_AUTH_ADD: "false"

server:
image: gitea/gitea:1.22.4-rootless@sha256:e764bb13126fd1fc0c71843f9377ecf6d2784007daea43782150549b110e086f
image: gitea/gitea:1.22.6-rootless@sha256:4216d612992a25ed5fe6062679ca0be0b224f93c0b6fdba03e6c8f3d623cfb4e
user: "1000:1000"
restart: on-failure
ports:

Check notice on line 14 in gitea/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "${APP_GITEA_SSH_PORT}:${APP_GITEA_SSH_PORT}"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).
- "${APP_GITEA_SSH_PORT}:${APP_GITEA_SSH_PORT}"
volumes:
- ${APP_DATA_DIR}/data/gitea/data:/var/lib/gitea
Expand Down
12 changes: 5 additions & 7 deletions gitea/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1.1
id: gitea
category: developer
name: Gitea
version: "1.22.4"
version: "1.22.6"
tagline: A painless self-hosted Git service
description: >-
Gitea is a painless self-hosted Git service. It is similar to
Expand Down Expand Up @@ -42,14 +42,12 @@ path: ""
defaultUsername: ""
defaultPassword: ""
releaseNotes: >
This release includes various security fixes and improvements:
This release includes security fixes and improvements:


- Enhanced security for basic authentication and API endpoints
- Improved performance for archive downloads
- Fixed issues with Docker image pulling, repository permissions, and pull request handling
- Resolved several UI and display issues
- Improved OAuth and WebAuthn authentication
- Fixed security issue related to public key handling
- Improved file migration handling
- Enhanced repository synchronization


As always, please review the full release notes for any changes that may affect your setup: https://github.com/go-gitea/gitea/releases
Expand Down
Loading