Skip to content

Latest commit

 

History

History
596 lines (421 loc) · 38.7 KB

CHANGELOG.md

File metadata and controls

596 lines (421 loc) · 38.7 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.8.0 (2022-09-04)

A major release to properly introduce the signature change that happened in 0.7.2, which effectively broke compilation for users of parse() in 0.7.1.

Changed (BREAKING)

  • Introduce parse(&BStr) (previously it took &[u8]) A &BStr better indicates that we are expecting human-readable input with ascii-compatible or UTF-8 endcoding.

Commit Statistics

  • 3 commits contributed to the release over the course of 1 calendar day.
  • 7 days passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #524

Commit Details

view details
  • #524
    • prepare changelogs prior to release (6446b39)
    • Introduce parse(&BStr) (previously it took &[u8]) (653ebc5)
  • Uncategorized
    • Merge branch 'git_date_parse' (75591fb)

0.7.3 (2022-08-28)

Maintenance release without user-facing changes.

Commit Statistics

  • 3 commits contributed to the release over the course of 1 calendar day.
  • 4 days passed between releases.
  • 0 commits were understood as conventional.
  • 1 unique issue was worked on: #XXX

Commit Details

view details
  • #XXX
    • prepare changelogs prior to release (8c0bca3)
  • Uncategorized
    • Release git-object v0.20.3, git-ref v0.15.4, git-config v0.7.1, git-diff v0.18.0, git-traverse v0.16.3, git-pack v0.22.0, git-odb v0.32.0, git-url v0.7.3, git-transport v0.19.3, git-protocol v0.19.1, git-refspec v0.1.1, git-repository v0.23.0, safety bump 6 crates (85a3bed)
    • Release git-features v0.22.3, git-revision v0.4.4 (c2660e2)

0.7.2 (2022-08-24)

Chore

  • uniformize deny attributes
  • remove default link to cargo doc everywhere

New Features

  • TryFrom<&OsStr> to allow direct usage of Url in clap. In clap_derive, this needs parse(try_from_os_str = std::convert::TryFrom::try_from).
  • TryFrom<PathBuf> which is useful if urls are obtained from the command-line.
  • use docsrs feature in code to show what is feature-gated automatically on docs.rs
  • pass --cfg docsrs when compiling for https://docs.rs

Commit Statistics

  • 15 commits contributed to the release over the course of 5 calendar days.
  • 6 days passed between releases.
  • 6 commits were understood as conventional.
  • 1 unique issue was worked on: #450

Commit Details

view details
  • #450
    • TryFrom<&OsStr> to allow direct usage of Url in clap. (7a17690)
    • TryFrom<PathBuf> which is useful if urls are obtained from the command-line. (b7a5f7a)
  • Uncategorized
    • Release git-date v0.0.5, git-hash v0.9.8, git-features v0.22.2, git-actor v0.11.3, git-glob v0.3.2, git-quote v0.2.1, git-attributes v0.3.2, git-tempfile v2.0.4, git-lock v2.1.1, git-validate v0.5.5, git-object v0.20.2, git-ref v0.15.2, git-sec v0.3.1, git-config v0.7.0, git-credentials v0.4.0, git-diff v0.17.2, git-discover v0.4.1, git-bitmap v0.1.2, git-index v0.4.2, git-mailmap v0.3.2, git-chunk v0.3.1, git-traverse v0.16.2, git-pack v0.21.2, git-odb v0.31.2, git-packetline v0.12.7, git-url v0.7.2, git-transport v0.19.2, git-protocol v0.19.0, git-revision v0.4.2, git-refspec v0.1.0, git-worktree v0.4.2, git-repository v0.22.0, safety bump 4 crates (4974eca)
    • Release git-path v0.4.1 (5e82346)
    • Merge branch 'example-write-blob' (afedd7f)
    • Merge pull request #494 from ultrasaurus/patch-1 (86fe22c)
    • Merge branch 'main' into remote-ls-refs (95f2f4f)
    • Merge branch 'example-new-repo' (946dd3a)
    • Merge branch 'main' into remote-ls-refs (e2ee3de)
    • use docsrs feature in code to show what is feature-gated automatically on docs.rs (b1c40b0)
    • uniformize deny attributes (f7f136d)
    • pass --cfg docsrs when compiling for https://docs.rs (5176771)
    • remove default link to cargo doc everywhere (533e887)
    • Merge branch 'main' into remote-ls-refs (c82bbfa)
    • Merge branch 'main' into remote-ls-refs (bd5f3e8)

