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

build(deps): bump gix from 0.48.0 to 0.55.0 #7863

Merged
merged 3 commits into from
Oct 16, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 8, 2023

Bumps gix from 0.48.0 to 0.51.0.

Release notes

Sourced from gix's releases.

gix v0.51.0

This is mostly a bug-fix release with many improvements for fetching, along with more forgiving commit parsing.

New Features

  • Add Reference::follow() as a way to peel symbolic refs step by step.

Bug Fixes (BREAKING)

  • handle symbolic ref updates far more gracefully and with more logical consistency. Previously, refspecs couldn't be used to update sybolic references locally, particularly because the logic to do so correctly isn't trivial and git itself also seems to cover only the most common cases.

    However, the logic now changed so that remote updates will only be rejected if

    • fast-forward rules are violated
  • the local ref is currently checked out
  • existing refs would not become 'unborn', i.e. point to a reference that doesn't exist and won't be created due to ref-specs

Commit Statistics

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

Commit Details

  • Uncategorized
    • Prepare additional changelogs (db63815)
    • Prepare changelogs (e4d2890)
    • Merge branch 'fixes-and-improvements' (f8b1f55)
    • Handle symbolic ref updates far more gracefully and with more logical consistency. (74ce863)
    • Adapt to changes in gix-protocol (df81076)
    • Add Reference::follow() as a way to peel symbolic refs step by step. (d9e551b)

gix-odb v0.50.2

A maintenance release without user-facing changes.

Commit Statistics

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

... (truncated)

Commits
  • 231ac1c Release gix-actor v0.24.2, gix-object v0.33.2, gix-ref v0.33.3, gix-config v0...
  • db63815 prepare additional changelogs
  • 422747d Merge branch 'decathorpe/main'
  • e4d2890 prepare changelogs
  • f8b1f55 Merge branch 'fixes-and-improvements'
  • 7f7353e gix-object: fix test for struct size for 32-bit architectures
  • d1f9c63 feat: add fetch::Arguments::add_feature() for unconditional additions of ar...
  • 090357e add note go ODB initialization in preparation for dealing with many small packs.
  • 7611fa4 Merge branch 'EmbarkStudios/main'
  • 82ae37d fix: don't panic during checkouts when submodules or sparse directories are e...
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added A-dependencies Area: Dependency rust Pull requests that update Rust code labels Aug 8, 2023
@gabydd
Copy link
Member

gabydd commented Aug 8, 2023

ah we need to pin time to 0.3.23 because they did an msrv bump before the 0.3.24 release: time-rs/time@d52798e time is pinned to 0.3.23 in gitoxide I guess that doesn't get propagated here

@the-mikedavis the-mikedavis force-pushed the dependabot/cargo/gix-0.51.0 branch from 6ccb7a4 to 2bf53da Compare August 9, 2023 01:25
pascalkuthe
pascalkuthe previously approved these changes Aug 9, 2023
Copy link
Member

@pascalkuthe pascalkuthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for taking care of this @the-mikedavis and @gabydd

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 28, 2023

A newer version of gix exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@blinxen
Copy link
Contributor

blinxen commented Oct 15, 2023

Just tested version 0.55.0 locally (cargo test --all + some manual tests) and you be able to update to 0.55.0 without any changes, besides the ones you already made.

Is there any way this can get merged before the next release? Or is it too late at this point?

dependabot bot and others added 3 commits October 15, 2023 21:47
Bumps [gix](https://github.com/Byron/gitoxide) from 0.48.0 to 0.51.0.
- [Release notes](https://github.com/Byron/gitoxide/releases)
- [Changelog](https://github.com/Byron/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-v0.48.0...gix-v0.51.0)

---
updated-dependencies:
- dependency-name: gix
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Gabriel Dinner-David <[email protected]>
@pascalkuthe pascalkuthe force-pushed the dependabot/cargo/gix-0.51.0 branch from 2bf53da to 17c7233 Compare October 15, 2023 20:23
@pascalkuthe pascalkuthe changed the title build(deps): bump gix from 0.48.0 to 0.51.0 build(deps): bump gix from 0.48.0 to 0.55.0 Oct 15, 2023
Copy link
Member

@pascalkuthe pascalkuthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rebased on master and bumped to 0.55. I think it would be good to merge this before release

@pascalkuthe pascalkuthe requested a review from archseer October 15, 2023 21:08
@archseer archseer merged commit 7c98b1c into master Oct 16, 2023
@archseer archseer deleted the dependabot/cargo/gix-0.51.0 branch October 16, 2023 03:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: Dependency rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants