mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-26 15:07:25 +00:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5f7b0457db | ||
|
7adfed915b | ||
|
2af74e6817 | ||
|
57ad6d200a | ||
|
4df53960f5 | ||
|
2fb28433fb |
36
CHANGELOG
36
CHANGELOG
@@ -851,3 +851,39 @@
|
|||||||
* Only allow webhook to send requests to allowed hosts (#17482) (#17510)
|
* Only allow webhook to send requests to allowed hosts (#17482) (#17510)
|
||||||
* Fix login redirection links (#17451) (#17473)
|
* Fix login redirection links (#17451) (#17473)
|
||||||
|
|
||||||
|
[1.23.1]
|
||||||
|
* Update Gitea to 1.15.8
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.15.8)
|
||||||
|
* Move POST /{username}/action/{action} to simply POST /{username} (#18045) (#18046)
|
||||||
|
* Fix delete u2f keys bug (#18040) (#18042)
|
||||||
|
* Reset Session ID on login (#18018) (#18041)
|
||||||
|
* Prevent off-by-one error on comments on newly appended lines (#18029) (#18035)
|
||||||
|
* Stop printing 03d after escaped characters in logs (#18030) (#18034)
|
||||||
|
|
||||||
|
[1.23.2]
|
||||||
|
* Update Gitea to 1.15.9
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.15.9)
|
||||||
|
* Fix wrong redirect on org labels (#18128) (#18134)
|
||||||
|
* Fix: unstable sort skips/duplicates issues across pages (#18094) (#18095)
|
||||||
|
* Revert "Fix delete u2f keys bug (#18042)" (#18107)
|
||||||
|
* Migrating wiki don't require token, so we should move it out of the require form (#17645) (#18104)
|
||||||
|
* Prevent NPE if gitea uploader fails to open url (#18080) (#18101)
|
||||||
|
* Reset locale on login (#17734) (#18100)
|
||||||
|
* Correctly handle failed migrations (#17575) (#18099)
|
||||||
|
* Instead of using routerCtx just escape the url before routing (#18086) (#18098)
|
||||||
|
* Quote references to the user table in consistency checks (#18072) (#18073)
|
||||||
|
* Add NotFound handler (#18062) (#18067)
|
||||||
|
* Ensure that git repository is closed before transfer (#18049) (#18057)
|
||||||
|
* Use common sessioner for API and web routes (#18114)
|
||||||
|
|
||||||
|
[1.23.3]
|
||||||
|
* Update Gitea to 1.15.10
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.15.10)
|
||||||
|
* Fix inconsistent PR comment counts (#18260) (#18261)
|
||||||
|
* Fix release link broken (#18252) (#18253)
|
||||||
|
* Fix update user from site administration page bug (#18250) (#18251)
|
||||||
|
* Set HeadCommit when creating tags (#18116) (#18173)
|
||||||
|
* Use correct translation key for error messages due to max repo limits (#18135 & #18153) (#18152)
|
||||||
|
* Fix purple color in suggested label colors (#18241) (#18242)
|
||||||
|
* Bump mermaid from 8.10.1 to 8.13.8 (#18198) (#18206)
|
||||||
|
|
||||||
|
@@ -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.23.0",
|
"version": "1.23.3",
|
||||||
"healthCheckPath": "/explore",
|
"healthCheckPath": "/explore",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Gitea <upstream>1.15.7</upstream>
|
This app packages Gitea <upstream>1.15.10</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,4 +1,4 @@
|
|||||||
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openssh-server git asciidoctor pandoc && \
|
apt-get install -y openssh-server git asciidoctor pandoc && \
|
||||||
@@ -16,7 +16,7 @@ RUN passwd -d git
|
|||||||
RUN mkdir -p /home/git/gitea
|
RUN mkdir -p /home/git/gitea
|
||||||
WORKDIR /home/git
|
WORKDIR /home/git
|
||||||
|
|
||||||
ARG VERSION=1.15.7
|
ARG VERSION=1.15.10
|
||||||
|
|
||||||
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
||||||
&& chmod +x /home/git/gitea/gitea
|
&& chmod +x /home/git/gitea/gitea
|
||||||
|
2081
test/package-lock.json
generated
2081
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,11 +9,11 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^96.0.0",
|
"chromedriver": "^97.0.0",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^9.1.3",
|
"mocha": "^9.1.4",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"selenium-webdriver": "^4.1.0",
|
"selenium-webdriver": "^4.1.1",
|
||||||
"superagent": "^6.1.0"
|
"superagent": "^7.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user