179: chore(deps): bump regex from 1.8.2 to 1.8.3 r=orhun a=dependabot[bot]
Bumps [regex](https://github.com/rust-lang/regex) from 1.8.2 to 1.8.3.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
178: chore(deps): bump regex from 1.8.1 to 1.8.2 r=orhun a=dependabot[bot]
Bumps [regex](https://github.com/rust-lang/regex) from 1.8.1 to 1.8.2.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
176: chore(deps): bump clap_mangen from 0.2.10 to 0.2.11 r=orhun a=dependabot[bot]
Bumps [clap_mangen](https://github.com/clap-rs/clap) from 0.2.10 to 0.2.11.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
177: chore(deps): bump clap_complete from 4.2.3 to 4.3.0 r=orhun a=dependabot[bot]
Bumps [clap_complete](https://github.com/clap-rs/clap) from 4.2.3 to 4.3.0.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
175: chore(deps): bump clap from 4.2.7 to 4.3.0 r=orhun a=dependabot[bot]
Bumps [clap](https://github.com/clap-rs/clap) from 4.2.7 to 4.3.0.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
173: chore(deps): bump pretty_env_logger from 0.4.0 to 0.5.0 r=orhun a=dependabot[bot]
Bumps [pretty_env_logger](https://github.com/seanmonstar/pretty-env-logger) from 0.4.0 to 0.5.0.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
174: chore(deps): bump toml from 0.7.3 to 0.7.4 r=orhun a=dependabot[bot]
Bumps [toml](https://github.com/toml-rs/toml) from 0.7.3 to 0.7.4.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* refactor(docker): avoid copying volume inside container
* docs(readme): Fix Docker tips to mount project, not just repository
Otherwise any project configs have no chance of being read...
172: chore(deps): bump clap_complete from 4.2.2 to 4.2.3 r=orhun a=dependabot[bot]
Bumps [clap_complete](https://github.com/clap-rs/clap) from 4.2.2 to 4.2.3.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
171: chore(deps): bump serde from 1.0.162 to 1.0.163 r=orhun a=dependabot[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.162 to 1.0.163.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
169: chore(deps): bump update-informer from 0.6.0 to 1.0.0 r=orhun a=dependabot[bot]
Bumps [update-informer](https://github.com/mgrachev/update-informer) from 0.6.0 to 1.0.0.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
170: chore(deps): bump clap_complete from 4.2.1 to 4.2.2 r=orhun a=dependabot[bot]
Bumps [clap_complete](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
168: chore(deps): bump serde from 1.0.160 to 1.0.162 r=orhun a=dependabot[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.160 to 1.0.162.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
166: chore(deps): bump clap from 4.2.5 to 4.2.7 r=orhun a=dependabot[bot]
Bumps [clap](https://github.com/clap-rs/clap) from 4.2.5 to 4.2.7.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
162: chore(core): make git2 optional r=orhun a=MarcoIeni
<!--- Thank you for contributing to git-cliff! ⛰️ -->
## Description
<!--- Describe your changes in detail -->
Make git2 optional in git-cliff-core crate.
## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->
In release-plz I use git-cliff-core.
However, I don't need git-cliff to read the git history, so I don't need it to include git2.
I depend on both cargo and git-cliff, and often they have conflicting git2 versions.
For example, right now I can't update to the latest git-cliff, because git2 of git-cliff isn't compatible with cargo.
However with this change, by using:
`git-cliff-core = { path = "../git-cliff/git-cliff-core", default-features = false }`
in release-plz I'm able to update!
Some questions for you:
- are you ok with this additional complexity?
- do you want to find a better name for the feature?
Probably there are other dependencies that can be made optional, but for now git2 is the biggest pain-point for me.
If you are interested, I can find more dependencies.
## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
release-plz is compiling.
Maybe we can add a CI check to test that git-cliff-core compiles even without default features enabled.
## Screenshots / Logs (if applicable)
## Types of Changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
- [ ] Documentation (no code change)
- [x] Refactor (refactoring production code)
- [ ] Other <!--- (provide information) -->
## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [x] My code follows the code style of this project.
- [x] I have updated the documentation accordingly.
- [x] I have formatted the code with [rustfmt](https://github.com/rust-lang/rustfmt).
- [x] I checked the lints with [clippy](https://github.com/rust-lang/rust-clippy).
- [x] I have added tests to cover my changes.
- [x] All new and existing tests passed.
## alternative
Extract the code that doesn't depend on git2 in a third crate.
In particular, in my use case I already have the commits I want to write in the changelog, so it would be great if there was a crate that is only focused on generating the changelog, not in determining the commits to write into it.
It would be great if it could expose a subset of the configuration. For example, in release-plz not all git-cliff configuration option will have effect.
Co-authored-by: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com>
161: chore(deps): bump actions/configure-pages from 1 to 3 r=orhun a=dependabot[bot]
Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 1 to 3.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
160: chore(deps): bump actions/deploy-pages from 1 to 2 r=orhun a=dependabot[bot]
Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 1 to 2.
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>