@@ -28,6 +28,7 @@ GitVersion.Common.IRepositoryStore.FindMergeBase(GitVersion.Git.IBranch? branch,
2828GitVersion.Common.IRepositoryStore.FindMergeBase(GitVersion.Git.ICommit! commit, GitVersion.Git.ICommit! mainlineTip) -> GitVersion.Git.ICommit?
2929GitVersion.Common.IRepositoryStore.GetBranchesContainingCommit(GitVersion.Git.ICommit! commit, System.Collections.Generic.IEnumerable<GitVersion.Git.IBranch!>? branches = null, bool onlyTrackedBranches = false) -> System.Collections.Generic.IEnumerable<GitVersion.Git.IBranch!>!
3030GitVersion.Common.IRepositoryStore.GetCommitLog(GitVersion.Git.ICommit? baseVersionSource, GitVersion.Git.ICommit! currentCommit, GitVersion.Configuration.IIgnoreConfiguration! ignore) -> System.Collections.Generic.IReadOnlyList<GitVersion.Git.ICommit!>!
31+ GitVersion.Common.IRepositoryStore.GetCommitsReacheableFrom(GitVersion.Git.ICommit! commit, GitVersion.Git.IBranch! branch) -> System.Collections.Generic.IReadOnlyList<GitVersion.Git.ICommit!>!
3132GitVersion.Common.IRepositoryStore.GetCommitsReacheableFromHead(GitVersion.Git.ICommit? headCommit, GitVersion.Configuration.IIgnoreConfiguration! ignore) -> System.Collections.Generic.IReadOnlyList<GitVersion.Git.ICommit!>!
3233GitVersion.Common.IRepositoryStore.GetCurrentCommit(GitVersion.Git.IBranch! currentBranch, string? commitId, GitVersion.Configuration.IIgnoreConfiguration! ignore) -> GitVersion.Git.ICommit?
3334GitVersion.Common.IRepositoryStore.GetForwardMerge(GitVersion.Git.ICommit? commitToFindCommonBase, GitVersion.Git.ICommit? findMergeBase) -> GitVersion.Git.ICommit?
@@ -220,8 +221,10 @@ GitVersion.Git.IBranchCollection.this[string! name].get -> GitVersion.Git.IBranc
220221GitVersion.Git.IBranchCollection.UpdateTrackedBranch(GitVersion.Git.IBranch! branch, string! remoteTrackingReferenceName) -> void
221222GitVersion.Git.ICommit
222223GitVersion.Git.ICommit.DiffPaths.get -> System.Collections.Generic.IReadOnlyList<string!>!
224+ GitVersion.Git.ICommit.Id.get -> GitVersion.Git.IObjectId!
223225GitVersion.Git.ICommit.Message.get -> string!
224226GitVersion.Git.ICommit.Parents.get -> System.Collections.Generic.IReadOnlyList<GitVersion.Git.ICommit!>!
227+ GitVersion.Git.ICommit.Sha.get -> string!
225228GitVersion.Git.ICommit.When.get -> System.DateTimeOffset
226229GitVersion.Git.ICommitCollection
227230GitVersion.Git.ICommitCollection.GetCommitsPriorTo(System.DateTimeOffset olderThan) -> System.Collections.Generic.IEnumerable<GitVersion.Git.ICommit!>!
@@ -235,6 +238,7 @@ GitVersion.Git.IGitRepository.Head.get -> GitVersion.Git.IBranch!
235238GitVersion.Git.IGitRepository.IsHeadDetached.get -> bool
236239GitVersion.Git.IGitRepository.IsShallow.get -> bool
237240GitVersion.Git.IGitRepository.Path.get -> string!
241+ GitVersion.Git.IGitRepository.References.get -> GitVersion.Git.IReferenceCollection!
238242GitVersion.Git.IGitRepository.Remotes.get -> GitVersion.Git.IRemoteCollection!
239243GitVersion.Git.IGitRepository.Tags.get -> GitVersion.Git.ITagCollection!
240244GitVersion.Git.IGitRepository.UncommittedChangesCount() -> int
@@ -364,6 +368,7 @@ GitVersion.IGitPreparer.Prepare() -> void
364368GitVersion.IGitVersionCalculateTool
365369GitVersion.IGitVersionCalculateTool.CalculateVersionVariables() -> GitVersion.OutputVariables.GitVersionVariables!
366370GitVersion.IGitVersionContextFactory
371+ GitVersion.IGitVersionContextFactory.Create() -> GitVersion.GitVersionContext!
367372GitVersion.IGitVersionModule
368373GitVersion.IGitVersionModule.FindAllDerivedTypes<T>(System.Reflection.Assembly? assembly) -> System.Collections.Generic.IEnumerable<System.Type!>!
369374GitVersion.IGitVersionModule.RegisterTypes(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void
0 commit comments