Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add PULL_REQUEST_TEMPLATE; update changelog #49

Merged
merged 3 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,54 @@ and this project adheres to a _modified_ form of _[Semantic Versioning][semver]_
(major version is the year; minor and patch are the same).

## [Unreleased]

### Added

- Add filesystem logging ([42])
- Add command to insert history into database from RDF ([33], [42], [44], [46])
- Add versions endpoint to view dates on which documents and/or collections have changed ([33])
- Add command to serve current documents from repositories ([32])

### Changed

### Fixed

- Load paths to git repositories at start-time ([47])
- Fixes to insert history command ([46])

### Removed

[47]: https://github.com/openlawlibrary/stelae/pull/47
[46]: https://github.com/openlawlibrary/stelae/pull/46
[44]: https://github.com/openlawlibrary/stelae/pull/44
[42]: https://github.com/openlawlibrary/stelae/pull/42
[33]: https://github.com/openlawlibrary/stelae/pull/33
[32]: https://github.com/openlawlibrary/stelae/pull/32

## [0.2.1]

### Added

- Add basic instruments to git serve ([26])

### Changed

### Fixed

- Fix safe directory issues by upgrading git2 to latest version ([26])

### Removed

[26]: https://github.com/openlawlibrary/stelae/pull/26

## [0.2.0]

### Added

### Changed

- Update license, release under AGPL ([25])

### Fixed

### Removed
Expand All @@ -44,15 +68,17 @@ and this project adheres to a _modified_ form of _[Semantic Versioning][semver]_
### Changed

### Fixed

- default to `text/html` mime-type instead of `application/octet-stream`
### Removed

### Removed

## [0.1.0]

### Added
- added `/{namespace}/{name}/{commitish}{remainder}` endpoint (initial commits)
- added ci/cd and local verbose clippy in vscode

- Added `/{namespace}/{name}/{commitish}{remainder}` endpoint (initial commits)
- Added ci/cd and local verbose clippy in vscode

### Changed

Expand Down
21 changes: 21 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Description (e.g. "Related to ...", etc.)

_Please replace this description with a concise description of this Pull Request._

## Code review checklist (for code reviewer to complete)

- [ ] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR)
- [ ] Title summarizes what is changing
- [ ] Commit messages are meaningful (see [this][commit messages] for details)
- [ ] Tests have been included and/or updated, as appropriate
- [ ] Docstrings have been included and/or updated, as appropriate
- [ ] Standalone docs have been updated accordingly

## Automated tests, benchmarks and linters

You can run the tests, lints and benchmarks that are run on CI locally with:
```sh
just ci
```

[commit messages]: https://conventionalcommits.org/