all repos

mugit @ c543efde5c66b7912491f6028602de8b4e187a6e

🐮 git server that your cow will love

mugit/CHANGELOG.md (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
update change log, 22 days ago
1
# Changelog
2
3
## 0.3.0 (unreleased)
4
5
### Breaking changes
6
- Switched to system sshd integration instead of bundling a custom SSH server.
7
- Changed route for raw files. From `/repo/blob/ref/file_path?raw=true` to `/repo/raw/ref/file_path`.
8
9
### Features:
10
- Paginate log page (150 commits per page).
11
- New compare refs page(`/{name}/compare/{ref1}/{ref2}`) with ahead/behind count, merge base, commits, and diff.
12
- RSS feeds: global(`/index.xml`) and per-repo(`/{name}/feed/`).
13
- Breadcrumbs on file content and file tree pages.
14
- Last commit info on tree page(per-file) and file content page.
15
- Show both authored and committed timestamps on commit page when they differ.
16
- Highlight selected line on file content page with `#L{N}` anchor links.
17
- Show remote urls and mirroring data on empty repos.
18
- Improved markdown README rendering with better typography, code blocks, callouts, and dark mode support.
19
- Mirror status shows last sync time(when changes were fetched) and last checked time(when checked, even without changes).
20
- Accept gzip-encoded HTTP requests for `git upload-pack`.
21
- **ssh:**
22
  - Support `git-upload-archive` over SSH.
23
  - Automatically initialize repository on first push.
24
  - Show modt on ssh connections (push, clone, `ssh -T`)
25
- **cli:**
26
  - `mugit repo new repo --description <desc>` sets repository description on creation.
27
  - `mugit repo new repo --private` creates a private repository.
28
  - `mugit repo new repo --mirror <url>` creates a mirror and performs initial sync.
29
  - `mugit repo set-default <repo.git> <branch>` changes repo default branch.
30
  - `mugit repo sync <repo.git>` triggers an immediate mirror sync.
31
32
### Bug fixes:
33
- Allow downloading only valid and existing refs.
34
- Support refs with special characters in names (e.g. `/` or `#`).
35
- Fix diffs not rendering when viewing the first commit in a repository.
36
37
## 0.2.0
38
39
### Features
40
- Commit Page:
41
  - Show both author and committer names when they differ.
42
  - Redesign commit page layout with improved colors and navigation.
43
  - Use monospace font for commit hashes.
44
- Format commit timestamps as `YYYY-MM-DD HH:MM:SS TZ`.
45
- Hide navigation bar for empty repositories.
46
- Render subtree-scoped README files on the tree view.
47
- Markdown rendering:
48
  - Render images with relative links within repository.
49
  - :hey: Add emoji support (e.g. `:smile:`).
50
51
### Bug Fixes
52
- Correct MIME types for raw file downloads.
53
- Address cases where renamed files displayed incorrectly on the commit view page.
54
- Fix mirrorer failing to update HEAD on empty repositories.
55
56
## 0.1.0
57
- Initial release
58
  - CLI: create, toggle private/public repo status, and add descriptions.
59
  - Web UI.
60
  - SSH server for git pull/push operations.
61
  - Pull-based mirroring.