0.7.1 (2022-08-17)

A maintenance release without user facing changes.

Bug Fixes (BREAKING)

  • Prohibit invalid state by making parts the url's data private This fix is meant to improve serialization support which can now happen to_bstring() without possibility for error.

    Empty paths can still be set which won't be valid for all URLs.

Changed (BREAKING)

  • Use &BStr as input instead of [u8] This signals that it's indeed intended to be human readable while allowing it to be a path as well without loss, at least theoretically. After all we currently don't have a way to parse invalid UTF-8.
  • remove impl std::fmt::Display for Url as it's not lossless.

New Features

  • more conversions for TryFrom: String and &str
  • Url::write_to(out) to write itself more flexibly.
  • Add Url::to_bstring() for lossless but fallible bstring conversion.

Commit Statistics

  • 16 commits contributed to the release over the course of 8 calendar days.
  • 26 days passed between releases.
  • 6 commits were understood as conventional.
  • 1 unique issue was worked on: #450

Commit Details

view details
  • #450
    • A first sketch on how connections could be working (e55b43e)
    • Use &BStr as input instead of [u8] (f6506e0)
    • Prohibit invalid state by making parts the url's data private (2bcfdee)
    • remove invalid test as it looks like it parses hosts from paths and that is fine (224c605)
    • switch to thiserror (cfd7c0a)
    • prepare for better error handling around ssh urls (6d8d9b8)
    • more conversions for TryFrom: String and &str (a67fc26)
    • remove impl std::fmt::Display for Url as it's not lossless. (79ab4ae)
    • Url::write_to(out) to write itself more flexibly. (833899d)
    • Add Url::to_bstring() for lossless but fallible bstring conversion. (5f707c7)
  • Uncategorized
    • Release git-date v0.0.3, git-actor v0.11.1, git-attributes v0.3.1, git-tempfile v2.0.3, git-object v0.20.1, git-ref v0.15.1, git-config v0.6.1, git-diff v0.17.1, git-discover v0.4.0, git-bitmap v0.1.1, git-index v0.4.1, git-mailmap v0.3.1, git-traverse v0.16.1, git-pack v0.21.1, git-odb v0.31.1, git-packetline v0.12.6, git-url v0.7.1, git-transport v0.19.1, git-protocol v0.18.1, git-revision v0.4.0, git-worktree v0.4.1, git-repository v0.21.0, safety bump 5 crates (c96473d)
    • prepare changelogs prior to reelase (c06ae1c)
    • Release git-hash v0.9.7, git-features v0.22.1 (232784a)
    • Merge branch 'main' into remote-ls-refs (c4bf958)
    • Merge branch 'main' into remote-ls-refs (de61c4d)
    • Merge branch 'main' into remote-ls-refs (e8fc89d)

0.7.0 (2022-07-22)

Changed (BREAKING)

  • From<&[u8]> is now From<&BStr> This better represents the meaning of the input, and simplifies interactions with git-config.

Commit Statistics

  • 6 commits contributed to the release over the course of 33 calendar days.
  • 39 days passed between releases.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • Release git-config v0.6.0, git-credentials v0.3.0, git-diff v0.17.0, git-discover v0.3.0, git-index v0.4.0, git-mailmap v0.3.0, git-traverse v0.16.0, git-pack v0.21.0, git-odb v0.31.0, git-url v0.7.0, git-transport v0.19.0, git-protocol v0.18.0, git-revision v0.3.0, git-worktree v0.4.0, git-repository v0.20.0, git-commitgraph v0.8.0, gitoxide-core v0.15.0, gitoxide v0.13.0 (aa639d8)
    • Release git-hash v0.9.6, git-features v0.22.0, git-date v0.0.2, git-actor v0.11.0, git-glob v0.3.1, git-path v0.4.0, git-attributes v0.3.0, git-tempfile v2.0.2, git-object v0.20.0, git-ref v0.15.0, git-sec v0.3.0, git-config v0.6.0, git-credentials v0.3.0, git-diff v0.17.0, git-discover v0.3.0, git-index v0.4.0, git-mailmap v0.3.0, git-traverse v0.16.0, git-pack v0.21.0, git-odb v0.31.0, git-url v0.7.0, git-transport v0.19.0, git-protocol v0.18.0, git-revision v0.3.0, git-worktree v0.4.0, git-repository v0.20.0, git-commitgraph v0.8.0, gitoxide-core v0.15.0, gitoxide v0.13.0, safety bump 22 crates (4737b1e)
    • prepare changelog prior to release (3c50625)
    • assure document-features are available in all 'usable' and 'early' crates (238581c)
    • From<&[u8]> is now From<&BStr> (ffc4a85)
    • Release git-path v0.3.0, safety bump 14 crates (400c9be)

0.6.0 (2022-06-13)

A maintenance release without user-facing changes.

Commit Statistics

  • 2 commits contributed to the release.
  • 25 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • Release git-date v0.0.1, git-hash v0.9.5, git-features v0.21.1, git-actor v0.10.1, git-path v0.2.0, git-attributes v0.2.0, git-ref v0.14.0, git-sec v0.2.0, git-config v0.5.0, git-credentials v0.2.0, git-discover v0.2.0, git-pack v0.20.0, git-odb v0.30.0, git-url v0.6.0, git-transport v0.18.0, git-protocol v0.17.0, git-revision v0.2.1, git-worktree v0.3.0, git-repository v0.19.0, safety bump 13 crates (a417177)
    • update changelogs prior to release (bb424f5)

0.5.0 (2022-05-18)

A maintenance release without user-facing changes.

Commit Statistics

  • 6 commits contributed to the release over the course of 21 calendar days.
  • 45 days passed between releases.
  • 0 commits were understood as conventional.
  • 1 unique issue was worked on: #301

Commit Details

view details
  • #301
    • update changelogs prior to release (84cb256)
    • adapt to changes in git-path (cc2d810)
    • Use git-path crate instead of git_features::path (47e607d)
  • Uncategorized
    • Release git-ref v0.13.0, git-discover v0.1.0, git-index v0.3.0, git-mailmap v0.2.0, git-traverse v0.15.0, git-pack v0.19.0, git-odb v0.29.0, git-packetline v0.12.5, git-url v0.5.0, git-transport v0.17.0, git-protocol v0.16.0, git-revision v0.2.0, git-worktree v0.2.0, git-repository v0.17.0 (349c590)
    • Release git-hash v0.9.4, git-features v0.21.0, git-actor v0.10.0, git-glob v0.3.0, git-path v0.1.1, git-attributes v0.1.0, git-sec v0.1.0, git-config v0.3.0, git-credentials v0.1.0, git-validate v0.5.4, git-object v0.19.0, git-diff v0.16.0, git-lock v2.1.0, git-ref v0.13.0, git-discover v0.1.0, git-index v0.3.0, git-mailmap v0.2.0, git-traverse v0.15.0, git-pack v0.19.0, git-odb v0.29.0, git-packetline v0.12.5, git-url v0.5.0, git-transport v0.17.0, git-protocol v0.16.0, git-revision v0.2.0, git-worktree v0.2.0, git-repository v0.17.0, safety bump 20 crates (654cf39)
    • Merge branch 'git_includeif' of https://github.com/svetli-n/gitoxide into svetli-n-git_includeif (0e01da7)

0.4.0 (2022-04-03)

A maintenance release without surfacing changes.

Commit Statistics

  • 9 commits contributed to the release over the course of 68 calendar days.
  • 69 days passed between releases.
  • 0 commits were understood as conventional.
  • 4 unique issues were worked on: #329, #331, #333, #364

Commit Details

view details
  • #329
    • Document all features related to serde1 (72b97f2)
  • #331
    • Adapt to changes in git_features::path to deal with Result (bba4c68)
  • #333
    • Use git_features::path everywhere where there is a path conversion (2e1437c)
  • #364
    • update changelogs prior to release (746a676)
  • Uncategorized
    • Release git-diff v0.14.0, git-bitmap v0.1.0, git-index v0.2.0, git-tempfile v2.0.1, git-lock v2.0.0, git-mailmap v0.1.0, git-traverse v0.13.0, git-pack v0.17.0, git-quote v0.2.0, git-odb v0.27.0, git-packetline v0.12.4, git-url v0.4.0, git-transport v0.16.0, git-protocol v0.15.0, git-ref v0.12.0, git-worktree v0.1.0, git-repository v0.15.0, cargo-smart-release v0.9.0, safety bump 5 crates (e58dc30)
    • Merge branch 'for-onefetch' (8e5cb65)
    • Release git-hash v0.9.3, git-features v0.20.0, git-config v0.2.0, safety bump 12 crates (f0cbb24)
    • Merge branch 'AP2008-implement-worktree' (f32c669)
    • Merge branch 'index-information' (025f157)

0.3.5 (2022-01-23)

A maintenance release with no relevant changes.

Commit Statistics

  • 8 commits contributed to the release over the course of 41 calendar days.
  • 100 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Thanks Clippy

Clippy helped 1 time to make code idiomatic.

Commit Details

view details
  • Uncategorized
    • Release git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0 (42ebb53)
    • Release git-diff v0.13.0, git-tempfile v1.0.4, git-chunk v0.3.0, git-traverse v0.12.0, git-pack v0.16.0, git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0 (1b76119)
    • Release git-actor v0.8.0, git-config v0.1.10, git-object v0.17.0, git-diff v0.13.0, git-tempfile v1.0.4, git-chunk v0.3.0, git-traverse v0.12.0, git-pack v0.16.0, git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0 (8f57c29)
    • Release git-features v0.19.1, git-actor v0.8.0, git-config v0.1.10, git-object v0.17.0, git-diff v0.13.0, git-tempfile v1.0.4, git-chunk v0.3.0, git-traverse v0.12.0, git-pack v0.16.0, git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0 (d78aab7)
    • Release git-hash v0.9.1, git-features v0.19.1, git-actor v0.8.0, git-config v0.1.10, git-object v0.17.0, git-diff v0.13.0, git-tempfile v1.0.4, git-chunk v0.3.0, git-traverse v0.12.0, git-pack v0.16.0, git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0, safety bump 4 crates (373cbc8)
    • prepare changelogs for release (674ec73)
    • prepar changelogs for cargo-smart-release release (8900d69)
    • thanks clippy (4ca9e07)

v0.3.4 (2021-10-15)

This release contains no functional change, but a more useful changelog.

Commit Statistics

  • 14 commits contributed to the release over the course of 11 calendar days.
  • 59 days passed between releases.
  • 0 commits were understood as conventional.
  • 1 unique issue was worked on: #198

Commit Details

view details
  • #198
    • Adjust all changelogs to fulfil requirements for publishing (04b9ca0)
    • deduplicate conventional message ids (e695eda)
    • regenerate all changelogs to get links (0c81769)
    • Mention actual issues that where worked on (a517e39)
    • respect release-wide ignore list to allow removing entire conventional headlines (145103d)
    • Only write headlines that we can parse back… (d44369a)
    • Rebuild all changelogs to assure properly ordered headlines (4a9a05f)
    • Sort all commits by time, descending… (f536bad)
    • greatly reduce changelog size now that the traversal fix is applied (a0bc98c)
    • Fixup remaining changelogs… (2f75db2)
  • Uncategorized
    • Release git-hash v0.7.0, git-features v0.16.5, git-actor v0.5.3, git-config v0.1.7, git-validate v0.5.3, git-object v0.14.1, git-diff v0.10.0, git-tempfile v1.0.3, git-lock v1.0.1, git-traverse v0.9.0, git-pack v0.12.0, git-odb v0.22.0, git-packetline v0.11.0, git-url v0.3.4, git-transport v0.12.0, git-protocol v0.11.0, git-ref v0.8.0, git-repository v0.10.0, cargo-smart-release v0.4.0 (59ffbd9)
    • Adjusting changelogs prior to release of git-hash v0.7.0, git-features v0.16.5, git-actor v0.5.3, git-validate v0.5.3, git-object v0.14.1, git-diff v0.10.0, git-tempfile v1.0.3, git-lock v1.0.1, git-traverse v0.9.0, git-pack v0.12.0, git-odb v0.22.0, git-packetline v0.11.0, git-url v0.3.4, git-transport v0.12.0, git-protocol v0.11.0, git-ref v0.8.0, git-repository v0.10.0, cargo-smart-release v0.4.0, safety bump 3 crates (a474395)
    • make fmt, but now it picked up some parts that usually don't get altered… (01f7b72)
    • Update changelogs just for fun (21541b3)

v0.3.3 (2021-08-17)

Commit Statistics

  • 2 commits contributed to the release over the course of 1 calendar day.
  • 6 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • Release git-url v0.3.3 (fdd5bdb)
    • Apply nightly rustfmt rules. (5e0edba)

v0.3.2 (2021-08-10)

