mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 04:52:40 +00:00
v1.5.0
This commit is contained in:
parent
05523f6bb1
commit
2b9eb8e127
2 changed files with 30 additions and 1 deletions
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -1,5 +1,34 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.5.0](https://github.com/thomiceli/opengist/compare/v1.4.2...v1.5.0) - 2023-09-26
|
||||||
|
### Added
|
||||||
|
- Private Gist visibility (#87)
|
||||||
|
- Create gists from a special Git HTTP server remote URL (#95)
|
||||||
|
- OIDC provider integration (#98)
|
||||||
|
- Translation system (#104)
|
||||||
|
- Run `git gc` on all repositories as admin (#90)
|
||||||
|
- Unit and integration tests (#97)
|
||||||
|
- Documentation (#110, #111)
|
||||||
|
- New logo (#103)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Use Non-CGO SQLite instead of CGO SQLite (#100)
|
||||||
|
- Various UI changes (#84, #93)
|
||||||
|
- Improved CI/CD pipeline (#99, #113)
|
||||||
|
- Improved git http semantics and repo obfuscation (#94)
|
||||||
|
- Updated Go deps (#102)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Find command for Windows users (#89)
|
||||||
|
- Retain visibility when editing a gist (#83)
|
||||||
|
- Typo on admin index page (#85)
|
||||||
|
- ViteJS dev server (#91)
|
||||||
|
- Bugs (#105)
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
- Removed CONFIG env var
|
||||||
|
- Removed TLS server (#101)
|
||||||
|
|
||||||
## [1.4.2](https://github.com/thomiceli/opengist/compare/v1.4.1...v1.4.2) - 2023-07-17
|
## [1.4.2](https://github.com/thomiceli/opengist/compare/v1.4.1...v1.4.2) - 2023-07-17
|
||||||
### Added
|
### Added
|
||||||
- External url to HTML links & redirects (#75)
|
- External url to HTML links & redirects (#75)
|
||||||
|
|
|
@ -15,7 +15,7 @@ import (
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
var OpengistVersion = "1.5-dev"
|
var OpengistVersion = "1.5.0"
|
||||||
|
|
||||||
var C *config
|
var C *config
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue