From 896f5646a962dede73edd5b48cb08d70690ee2ba Mon Sep 17 00:00:00 2001 From: n-dusan Date: Thu, 22 Aug 2024 17:59:03 -0400 Subject: [PATCH 1/2] feat: add pull request template --- PULL_REQUEST_TEMPLATE.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..1e8bd1d --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -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/ \ No newline at end of file From a381fe84dd8c5a2c1517eb870e2a4d913bc92615 Mon Sep 17 00:00:00 2001 From: n-dusan Date: Thu, 22 Aug 2024 18:07:53 -0400 Subject: [PATCH 2/2] chore: get CHANGELOG up-to-date --- CHANGELOG.md | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9c4271..62a7c7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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