Commit Statistics

  • 5 commits contributed to the release over the course of 94 calendar days.
  • 137 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • (cargo-release) version 0.3.2 (03de99e)
    • (cargo-release) version 0.3.1 (4deef67)
    • Merge branch 'patch-2' (f01dc54)
    • Merge branch 'patch-1' (5edc076)
    • Fix compile warnings (42fd77b)

v0.3.0 (2021-03-26)

Commit Statistics

  • 3 commits contributed to the release over the course of 12 calendar days.
  • 70 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • (cargo-release) version 0.3.0 (d5c6643)
    • thanks clippy (e13adb2)
    • [gitoxide-core] Use git-config for remote url parsing (c45feed)

Thanks Clippy

Clippy helped 1 time to make code idiomatic.

v0.2.0 (2021-01-14)

Commit Statistics

  • 2 commits contributed to the release.
  • 26 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • (cargo-release) version 0.2.0 (0c39373)
    • support for radicle urls (2c5b955)

v0.1.1 (2020-12-18)

Commit Statistics

  • 5 commits contributed to the release over the course of 93 calendar days.
  • 97 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • (cargo-release) version 0.1.1 (e94fefa)
    • finish git-url docs (4099508)
    • begin of documenting git-url crate (c891901)
    • remove dash in all repository links (98c1360)
    • Finish removal of rust 2018 idioms (0d1699e)

v0.1.0 (2020-09-12)

Other

  • try for leaner tests, but it does the opposite kind of :D

Commit Statistics

  • 48 commits contributed to the release over the course of 28 calendar days.
  • 29 days passed between releases.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized
    • refactor (e07fbd6)
    • [clone] encode message for git credentials helper (143549e)
    • [clone] make URL available in transport layer (6778447)
    • [clone] Finish round-trip testing (df617fd)
    • refactor (aea52fe)
    • [clone] first sketch of roundtripping URLs (23678f8)
    • [clone] first steps towards launching git-upload-pack while… (41f05f1)
    • [clone] Better error handling for generalized connect(…) (713808c)
    • [clone] expand-path should be server-side (8a38856)
    • thanks clippy (0506fd9)
    • [url] more specific 'missing user home' error (ec5721a)
    • refactor (e54681a)
    • [url] Actually the is_relative() case should never be triggered (ac89d38)
    • [url] try again, maybe this works on windows… (f14fdd1)
    • [url] Once more with feeling (2ea4a8c)
    • [url] all debug output there is… (3df5b41)
    • [url] yikes, more debugging for windows on CI (9a430e7)
    • [url] Another try to make this work on windows - tests probably (a51647f)
    • [url] See if this fixes the windows tests (534c6a6)
    • [url] add standard conversions (27e3bdc)
    • refactor (73e2b1b)
    • [url] BString in public interface (745662d)
    • [url] Commit to 'bstr' (3d26ae1)
    • [url] remove feature toggle, 'home' dependency is small enough (a5a6f0f)
    • [url] Add user expansion support (behind feature toggle) (a684cfe)
    • [url] first stab at expanding paths with user names (37459dc)
    • thanks clippy (50acab7)
    • [url] Support for git and http urls, as well as user expansion parsing (5ef201d)
    • refactor (6ab7cc6)
    • [url] first stab at implementing username expansion reasonably (86d17a3)
    • [url] fix serde (569014d)
    • [url] Now with support for non-utf8 byte strings (81f01fd)
    • [url] more tests and additional limitations (3c2811f)
    • [url] handle trivial file protocol URLs better (18eb512)
    • [url] Disable URL parsing for things that look like paths (03b0de9)
    • [url] turns out that relative URLs and windows paths are killing it (0bee58e)
    • [url] Switch to 'url' crate, as correctness certainly is more important than compile times (da6ad48)
    • thanks clippy (a37c7a3)
    • [url] user and IPv4 parsing/simple validation (d1929ac)
    • [url] parse port number (bc8bd99)
    • try for leaner tests, but it does the opposite kind of :D (098f802)
    • refactor (4499a08)
    • refactor (42a1b51)
    • [url] the first green tests (a501bc1)
    • refactor (9c5fb91)
    • [url] infrastructure for nom errors, taken from git-object (0ae38ed)
    • [url] basic frame and first failing test (60aacf0)
    • Allow dual-licensing with Apache 2.0 (ea353eb)

Thanks Clippy

Clippy helped 3 times to make code idiomatic.

v0.0.0 (2020-08-13)

Commit Statistics

  • 1 commit contributed to the release.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' where seen in commit messages

Commit Details

view details
  • Uncategorized