From ccc6a662002a94b1d74c46c717f2156551816a89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 07:51:29 -0400 Subject: [PATCH 1/6] Bump YamlDotNet from 13.4.0 to 13.5.2 (#536) Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.4.0 to 13.5.2. - [Release notes](https://github.com/aaubry/YamlDotNet/releases) - [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.4.0...v13.5.2) --- updated-dependencies: - dependency-name: YamlDotNet dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- NGitLab.Mock/NGitLab.Mock.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NGitLab.Mock/NGitLab.Mock.csproj b/NGitLab.Mock/NGitLab.Mock.csproj index d44f59d7..e4c43379 100644 --- a/NGitLab.Mock/NGitLab.Mock.csproj +++ b/NGitLab.Mock/NGitLab.Mock.csproj @@ -13,7 +13,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + From 20e57d3de99b61478951d7dd6e4b9f749f87c893 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 08:37:56 -0400 Subject: [PATCH 2/6] Bump Meziantou.Analyzer from 2.0.91 to 2.0.92 (#535) Bumps [Meziantou.Analyzer](https://github.com/meziantou/Meziantou.Analyzer) from 2.0.91 to 2.0.92. - [Release notes](https://github.com/meziantou/Meziantou.Analyzer/releases) - [Commits](https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.91...2.0.92) --- updated-dependencies: - dependency-name: Meziantou.Analyzer dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index e68ea864..e1aefdc3 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -42,7 +42,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 63095322980accf7301ac6901c0fbcc9b5391e80 Mon Sep 17 00:00:00 2001 From: PM Extra Date: Fri, 13 Oct 2023 22:33:21 +0800 Subject: [PATCH 3/6] Support setting multiple assignees for issues (#541) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gérald Barré --- NGitLab/Models/IssueCreate.cs | 3 +++ NGitLab/Models/IssueEdit.cs | 3 +++ NGitLab/PublicAPI.Unshipped.txt | 2 ++ 3 files changed, 8 insertions(+) diff --git a/NGitLab/Models/IssueCreate.cs b/NGitLab/Models/IssueCreate.cs index 92474df2..b737828d 100644 --- a/NGitLab/Models/IssueCreate.cs +++ b/NGitLab/Models/IssueCreate.cs @@ -25,6 +25,9 @@ public class IssueCreate [JsonPropertyName("assignee_id")] public int? AssigneeId; + [JsonPropertyName("assignee_ids")] + public int[] AssigneeIds; + [JsonPropertyName("milestone_id")] public int? MileStoneId; diff --git a/NGitLab/Models/IssueEdit.cs b/NGitLab/Models/IssueEdit.cs index a3ee32c3..78f24bfd 100644 --- a/NGitLab/Models/IssueEdit.cs +++ b/NGitLab/Models/IssueEdit.cs @@ -28,6 +28,9 @@ public class IssueEdit [JsonPropertyName("assignee_id")] public int? AssigneeId; + [JsonPropertyName("assignee_ids")] + public int[] AssigneeIds; + [JsonPropertyName("milestone_id")] public int? MilestoneId; diff --git a/NGitLab/PublicAPI.Unshipped.txt b/NGitLab/PublicAPI.Unshipped.txt index 4f9b3455..d184794c 100644 --- a/NGitLab/PublicAPI.Unshipped.txt +++ b/NGitLab/PublicAPI.Unshipped.txt @@ -1817,6 +1817,7 @@ NGitLab.Models.IssueClone.WithNotes.get -> bool NGitLab.Models.IssueClone.WithNotes.set -> void NGitLab.Models.IssueCreate NGitLab.Models.IssueCreate.AssigneeId -> int? +NGitLab.Models.IssueCreate.AssigneeIds -> int[] NGitLab.Models.IssueCreate.Confidential -> bool NGitLab.Models.IssueCreate.Description -> string NGitLab.Models.IssueCreate.DueDate -> System.DateTime? @@ -1830,6 +1831,7 @@ NGitLab.Models.IssueCreate.ProjectId.set -> void NGitLab.Models.IssueCreate.Title -> string NGitLab.Models.IssueEdit NGitLab.Models.IssueEdit.AssigneeId -> int? +NGitLab.Models.IssueEdit.AssigneeIds -> int[] NGitLab.Models.IssueEdit.Description -> string NGitLab.Models.IssueEdit.DueDate -> System.DateTime? NGitLab.Models.IssueEdit.EpicId -> int? From 1834ec9fad19541687600c91a68f2ef32de5fc77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 07:17:04 -0400 Subject: [PATCH 4/6] Bump Meziantou.Analyzer from 2.0.92 to 2.0.93 (#545) Bumps [Meziantou.Analyzer](https://github.com/meziantou/Meziantou.Analyzer) from 2.0.92 to 2.0.93. - [Release notes](https://github.com/meziantou/Meziantou.Analyzer/releases) - [Commits](https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.92...2.0.93) --- updated-dependencies: - dependency-name: Meziantou.Analyzer dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index e1aefdc3..aaf8a3a5 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -42,7 +42,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From ad6594f5f2ee816d78050c8c4c63aa9104202d7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 07:50:48 -0400 Subject: [PATCH 5/6] Bump YamlDotNet from 13.5.2 to 13.7.1 (#544) Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.5.2 to 13.7.1. - [Release notes](https://github.com/aaubry/YamlDotNet/releases) - [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.5.2...v13.7.1) --- updated-dependencies: - dependency-name: YamlDotNet dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- NGitLab.Mock/NGitLab.Mock.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NGitLab.Mock/NGitLab.Mock.csproj b/NGitLab.Mock/NGitLab.Mock.csproj index e4c43379..e78713ae 100644 --- a/NGitLab.Mock/NGitLab.Mock.csproj +++ b/NGitLab.Mock/NGitLab.Mock.csproj @@ -13,7 +13,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + From 8ba3bc68520562804f046072baec1f4c66628e23 Mon Sep 17 00:00:00 2001 From: PM Extra Date: Mon, 16 Oct 2023 20:17:41 +0800 Subject: [PATCH 6/6] Add missing attribute `user_notes_count` to merge requests (#542) --- NGitLab/Models/MergeRequest.cs | 3 +++ NGitLab/PublicAPI.Unshipped.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/NGitLab/Models/MergeRequest.cs b/NGitLab/Models/MergeRequest.cs index ff8095f8..93437283 100644 --- a/NGitLab/Models/MergeRequest.cs +++ b/NGitLab/Models/MergeRequest.cs @@ -32,6 +32,9 @@ public class MergeRequest [JsonPropertyName("description")] public string Description; + [JsonPropertyName("user_notes_count")] + public int UserNotesCount; + [JsonPropertyName("downvotes")] public int Downvotes; diff --git a/NGitLab/PublicAPI.Unshipped.txt b/NGitLab/PublicAPI.Unshipped.txt index d184794c..c4bae40a 100644 --- a/NGitLab/PublicAPI.Unshipped.txt +++ b/NGitLab/PublicAPI.Unshipped.txt @@ -2118,6 +2118,7 @@ NGitLab.Models.MergeRequest.UpdatedAt -> System.DateTime NGitLab.Models.MergeRequest.Upvotes -> int NGitLab.Models.MergeRequest.User.get -> NGitLab.Models.MergeRequestUserInfo NGitLab.Models.MergeRequest.User.set -> void +NGitLab.Models.MergeRequest.UserNotesCount -> int NGitLab.Models.MergeRequest.WebUrl -> string NGitLab.Models.MergeRequest.WorkInProgress -> bool? NGitLab.Models.MergeRequestAccept