Sean Killeen
57fe2ce193
Add repository topics support ( #2246 )
2021-02-25 10:40:25 -04:00
dependabot[bot]
2e5fb68518
Bump Cake.Coverlet from 2.5.1 to 2.5.4 in /build ( #2305 )
...
Bumps [Cake.Coverlet](https://github.com/romanx/Cake.Coverlet ) from 2.5.1 to 2.5.4.
- [Release notes](https://github.com/romanx/Cake.Coverlet/releases )
- [Commits](https://github.com/romanx/Cake.Coverlet/compare/v2.5.1...v2.5.4 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-22 08:23:51 -04:00
Brendan Forster
618215cf7e
restore 3.1.x for publish script
v0.50.0
2021-02-21 18:57:48 -04:00
Phil Haack
375c20e49a
Move the build to .net 5 ( #2294 )
...
* Move the build to .net 5
.NET 5 is fine for building projects that target older versions of .NET. This also should fix the AppVeyor build which fails because the latest `coverlet.console` only supports .NET 5.
* Some things need .NET core 3.1 available
Co-authored-by: Brendan Forster <github@brendanforster.com >
2021-02-21 18:48:53 -04:00
Ivan Josipovic
6105a9deaf
preview support for repository visibility ( #2217 )
2021-02-21 18:38:00 -04:00
Phil Haack
e40c792e27
Change Payload to a Dictionary<string, string> ( #2303 )
...
When serializing the `NewDeployment` type, the `Payload` is serialized as an escaped string because JSON.NET doesn't know it's meant to be JSON.
This causes a problem when you call the API because the Payload is supposed to be a JSON dictionary that's just part of the overall payload. It's not supposed to be an escaped string.
That's why the JSON deserializer fails on it. Not only that, any deployments created using the current Octokit.net will create an invalid payload.
This PR fixes it by changing the type of `Payload` to a dictionary. THIS IS A BREAKING CHANGE, but the old behavior was broken so it forces a new correct behavior.
Fixes #2250
2021-02-21 17:11:51 -04:00
dependabot[bot]
8b0fb13685
Bump Codecov from 1.12.3 to 1.12.4 in /build ( #2285 )
...
* Bump Codecov from 1.12.3 to 1.12.4 in /build
Bumps [Codecov](https://github.com/codecov/codecov-exe ) from 1.12.3 to 1.12.4.
- [Release notes](https://github.com/codecov/codecov-exe/releases )
- [Changelog](https://github.com/codecov/codecov-exe/blob/master/Changelog.md )
- [Commits](https://github.com/codecov/codecov-exe/compare/1.12.3...1.12.4 )
Signed-off-by: dependabot[bot] <support@github.com >
* fix path to codecov executable
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brendan Forster <github@brendanforster.com >
2021-02-21 17:10:51 -04:00
Kato Stølen
4fbbe4ca2c
Add cancellation token support for release assets uploading ( #2267 )
2021-02-21 17:08:30 -04:00
dependabot[bot]
9e2618f6d1
Bump Microsoft.NET.Test.Sdk from 16.8.0 to 16.8.3 ( #2276 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 16.8.0 to 16.8.3.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Commits](https://github.com/microsoft/vstest/compare/v16.8.0...v16.8.3 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-13 17:55:15 -04:00
dependabot[bot]
a28002a8df
Bump Cake.Codecov from 0.9.1 to 1.0.0 in /build ( #2301 )
...
Bumps [Cake.Codecov](https://github.com/cake-contrib/Cake.Codecov ) from 0.9.1 to 1.0.0.
- [Release notes](https://github.com/cake-contrib/Cake.Codecov/releases )
- [Changelog](https://github.com/cake-contrib/Cake.Codecov/blob/develop/GitReleaseManager.yaml )
- [Commits](https://github.com/cake-contrib/Cake.Codecov/compare/0.9.1...1.0.0 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-13 17:54:35 -04:00
Brendan Forster
66f0676dc3
enable windows target for building on Actions ( #2302 )
...
* enable windows target for building
* workaround IGNORE_NORMALISATION_GIT_HEAD_MOVE reported by GitVersion
2021-02-13 17:36:16 -04:00
Brendan Forster
9cbe8acd1f
tidy up unused dependabot ignore rule ( #2300 )
v0.49.0
2021-02-13 16:54:55 -04:00
Brendan Forster
8124bd4e80
tidy up workflow to address new restrictions ( #2299 )
2021-02-13 16:53:15 -04:00
Samantha Houts
7400420c92
Add "project" to the IssueNoMetadataQualifier ( #2227 )
...
Allows you to search for issues with no project.
2021-02-13 16:34:36 -04:00
Fredi Kats
67555533e3
feat: add missed props for organization ( #2239 )
2021-02-13 16:34:02 -04:00
Miguel Ventura
36829cba3a
Fix property types in PullRequestCommit ( #2224 )
...
PullRequestCommit Author and Committer fields were mistakenly typed with
Committer when they should be of type User.
Previously the types of properties were:
* `PullRequestCommit.Author/Committer`: `Committer`
* `Commit.Author/Committer`: `Committer`
Correct types should be:
* `PullRequestCommit.Author/Committer`: `User`
* `Commit.Author/Committer`: `Committer`
These fields always fail to deserialize in the API calls but produce no
errors, only objects with default values.
2021-02-13 16:33:35 -04:00
Sam Cackett
46787d2cb8
Add DeleteBranchOnMerge option for repositories ( #2268 )
2021-02-13 16:29:09 -04:00
Eric Carlson
20549430e5
Add support for multi users and orgs in SearchCodeRequest ( #2291 )
2021-02-13 16:28:32 -04:00
Bipin Paul
4ca8ea03af
Update README.md ( #2279 )
...
Update supported .NET Framework and .NET Standard text
2021-02-13 15:57:09 -04:00
David Nelson
b5fb60bba8
Update 'up-for-grabs' link in CONSTRIBUTING.md ( #2280 )
...
The previous link redirected to https://github.com/octokit/octokit.net/issues?q=label%3Aup-for-grabs , which would also show closed issues; the new link only shows open issues.
2021-02-13 15:53:39 -04:00
Phil Haack
dec5e6d88a
Update the README to link to NuGet ( #2288 )
2021-02-13 15:50:04 -04:00
Mattias Karlsson
70a380a4d0
(build) Updated Cake Frosting to version 1.0.0 ( #2289 )
2021-02-13 15:40:41 -04:00
Gregor Martynus
24a1628b84
Revert "build(dependabot): disable by removing configuration"
...
This reverts commit f504167f4a .
Sorry I missed to filter out this repository when I run my script :(
2020-12-16 12:12:59 -08:00
Gregor Martynus
f504167f4a
build(dependabot): disable by removing configuration
...
I'm taking a break. I'll enable automated dependency updates when I'm back in 2021. But probably not with Dependabot, but Renovate.
2020-12-16 12:06:02 -08:00
dependabot[bot]
a7b6ab3295
Bump Microsoft.NET.Test.Sdk from 16.7.1 to 16.8.0 ( #2269 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 16.7.1 to 16.8.0.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Commits](https://github.com/microsoft/vstest/compare/v16.7.1...v16.8.0 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-11-09 08:55:01 -04:00
dependabot[bot]
e6ea264f9e
Bump Codecov from 1.10.0 to 1.12.3 in /build ( #2245 )
...
* Bump Codecov from 1.10.0 to 1.12.3 in /build
Bumps [Codecov](https://github.com/codecov/codecov-exe ) from 1.10.0 to 1.12.3.
- [Release notes](https://github.com/codecov/codecov-exe/releases )
- [Changelog](https://github.com/codecov/codecov-exe/blob/master/Changelog.md )
- [Commits](https://github.com/codecov/codecov-exe/compare/1.10.0...1.12.3 )
Signed-off-by: dependabot[bot] <support@github.com >
2020-10-06 10:13:26 -03:00
Colby Williams
17c31d1b19
Add HtmlUrl property to Team and Project models ( #2249 )
2020-10-06 10:02:29 -03:00
Jose de Jesus Medina
df77be29b1
Add license to repository search ( #2258 )
2020-10-06 09:50:40 -03:00
Alexander Salamatov
bd85dd9a4e
Update git-database.md ( #2247 )
2020-10-06 09:50:22 -03:00
dependabot[bot]
6a0d404263
Bump Cake.Frosting from 0.38.4 to 0.38.5 in /build ( #2256 )
...
Bumps [Cake.Frosting](https://github.com/cake-build/frosting ) from 0.38.4 to 0.38.5.
- [Release notes](https://github.com/cake-build/frosting/releases )
- [Changelog](https://github.com/cake-build/frosting/blob/develop/GitReleaseManager.yaml )
- [Commits](https://github.com/cake-build/frosting/compare/v0.38.4...v0.38.5 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-06 09:47:58 -03:00
Jose de Jesus Medina
66a6781584
spellcheck round 2 ( #2259 )
2020-10-06 09:47:36 -03:00
dependabot[bot]
961e0eab36
Bump Cake.Frosting from 0.38.2 to 0.38.4 in /build ( #2230 )
...
Bumps [Cake.Frosting](https://github.com/cake-build/frosting ) from 0.38.2 to 0.38.4.
- [Release notes](https://github.com/cake-build/frosting/releases )
- [Changelog](https://github.com/cake-build/frosting/blob/develop/GitReleaseManager.yaml )
- [Commits](https://github.com/cake-build/frosting/compare/v0.38.2...v0.38.4 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-07 18:42:42 -03:00
dependabot[bot]
501ef958ed
Bump Cake.Coverlet from 2.4.2 to 2.5.1 in /build ( #2244 )
...
Bumps [Cake.Coverlet](https://github.com/romanx/Cake.Coverlet ) from 2.4.2 to 2.5.1.
- [Release notes](https://github.com/romanx/Cake.Coverlet/releases )
- [Commits](https://github.com/romanx/Cake.Coverlet/compare/v2.4.2...v2.5.1 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-07 18:34:49 -03:00
dependabot[bot]
9c98efa53c
Bump xunit.runner.visualstudio from 2.4.2 to 2.4.3 ( #2237 )
...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit ) from 2.4.2 to 2.4.3.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases )
- [Commits](https://github.com/xunit/visualstudio.xunit/compare/v2.4.2...v2.4.3 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-08-24 11:45:54 -03:00
dependabot[bot]
d046773cf1
Bump Microsoft.NET.Test.Sdk from 16.6.1 to 16.7.1 ( #2241 )
...
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest ) from 16.6.1 to 16.7.1.
- [Release notes](https://github.com/microsoft/vstest/releases )
- [Commits](https://github.com/microsoft/vstest/compare/v16.6.1...v16.7.1 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-08-24 11:36:41 -03:00
dependabot[bot]
3f76a25da2
Bump Cake.Codecov from 0.8.0 to 0.9.1 in /build ( #2229 )
...
Bumps [Cake.Codecov](https://github.com/cake-contrib/Cake.Codecov ) from 0.8.0 to 0.9.1.
- [Release notes](https://github.com/cake-contrib/Cake.Codecov/releases )
- [Changelog](https://github.com/cake-contrib/Cake.Codecov/blob/develop/GitReleaseManager.yaml )
- [Commits](https://github.com/cake-contrib/Cake.Codecov/compare/0.8.0...0.9.1 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-07-27 09:55:31 -03:00
Hannah Kiekens
946b0872b7
Fix documentation: change all master branch references to main ( #2220 )
2020-07-07 15:01:55 -03:00
dependabot[bot]
9a234930c9
Bump Cake.Frosting from 0.37.0 to 0.38.2 in /build ( #2218 )
...
Bumps [Cake.Frosting](https://github.com/cake-build/frosting ) from 0.37.0 to 0.38.2.
- [Release notes](https://github.com/cake-build/frosting/releases )
- [Changelog](https://github.com/cake-build/frosting/blob/develop/GitReleaseManager.yaml )
- [Commits](https://github.com/cake-build/frosting/compare/v0.37.0...v0.38.2 )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-06-29 09:13:20 -03:00
dependabot[bot]
3bb1d8b175
Bump NSubstitute from 4.2.1 to 4.2.2 ( #2213 )
...
Bumps NSubstitute from 4.2.1 to 4.2.2.
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-06-15 08:37:16 -03:00
dependabot-preview[bot]
6d00f67604
Create Dependabot config file ( #2209 )
...
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-06-11 21:19:17 -03:00
Brendan Forster
ad5a078a1b
maybe this?
2020-06-09 18:46:18 -03:00
Brendan Forster
4fce31dbf5
and docs too
2020-06-09 18:40:14 -03:00
Brendan Forster
e74bba0f98
update versioning example
2020-06-09 18:39:05 -03:00
Brendan Forster
88f47c7773
check new branch in config
2020-06-09 18:35:52 -03:00
Brendan Forster
4865d31970
and one more CI change
2020-06-09 18:31:49 -03:00
Brendan Forster
fcc32cd76d
update CI scripts
2020-06-09 18:26:46 -03:00
Brendan Forster
08e7c14ced
drop unused code related to PORTABLE flag ( #2202 )
2020-06-08 08:33:27 -03:00
Brendan Forster
d02a230172
some tidy up before cutting the release ( #2201 )
v0.48.0
2020-06-07 18:25:51 -03:00
Fredrik Høisæther Rasch
af74ae8e20
Add Server Time Difference to ApiInfo ( #2196 )
2020-06-07 18:25:34 -03:00
Martin Alex Philip Dawson
8d3e7b3c2c
add support for organization web hooks ( #1884 )
2020-06-07 16:53:20 -03:00