mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-27 15:37:27 +00:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
538f3fdead | ||
|
b2b86f170f | ||
|
4301fd5117 | ||
|
7aebe88c3e | ||
|
91cc96705e | ||
|
6fe012f901 | ||
|
29197622fc |
43
CHANGELOG
43
CHANGELOG
@@ -332,3 +332,46 @@
|
|||||||
[1.13.2]
|
[1.13.2]
|
||||||
* Make sessions persist restarts
|
* Make sessions persist restarts
|
||||||
|
|
||||||
|
[1.13.3]
|
||||||
|
* Update Gitea to 1.9.2
|
||||||
|
* Fix wrong sender when send slack webhook (#7918) (#7924)
|
||||||
|
* Upload support text/plain; charset=utf8 (#7899)
|
||||||
|
* Lfs/lock: round locked_at timestamp to second (#7872) (#7875)
|
||||||
|
* Fix non existent milestone with 500 error (#7867) (#7873)
|
||||||
|
* SECURITY
|
||||||
|
* Fix No PGP signature on 1.9.1 tag (#7874)
|
||||||
|
* Release built with go 1.12.9 to fix security fixes in golang std lib, ref: https://groups.google.com/forum/#!msg/golang-announce/oeMaeUnkvVE/a49yvTLqAAAJ
|
||||||
|
* ENHANCEMENT
|
||||||
|
* Fix pull creation with empty changes (#7920) (#7926)
|
||||||
|
* BUILD
|
||||||
|
* Drone/docker: prepare multi-arch release + provide arm64 image (#7571) (#7884)
|
||||||
|
|
||||||
|
[1.13.4]
|
||||||
|
* Update Gitea to 1.9.3
|
||||||
|
* Fix go get from a private repository with Go 1.13 (#8100)
|
||||||
|
* Strict name matching for Repository.GetTagID() (#8082)
|
||||||
|
* Avoid ambiguity of branch/directory names for the git-diff-tree command (#8070)
|
||||||
|
* Add change title notification for issues (#8064)
|
||||||
|
* Run CORS handler first for /api routes (#7967) (#8053)
|
||||||
|
* Evaluate emojis in commit messages in list view (#8044)
|
||||||
|
* Fix failed to synchronize tags to releases for repository (#7990) (#7994)
|
||||||
|
* Fix adding default Telegram webhook (#7972) (#7992)
|
||||||
|
* Abort synchronization from LDAP source if there is some error (#7965)
|
||||||
|
* Fix deformed emoji in commit message (#8071)
|
||||||
|
* Keep blame view buttons sequence consistent with normal view when viewing a file (#8007) (#8009)
|
||||||
|
|
||||||
|
[1.13.5]
|
||||||
|
* Update Gitea to 1.9.4
|
||||||
|
* Highlight issue references (#8101) (#8404)
|
||||||
|
* Fix bug when migrating a private repository #7917 (#8403)
|
||||||
|
* Change general form binding to gogs form (#8334) (#8402)
|
||||||
|
* Fix editor commit to new branch if PR disabled (#8375) (#8401)
|
||||||
|
* Fix milestone num_issues (#8221) (#8400)
|
||||||
|
* Allow users with explicit read access to give approvals (#8398)
|
||||||
|
* Fix commit status in PR #8316 and PR #8321 (#8339)
|
||||||
|
* Fix API for edit and delete release attachment (#8290)
|
||||||
|
* Fix assets on release webhook (#8283)
|
||||||
|
* Fix release API URL generation (#8239)
|
||||||
|
* Allow registration when button is hidden (#8238)
|
||||||
|
* MS Teams webhook misses commit messages (backport v1.9) (#8225)
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
"author": "Gitea developers",
|
"author": "Gitea developers",
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"tagline": "A painless self-hosted Git Service",
|
"tagline": "A painless self-hosted Git Service",
|
||||||
"version": "1.13.2",
|
"version": "1.13.5",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Gitea <upstream>1.9.1</upstream>
|
This app packages Gitea <upstream>1.9.4</upstream>
|
||||||
|
|
||||||
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
||||||
|
|
||||||
ARG VERSION=1.9.1
|
ARG VERSION=1.9.4
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openssh-server git && \
|
apt-get install -y openssh-server git && \
|
||||||
|
7
start.sh
7
start.sh
@@ -119,13 +119,6 @@ crudini --set "/run/gitea/app.ini" log MODE "console"
|
|||||||
crudini --set "/run/gitea/app.ini" log ROOT_PATH "/run/gitea"
|
crudini --set "/run/gitea/app.ini" log ROOT_PATH "/run/gitea"
|
||||||
crudini --set "/run/gitea/app.ini" indexer ISSUE_INDEXER_PATH "/app/data/appdata/indexers/issues.bleve"
|
crudini --set "/run/gitea/app.ini" indexer ISSUE_INDEXER_PATH "/app/data/appdata/indexers/issues.bleve"
|
||||||
|
|
||||||
# this can be removed in the next release
|
|
||||||
crudini --set "/run/gitea/app.ini" session PROVIDER "file"
|
|
||||||
crudini --set "/run/gitea/app.ini" session PROVIDER_CONFIG "/run/gitea/sessions"
|
|
||||||
crudini --set "/run/gitea/app.ini" session COOKIE_SECURE "true"
|
|
||||||
crudini --set "/run/gitea/app.ini" session COOKIE_NAME "cloudron_gitea"
|
|
||||||
crudini --set "/run/gitea/app.ini" session GC_INTERVAL_TIME 2592000
|
|
||||||
|
|
||||||
echo "==> Creating dirs and changing permissions"
|
echo "==> Creating dirs and changing permissions"
|
||||||
mkdir -p /app/data/repository /app/data/ssh /app/data/custom
|
mkdir -p /app/data/repository /app/data/ssh /app/data/custom
|
||||||
chown -R git:git /app/data /run/gitea
|
chown -R git:git /app/data /run/gitea
|
||||||
|
Reference in New Issue
Block a user