mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-26 15:07:25 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
572226155c | ||
|
50ec10f0ae | ||
|
a99dfc8e2a | ||
|
6bbea49e07 | ||
|
f53e024f69 |
27
CHANGELOG.md
27
CHANGELOG.md
@@ -1114,7 +1114,7 @@
|
|||||||
* Restore function to "Show more" buttons (#22399) (#22426)
|
* Restore function to "Show more" buttons (#22399) (#22426)
|
||||||
* Continue GCing other repos on error in one repo (#22422) (#22425)
|
* Continue GCing other repos on error in one repo (#22422) (#22425)
|
||||||
* Allow HOST has no port (#22280) (#22409)
|
* Allow HOST has no port (#22280) (#22409)
|
||||||
* Fix omit avatar_url in discord payload when empty (#22393) (#22394)
|
* Fix omit `avatar_url` in discord payload when empty (#22393) (#22394)
|
||||||
* Don't display stop watch top bar icon when disabled and hidden when click other place (#22374) (#22387)
|
* Don't display stop watch top bar icon when disabled and hidden when click other place (#22374) (#22387)
|
||||||
* Don't lookup mail server when using sendmail (#22300) (#22383)
|
* Don't lookup mail server when using sendmail (#22300) (#22383)
|
||||||
* Fix gravatar disable bug (#22337)
|
* Fix gravatar disable bug (#22337)
|
||||||
@@ -1134,5 +1134,28 @@
|
|||||||
* Fix invalid issue branch reference if not specified in template (#22513) (#22520)
|
* Fix invalid issue branch reference if not specified in template (#22513) (#22520)
|
||||||
* Fix 500 error viewing pull request when fork has pull requests disabled (#22512) (#22515)
|
* Fix 500 error viewing pull request when fork has pull requests disabled (#22512) (#22515)
|
||||||
* Reliable selection of admin user (#22509) (#22511)
|
* Reliable selection of admin user (#22509) (#22511)
|
||||||
* Set disable_gravatar/enable_federated_avatar when offline mode is true (#22479) (#22496)
|
* Set `disable_gravatar`/`enable_federated_avatar` when offline mode is true (#22479) (#22496)
|
||||||
|
|
||||||
|
[1.26.3]
|
||||||
|
* Update Gitea to 1.18.3
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.18.3)
|
||||||
|
* Prevent multiple To recipients (#22566) (#22569)
|
||||||
|
* Truncate commit summary on repo files table. (#22551) (#22552)
|
||||||
|
* Mute all links in issue timeline (#22534)
|
||||||
|
|
||||||
|
[1.26.4]
|
||||||
|
* Update Gitea to 1.18.4
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.18.4)
|
||||||
|
* SECURITY
|
||||||
|
* Provide the ability to set password hash algorithm parameters (#22942) (#22943)
|
||||||
|
* Add command to bulk set must-change-password (#22823) (#22928)
|
||||||
|
* ENHANCEMENTS
|
||||||
|
* Use import of OCI structs (#22765) (#22805)
|
||||||
|
* Fix color of tertiary button on dark theme (#22739) (#22744)
|
||||||
|
* Link issue and pull requests status change in UI notifications directly to their event in the timelined view. (#22627) (#22642)
|
||||||
|
* BUGFIXES
|
||||||
|
* Notify on container image create (#22806) (#22965)
|
||||||
|
* Fix blame view missing lines (#22826) (#22929)
|
||||||
|
* Fix incorrect role labels for migrated issues and comments (#22914) (#22923)
|
||||||
|
* Fix PR file tree folders no longer collapsing (#22864) (#22872)
|
||||||
|
* Escape filename when assemble URL (#22850) (#22871)
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
"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.26.2",
|
"version": "1.26.4",
|
||||||
"upstreamVersion": "1.18.2",
|
"upstreamVersion": "1.18.4",
|
||||||
"healthCheckPath": "/explore",
|
"healthCheckPath": "/explore",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
@@ -19,7 +19,7 @@ WORKDIR /home/git
|
|||||||
# for autosign feature
|
# for autosign feature
|
||||||
ENV GNUPGHOME="/app/data/gnupg"
|
ENV GNUPGHOME="/app/data/gnupg"
|
||||||
|
|
||||||
ARG VERSION=1.18.2
|
ARG VERSION=1.18.4
|
||||||
|
|
||||||
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
|
||||||
|
32
test/package-lock.json
generated
32
test/package-lock.json
generated
@@ -12,7 +12,7 @@
|
|||||||
"chromedriver": "^109.0.0",
|
"chromedriver": "^109.0.0",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
"selenium-webdriver": "^4.7.1",
|
"selenium-webdriver": "^4.8.0",
|
||||||
"superagent": "^8.0.8"
|
"superagent": "^8.0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -1179,13 +1179,13 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/selenium-webdriver": {
|
"node_modules/selenium-webdriver": {
|
||||||
"version": "4.7.1",
|
"version": "4.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.8.0.tgz",
|
||||||
"integrity": "sha512-IfTM9OE8HtCKjOJwyudbAVtAHQKOJK8mu2qrXXbKyj4lqgXF+2lYW4rSZXCV6SLQRWZ+DVGkomCmFzq5orD/ZA==",
|
"integrity": "sha512-s/HL8WNwy1ggHR244+tAhjhyKMJnZLt1HKJ6Gn7nQgVjB/ybDF+46Uui0qI2J7AjPNJzlUmTncdC/jg/kKkn0A==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jszip": "^3.10.0",
|
"jszip": "^3.10.0",
|
||||||
"tmp": "^0.2.1",
|
"tmp": "^0.2.1",
|
||||||
"ws": ">=8.7.0"
|
"ws": ">=8.11.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 14.20.0"
|
"node": ">= 14.20.0"
|
||||||
@@ -1393,15 +1393,15 @@
|
|||||||
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
||||||
},
|
},
|
||||||
"node_modules/ws": {
|
"node_modules/ws": {
|
||||||
"version": "8.8.1",
|
"version": "8.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz",
|
||||||
"integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
|
"integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10.0.0"
|
"node": ">=10.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"bufferutil": "^4.0.1",
|
"bufferutil": "^4.0.1",
|
||||||
"utf-8-validate": "^5.0.2"
|
"utf-8-validate": ">=5.0.2"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"bufferutil": {
|
"bufferutil": {
|
||||||
@@ -2326,13 +2326,13 @@
|
|||||||
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||||
},
|
},
|
||||||
"selenium-webdriver": {
|
"selenium-webdriver": {
|
||||||
"version": "4.7.1",
|
"version": "4.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.8.0.tgz",
|
||||||
"integrity": "sha512-IfTM9OE8HtCKjOJwyudbAVtAHQKOJK8mu2qrXXbKyj4lqgXF+2lYW4rSZXCV6SLQRWZ+DVGkomCmFzq5orD/ZA==",
|
"integrity": "sha512-s/HL8WNwy1ggHR244+tAhjhyKMJnZLt1HKJ6Gn7nQgVjB/ybDF+46Uui0qI2J7AjPNJzlUmTncdC/jg/kKkn0A==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"jszip": "^3.10.0",
|
"jszip": "^3.10.0",
|
||||||
"tmp": "^0.2.1",
|
"tmp": "^0.2.1",
|
||||||
"ws": ">=8.7.0"
|
"ws": ">=8.11.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"semver": {
|
"semver": {
|
||||||
@@ -2485,9 +2485,9 @@
|
|||||||
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
||||||
},
|
},
|
||||||
"ws": {
|
"ws": {
|
||||||
"version": "8.8.1",
|
"version": "8.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz",
|
||||||
"integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
|
"integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==",
|
||||||
"requires": {}
|
"requires": {}
|
||||||
},
|
},
|
||||||
"y18n": {
|
"y18n": {
|
||||||
|
@@ -9,10 +9,10 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^109.0.0",
|
"chromedriver": "^110.0.0",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
"selenium-webdriver": "^4.7.1",
|
"selenium-webdriver": "^4.8.1",
|
||||||
"superagent": "^8.0.8"
|
"superagent": "^8.0.9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user