Features
- Timeline preview API support - #1435 via @alfhenrik
- Initial groundwork for Branches API - #1437 via @ryangribble
- Base branch can now be updated when updating a pull request - #1450 via @ryangribble
- Enhancements to Protected Branches preview API - #1441 via @ryangribble
Fixes
- Redirect timeout when repository renamed - #1411 via @maddin2016
Breaking Changes
The new Branches client added in #1437 means that existing methods on I(Observable)RepositoryClient are now marked as obsolete. Please update your usages to the new endpoints as these will be removed in a future release:
client.Repository.GetBranch()
=>client.Repository.Branch.Get()
client.Repository.GetAllBranches()
=>client.Repository.Branch.GetAll()
client.Repository.EditBranch()
=>client.Repository.Branch.Edit()
There is also a change in how branch protection works with the API, due to upstream changes. The existing methods have been marked as obsolete, but for the sake of brevity here are the details about what you should be doing today.
The process for inspecting branch protection is now two steps:
-
first, check the branch returned by
client.Repository.Branch.Get()
orclient.Repository.Branch.GetAll()
has it'sProtected
property set totrue
. -
then, a call to
client.Repository.Branch.GetBranchProtection()
will return the details about the protection settings for the given branch. If no protection is set for this branch, you will received aHTTP 404
response.
Features
Due to a programming error in the tool to generate these release notes, additional features were not properly documented for the previous release:
- Reactions preview API support for issues, issue comments, commit comments and PR comments - #1335, #1341, #1405 via @maddin2016, @alfhenrik
- Repository Invitation preview API support - #1410 via @maddin2016
- Added new fields for signature verification to Git Data Commit API - #1398 via @Sarmad93
No additional code changes have been made to this release.
Features
This release adds support across Octokit.net for providing the repository Id rather than a name/owner pair. The repository Id does not change when transferring ownership of a repository, and is more robust for API callers. This work was lead by @dampir as part of Google Summer of Code 2016.
- Added new fields for Deployment and DeploymentStatus preview API - #1365 via @ErikSchierboom
- Added new fields for signature verification to Git Data Tag API - #1420 via @Sarmad93
- Added new fields for GitHub Pages preview API - #1421 via @dampir
Fixes
- Fix serialization of enum value attributes - #1402 via @maddin2016
- Fix searching for repositories with underscore in name - #1418 via @dsplaisted, @shiftkey
Other
- Clarified obsolete warnings for Protected Branch preview API - #1428 via @ryangribble
- Remove Obsolete items - #1422 via @ryangribble
Breaking Changes
After a long grace period, #1422 has removed these obsoleted members. These features exist in other parts of the API surface:
I(Observable)GitHubClient.Release
I(Observable)GitHubClient.Notification
I(Observable)GitHubClient.GitDatabase
I(Observable)GitHubClient.SshKey
I(Observable)GitHubClient.Repository.RepositoryComments
I(Observable)GitHubClient.Repository.CommitStatus
I(Observable)GitHubClient.Repository.RepoCollaborators
I(Observable)GitHubClient.Repository.Commits
This method is no longer supported through the API and has been removed from Octokit.net.:
I(Observable)GitHubClient.Authorization.RevokeAllApplicationAuthentications()
Features
The big focus for this release is pagination support. This lets the caller
control how much data to retrieve for GetAll*
endpoints throughout Octokit.
This was a team effort to apply this across the entire codebase, with
contributions from @dampir, @devkhan, @prayankmathur, @SamTheDev and @shiftkey.
For more information about how to use pagination in your projects refer to the documentation: http://octokitnet.readthedocs.io/en/latest/extensibility/#pagination
- Add Migrations preview API - #1141 via @devkhan
- Add Issue Lock/Unlock functionality - #1185 via @prayankmathur
- Added Commit Reference SHA-1 API - #1195 via @ryangribble
- Add additional parameters to
SearchIssuesRequest
- #1228 via @ryangribble - Add
Importer
property to Meta endpoint - #1235 via @ryangribble - Raise HTTP 451 exception when repository has DMCA notice - #1239 via @devkhan
- Add Merge and Squash preview API - #1245 via @Sarmad93
- Add additional methods to
IEventsClient
- #1288 via @drasticactions - Add Organization Permissions preview API - #1342 via @ryangribble
- Add GPG Keys preview API - #1343 via @alfhenrik
Fixes
- Renamed
IUserKeysClient.GetAll()
toIUserKeysClient.GetAllForCurrent()
- #1139 via @M-Zuber - Add
ItemStateFilter
enum to differentiate between search and list endpoints - #1140 via @prayankmathur RepositoriesClient.GetAllPublic()
fails for Enterprise instanes due to URI structure - #1204 via @ryangribbleConfigureAwait(false)
usages added, eliminating deadlocks - #1248 via @shiftkey- Renamed
CompareResult.MergedBaseCommit
to fix serialization issue - #1265 via @kivancmuslu - Activity Feed now returns issues and repository events - #1288 via @drasticactions
- Add
Repository
property toIssue
response - #1292 via @M-Zuber SearchCodeRequest
now supports searching without specifying a term - #1338 via @dsplaisted- Add required Permission parameter to team management APIs - #1347 via @ryangribble
- Add
ClosedBy
property toIssue
- #1353 via @maddin2016
Other
- Deleting now-obsolete code - #1224 via @M-Zuber
- Centralize and cleanup the
Uri
s created in Octokit - #1287, #1290 via @dampir - Updated documentation links - #1289 via @radu-matei, #1250 via @SamTheDev
Breaking Changes
-
IUserKeysClient.GetAll()
was named incorrectly when it was originally implemented and only works for the current user's keys. Update all usages toGetAllForCurrent()
. -
CompareResult.MergedBaseCommit
was never deserialized correctly, and has been marked as obsolete. You should useCompareResult.MergeBaseCommit
instead (note the lack of ad
). -
IEventsClient.GetAllForRepository
was incorrectly retrieving issue events before this release. Use the newIEventsClient.GetAllIssuesForRepository
method if you still require issues, or continue to useIEventsClient.GetAllForRepository
if you require all repository events. -
IUsersClient
has a property namedKeys
which has been renamed in the GitHub API documentation - Octokit has added the nameGitSshKey
to reflect this change, andKeys
will be removed in a later release.
Features
- Add
GetLatest
endpoint for Releases API - #975 via @chenjiaming93 - Add Enterprise License and Organization APIs - #1073 via @ryangribble
- Add Locked property to
PullRequest
- #1089 via @M-Zuber - Add Enterprise Search Indexing API - #1095 via @ryangribble
- Add support for
Visibility
andAffiliation
to repository search - #1096, #1132 via @Sarmad93, @AlexP11223 - Add Enterprise LDAP API - #1099 via @ryangribble
- Add
CreateBranch
extension methods to IReferencesClient - #1103 via @M-Zuber - Additional Enterprise methods on User Administration Client - #1108 via @ryangribble
- Complete
UserKeysClient
API - #1112 via @ryangribble RepositoryContentsClient
create, update and delete actions now specify branch - #1093 via @M-Zuber
Fixes
StatisticsClient
should not clobber /api/v3/ in path - #1085 via @shiftkey- Fix JSON deserialization of string containing hyphens to List property - #1094 via @ryangribble
- Incorrect reference passed to
RepositoryContentsClient.GetArchive
- #1113 via @michael-kokorin
Other
- Add failing integration test for Issue Search API - #1083 via @hahmed
- Add integration tests for
IReleasesClient.GetLatest
- #1090 via @M-Zuber - Remove extraneous Bcl .targets reference - #1100 via @shana
- Add proper syntax highlighting to exploring-pull-requests.md - #1117 via @tiesmaster
- Fix issue with optional parameters in .\script\configure-integration-tests - #1118 via @Anubhav10
- Update Issue creation sample code - #1131 via @AlexP11223
IJsonSerializer
not used insideConnection
- #1133 via @devkhan
Breaking Changes
ISshKeysClient
has a number of methods which at the time should have been
implemented in IUserKeysClient
- these methods are marked as obsolete and will
be removed in a future release:
ISshKeysClient.Get(int id)
ISshKeysClient.GetAll(string user)
ISshKeysClient.GetAllForCurrent()
ISshKeysClient.Create(SshKeyUpdate key)
ISshKeysClient.Update(int id, SshKeyUpdate key)
ISshKeysClient.Delete(int id)
- New: support for User Administration API (GitHub Enterprise) - #1068 via @paladique
- New: support for Admin Stats API (GitHub Enterprise) - - #1049 via @ryangribble
- New: support for Repository Pages API - #1061 via @M-Zuber
- New: get stargazer creation timestamps - #1060 via @daveaglick
- New: support for Protected Branches API - #996 via @ryangribble
- New: support for creating Personal Access Tokens - #990 via @alfhenrik
- Fixed:
Milestone
property added toPullRequest
response - #1075 via @Eilon - Fixed: Add member role filter to
OrganizationMembersClient.GetAll()
- #1072 via @ryangribble - Fixed:
Repository.Content.GetAllContents
now support the root of the repository - #1064 via @naveensrinivasan, @shiftkey - Fixed: added
Id
andLocked
toIssue
, addedCommitUrl
toIssueEvent
- #1039 via @gabrielweyer - Fixed: additional fields on
Release
andReleaseAsset
- #1009 via @gabrielweyer - Fixed:
ApiException
now includes JSON payload when.ToString()
- #974 via @asizikov
Breaking Changes:
As part of reaching 1.0 we went through to audit the current implementation
and identify areas that didn't align with our conventions. For this release,
we're marking the endpoints as [Obsolete]
and indicating the new location.
These will be cleaned up in the next release:
IGitHubClient.Notifications
->IGitHubClient.Activity.Notifications
- #1019 via @M-ZuberIGitHubClient.Repository.CommitStatus
->IGitHubClient.Repository.Status
- #1043 via @RobPethickIGitHubClient.Repository.Commits
->IGitHubClient.Repository.Commit
- #1057 via @M-ZuberIGitHubClient.Repository.RepoCollaborators
->IGitHubClient.Repository.Collaborator
- #1040 via @M-ZuberIGitHubClient.Repository.RepositoryComments
->IGitHubClient.Repository.Comment
- #1044 via @M-ZuberIGitHubClient.Release
->IGitHubClient.Repository.Release
- #1058 via @RobPethickIGitHubClient.GitDatabase
->IGitHubClient.Git
- #1048 via @RobPethick
Other breaking changes:
-
a public
ApiExtensions.Get<T>
extension method was causing a bunch of tests to be written in a confusing way. This has been ported to an interface method onIApiConnection
but hopefully you're not referencing this method externally - see #1063 for more information. -
IRepositoryContentsClient.GetArchiveLink
is no longer correct, as the HTTP behaviour in Octokit was updated to follow redirects received from the server. See #986 for the last bits of cleanup. -
IRepositoryContentsClient.GetAllContents(string owner, string name, string path, string reference)
has been renamed toGetAllContentsByRef(string owner, string name, string path, string reference)
to prevent overlap with methods onIRepositoryContentsClient
which do not specify a path - and thus look at the root of the repository. -
IssueEventPayload
has two fields which are never populated from the API -Assignee
andLabel
- these are now removed. You should useIssue.Assignee
andIssue.Labels
instead. See #1039 for more details. -
PullRequest.MergeCommitSha
is marked as obsolete by the GitHub API - we are cleaning up the behaviour for determining whether a PR has been merged in #997 - see the PR for more information. -
IAuthorizationsClient.RevokeAllApplicationAuthentications
is no longer available through the GitHub API - this will be removed in the next release.
Shout outs
A lot of extra work went into this release, and I wanted to thank those people who helped out - without their efforts we wouldn't be at this point:
- @naveensrinivasan - for helping set up our Travis CI builds to test this on Mono - see #995 for the details
- @hahmed - for contributing a bunch of documentation around the Octokit search APIs - see #955, #954 and #951
- @JakesCode - for clarifying some documentation after he reported an issue - #1054
- @ryangribble - for helping get our GitHub Enterprise testing off the ground - #987
- @naveensrinivasan - for catching and addressing an issue with our LINQPad snippets - #987
- New:
NewRepositoryWebHook
helper class useful for creating web hooks - #917 via @alfhenrik - New: Overloads to the
GetArchive
method ofRepositoryContentsClient
that accept a timeout - #918 via @willsb - Improved: Added
EventsUrl
toIssue
- #901 via @alfhenrik - Improved: Added
Committer
andAuthor
to theGitHubCommit
object - #903 via @willsb - Improved: Made
EncodedContent
property ofRepositoryContent
public - #861 via @naveensrinivasan - Improved: Added ability to create deploy keys that are read only and can only be used to read repository contents and not write to them - #915 via @haacked
- Improved: Added
Content
property toNewTreeItem
to allow specifying content for a tree - #915 via @haacked - Improved: Added
Description
property toNewTeam
to allow specifying a description for a team - #915 via @haacked - Improved: Added
Description
property toOrganizationUpdate
to allow specifying a description for an organization - #915 via @haacked - Improved: Added
Before
property toNotificationsRequest
to find notifications updated before a specific time - #915 via @haacked - Improved: Renamed
SignatureResponse
toCommitter
and replacedCommitEntity
withCommitter
- #916 via @haacked - Improved: Added URLs with more information to the
PrivateRepositoryQuotaExceededException
- #929 via @elbaloo - Improved: The
Merge
method ofPullRequestsClient
now throws more specific exceptions when pull request is not mergeable - #976 via @elbaloo and @shiftkey - Fixed: Bug that prevented specifying a commit message for pull request merges - #915 via @haacked
- Fixed: Added
System
to required framework assemblies for thenet45
NuGet package - #919 via @adamralph - Fixed: Change the
HasIssues
property ofNewRepository
to be a nullable boolean because it's optional - #942 via @alfhenrik - Fixed: Bug that caused downloading release assets to fail because it didn't handle the
application/octet-stream
content type properly - #943 via @naveensrinivasan - Fixed: JSON serialization bug with unicode characters - #972 via @naveensrinivasan
Breaking Changes:
NewDeployment
constructor requires a ref as this is required for the API. It no longer has a default constructor.NewDeploymentStatus
constructor requires aDeploymentState
as this is required for the API. It no longer has a default constructor.- The
Name
property ofNewTeam
is now read only. It is specified via the constructor. - Renamed
SignatureResponse
toCommitter
and removesCommitEntity
, replacing it withCommitter
. - Changed the type of
HasIssues
property ofNewRepository
to be nullable.
- New: Implemented
GetMetadata
method ofIMiscellaneousClient
to retrieve information from the Meta endpoint -#892 via @haacked - Improved: Add missing
ClosedAt
property toMilestone
response - #890 via @geek0r - Fixed:
NullReferenceException
when retrieving contributors for an empty repository - #897 via @adamralph - Fixed: Bug that prevented release uploads and will unblock the entire F# ecosystem - #895 via @naveensrinivasan
- New:
IRepositoryContentsClient.GetAllContents
now has an overload to support specifying a reference - #730 via @goalie7960 - New: Support for retrieving rate limit information from
IMiscellaneousClient
- #848 via @Red-Folder - New: Use
GitHubClient.GetLastApiInfo()
to get API information for previous request - #855 via @Red-Folder, @khellang - New:
PreviousFileName
returned to show renamed files in commit - #871 via @CorinaCiocanea - Improved:
CommentUrl
returned onIssue
response - #884 via @naveensrinivasan - Improved: Issue and Code Search now accepts multiple repositories - #835 via @shiftkey
- Improved: Search now accepts a range of dates - #857 via @ChrisMissal
- Improved: Documentation on
Issue
response - #876 via @Eilon - Improved: Code Search now accepts
FileName
parameter - #864 via @fffej - Fixed:
GetQueuedContent
should return empty response for204 No Content
, instead of throwing - #862 via @haacked - Fixed:
TeamClient.AddMembership
sends correct parameter to server - #856 via @davidalpert - Obsolete:
Authorization
endpoint which does not require fingerprint - #878 via @niik
Breaking Changes:
- #835 has changed the
Repos
property forSearchIssuesRequest
andSearchCodeRequest
are now of typeRepositoryCollection
so that multiple repositories can be searched. - The workarounds removed in #878 were added initially to support transitioning, but now we enforce the use of a fingerprint. See https://developer.github.com/v3/oauth_authorizations/ for more details.
- New: Repository redirects are supported natively - #808 via @darrelmiller, @shiftkey
- Fixed: Support for searching repositories without a search term - #828 via @alexandrugyori
- Fixed: Added some missing Organization Teams methods - #795 via @phantomtypist, @shiftkey
- New: Added support for repository hooks and forks - #776 via @kristianhald, @johnduhart and @AndyCross
- Fixed: Merging a PR should permit specifying a SHA - #805 via @alfhenrik
- New: Added overload to
IRepositoryClient.GetAllPublic
specifying asince
parameter - #774 via @alfhenrik - New: Added
IGistsClient.GetAllCommits
andIGistsClient.GetAllForks
implementations - #542 via @haagenson, #794 via @shiftkey - New: Added
IRepositoryContentsClient.GetArchiveLink
for getting archived code - #765 via @alfhenrik - Fixed:
PullRequestFile
properties were not serialized correctly - #789 via @thedillonb - Fixed: Allow to download zip-attachments - #792 via @csware
- Fixed: renamed methods to follow
GetAll
convention - #771 via @alfhenrik - Fixed: helper functions and cleanup to make using Authorization API easier to consume - #786 via @haacked
Breaking Changes:
- As part of #771 there were many method which were returning collections
but the method name made it unclear. You might think that it wasn't much, but
you'd be wrong. So if you have a method that no longer compile,
it is likely that you need to set the prefix to
GetAll
to re-disocver that API. CommitComment.Position
is now a nullableint
to prevent serialization issues.
- New: added
PullRequest.Files
APIs - #752 via @alfhenrik - Fixed:
PullRequestRequest
now supportsSortDirection
andSortProperty
- #752 via @alfhenrik - Fixed:
Repository.Create
now enforces a repository name - #763 via @haacked - Fixed: corrected naming conventions for endpoints which return a list of results - #766 via @alfhenrik
- Deprecated:
Repository.GetReadme
andRepository.GetReadmeHtml
- #759 via @khellang
Breaking Changes:
NewRepository
constructor requires aname
parameterIRepositoriesClient.GetReadme
->IRepositoriesClient.Content.GetReadme
IRepositoriesClient.GetReadmeHtml
->IRepositoriesClient.Content.GetReadmeHtml
IFollowersClient.GetFollowingForCurrent
->IFollowersClient.GetAllFollowingForCurrent
IFollowersClient.GetFollowing
->IFollowersClient.GetAllFollowing
- New: added
MiscellaneousClient.GetGitIgnoreTemplates
andMiscellaneousClient.GetGitIgnoreTemplates
APIs - #753 via @haacked - New: added
MiscellaneousClient.GetLicenses
andMiscellaneousClient.GetLicense
preview APIs - #754 via @haacked - New: enhancements to
AuthorizationClient
- #731 via @alfhenrik - Fixed: handled
unsubscribe
type for Issue events - #751 via @darrencamp - Fixes: ensure response models define readonly interfaces - #755 via @khellang
- New: added
Repository.GetAllPublic
for searching public repositories - #691 via @rms81 - New: added filters to
Repository.GetAllForCurrent()
- #742 via @shiftkey - Fixed: deserializing
EventInfoType
value with underscore now works - #727 via @janovesk - Deprecated:
Repository.SubscriberCount
has no data - #739 via @basildk - Deprecated:
Repository.Organization
has no data - #726 via @alfhenrik
- Fixed: unshipped Orgs Permissions preview API changes due to excessive paging in some situations.
- New:
SearchCodeRequest
has overloads for owner and repository name - #705 via @kfrancis - New - support for preview Authorization API changes - #647 via @shiftkey
- New -
Account.Type
to identify user or organization account - #714 via @shiftkey - Fixed:
EventTypeInfo
did not parsehead_ref_deleted
andhead_ref_restored
- #711 via @janovesk - Fixed:
IssueUpdate.Labels
did not support "no change" updates - #718 via @shiftkey - Fixed:
ReleaseUploadAsset
does not require protected setters - #720 via @shiftkey - Deprecated:
Repository.WatchedCount
has no data - #701 via @DaveWM
- New: Response models now use read-only properties - #658, #662 via @haacked, #663 via @khellang, #679 via @Zoltu
- New: Added
Truncated
property toTreeResponse
- #674 via @Zoltu - New: Added
GetRecursive
method toITreesClient
- #673 via @Zoltu - New: Added
Merging
client toRepository
API: - #603 via @tabro - New: API internals are now read-only - #662 via @haacked
- Fixed: Commit Status API now supports combined status- #618 via @khellang
- Fixed: Changed
IGistCommentsClient
identifiers tostring
instead ofint
- #681 via @thedillonb - Fixed: Improved error message when repository creation fails - #667 via @gabrielweyer
- Fixed: Team membership API was incorrect - #695 via @aneville
Breaking Changes
- Response models are all read only. It is recommended that you subclass the model class if you need to contructor responses (e.g. for testing)
IResponse
is now areadonly
interface.ApiResponse<T>
accepts the strongly typed body as an argument.IResponse<T>
changed toIApiResponse<T>
.
- New: Added
Assignee
andLabel
toEventInfo
andIssueEvent
repsonses - #644 via @thedillonb - New: Added
BrowserDownloadUrl
toReleaseAsset
response - #648 via @erangeljr - New: Added
Stats
toGitHubCommit
andPatch
toGitHubCommitFile
- #646 via @thedillonb - New: Support for retrieving and manipulating repository contents using
GitClient.Repository.Content
- #649 via @haacked and @khellang - Fixed: updated enum values returned from
EventInfo.Event
- #644 via @thedillonb - Fixed: serialization issue with
Head
andBase
in pull request - #606 via @mge - Fixed:
SignatureResponse.Date
is now aDateTimeOffset
- #646 via @thedillonb
Breaking Changes:
EventInfo.InfoState
is nowEventInfo.Event
IssueEvent.InfoState
is nowIssueEvent.Event
SignatureResponse.Date
has changed fromDate
toDateTimeOffset
- New:
IOrganizationMembersClient.GetAll
now has enum to filter 2FA - #626 via @gbaychev - Fixed:
User.GravatarId
andAuthor.GravatarId
are marked as obsolete - #622 via @gbaychev - Fixed: Use
DateTimeOffset.MinValue
as default parameter forNotificationRequest.Since
- #641 via @thedillonb
- Fixed: Typo in guard clause for
ApiInfo
- #588 via @karlbohlmark - Fixed: Documentation typos in
NewRepository
- #590 via @karlbohlmark - Fixed:
Files
array now included when fetching a commit - #608 via @kzu - Fixed:
GetAllContributors
returnContributions
count - #614 via @SimonCropp
- New: Uploading release assets now supports an optional timeout value - #587 via @shiftkey
- New: Method to add repository to team - #546 via @kevfromireland
- Fixed: PATCH parameters for releases, issues and pull requests are now nullable - #561 via @thedillonb
Breaking Changes:
PullRequestUpdate
removed unused fields:Number
,State
,Base
, andHead
ReleaseClient.Create
now accepts aNewRelease
parameter (wasReleaseUpdate
)ReleaseUpdate
no longer requires aTagName
in the constructor (seeNewRelease
)ReleaseUpdate
now has nullableDraft
andPrerelease
properties - only set these if you want to apply changes to the APIIssueUpdate.State
is now a nullableItemState
MilestoneUpdate.Number
is now removedMilestoneUpdate.State
is now a nullableItemState
- New: added XML docs to NuGet package for Maximum Intellisense - #586 via @shiftkey
- New: added more methods for users and orgs - #553 via @andrerod
- New: added support for Universal Apps - #575 via @hippiehunter
- New: added missing fields to
Repository
- #560 via @thedillonb - New: upgraded Octokit.Reactive to Rx 2.2.5 - #564 via @haacked
- Fixed: added
ItemState.All
enum value so issue filtering can be bypassed - #550 via @MitjaBezensek - Fixed: remove trailing slash in
ApiUrl
that causes /team/{id}/repos to fail - #555 via @matt-gibbs - Fixed:
PullRequest.Mergeable
was misspelt, causing serialization issue - #576 via @jrowies - Fixed: serialization issue when parsing
OAuthToken.Scope
list - @shiftkey
Breaking Change: Readme.GetHtmlContent()
would return a 404, due to Readme.HtmlUrl
not accepting custom Accepts header. This method now uses Readme.Url
internally, which will return a slightly different DOM.
- New: Added a public method for turning pages of requests into a flat observable - #544 via @haacked
- New: added Commit.CommentCount property - #494 via @gabrielweyer
- New: added initial support for User Keys - #525 via @shiftkey
- New: support for listing commits on a repository - #529 via @haagenson
- New: support for Pull Request Comments - #531 via @gabrielweyer
- Fixed: unassign milestone from issue - #526 via @shiftkey
- Fixed: organization deserialization bug - #522 via @shiftkey
- Fixed: Repository.MasterBranch -> Repository.DefaultBranch - #523 via @shiftkey
- Improved: refinements to Releases API - #519 via @shiftkey
- Improved: can delete registered emails for the authenticated user - #524 via @shiftkey
- Fix issue search filtering bug - #481 via @shiftkey
- Fix methods to edit a release - #507 via @distantcam
- Fix methods to edit a release assset - #514 via @haacked
- Improvements to "repository exists" exception result - #473 via @shiftkey
- Encoding query parameters impacts search clients - #467 via @shiftkey
- Add methods to retrieve a team's members and to check if a user is a member of a team - #449 via @kzu
- Add OAuth web flow methods - #462 via @haacked
- Allow passing a parameter to the Patch method - #440 via @nigel-sampson
- Remove the redundant Team suffix from ITeamsClient - #451 via @kzu
- Remove Immutable Collections dependency to support .NET 4 builds - #453 via @paulcbetts
- Add method to retrieve raw bytes from a request - #457 via @haacked
- Fix readonly deserialization bug in NetCore45 and related projects - #455 via @nigel-sampson
- Add support for comparing two commits - #428 via @shiftkey
- Fix regression in throwing proper 2FA exception - #437 via @Haacked
- Add Portable Class Library support for Octokit package - #401 via @trsneed
- Filter repository issues by users - #427 via @shiftkey
- Task-based and Observable-based APIs are now consistent - #361 #376 #378 via @shiftkey and @ammeep
- "_links" JSON field serialization convention fix - #387 via @haacked
- Added Feeds client - #386 via @sgwill
- Added support for creating Gists - #391 via @Therzok and @rgmills
- Make readonly collections truly readonly - #394 #399 via @Haacked
- Internalize ProductHeaderValue - #406 via @trsneed
- HttpClient.Send without cancellation token - #410 via @ammeep
- Implement Repository Comments API - #413 via @Haacked @wfroese
- Corrected Search response to match API - #412 #417 #419 #420 via @shiftkey
- Reverted the dependency on Reactive Extensions 2.2.2 which introduced breaking changes
- Fixed an issue where some new observable clients were not accessible - #376 via @shiftkey
- New client for searching users - #289 via @hahmed
- New client for the statistics API - #296 via @ammeep
- New client for managing deployments and deployment status - #298 via @pmacn
- Added methods to repositories client for getting metadata such as contributors, languages, tags, etc. - #319 via @pmacn
- Added GetAll and Add methods to the user emails client - #323 via @pmacn
- New client for managing user followers - #343 via @alfhenrik
- Add more methods for managing releases - #344 via @alfhenrik
- New client for the activity watching API - #350 via @nigel-sampson
- ObservableStarredClient can now be accessed via a property - #351 via @nigel-sampson
- Emoji api now has Emoji type rather than dictionary - #354 via @haacked
- New client for the Pull Requests API - #360 via @jpsullivan and @shiftkey
- Now throws RepositoryExistsException when repository already exists - #377 via @haacked
- Now throws PrivateRepositoryQuotaExceededException when private repository quota would be exceeded by a new repository - #379 via @haacked
- Added IRepositoryClient.GetAllBranches - #270 via @goalie7960
- Install-Package should add reference to System.Net.Http - #286 via @alfhenrik
- Return a more helpful error if invalid refs path provided - #288 via @alfhenrik
- Refactor SearchIssuesRequest to match the API - #290 via @alfhenrik
- Deprecate custom Releases Accept header - #291 via @shiftkey
- Fix date format used in DateRange - #293 via @alfhenrik
- Add base class for search requests - #301 via @hahmed
- Deprecate IGitHubClient.Blob - #305 via @shiftkey
- Improving Proxy Server support - #306 via @shiftkey
- Add integration tests for IRepositoryClient.GetAllBranches - #309 via @lbargaoanu
- Refactor SearchCodeRequest to match the API - #311 from @alfhenrik
- Implemented Delete for IssueCommentsClient - #315 from @pmacn
- Implemented missing methods for IssueLabels - #316 from @pmacn
- New client for repository search - #226 and @273 via @hahmed
- Bugfix for creating/updating issue comments - #262 via @tpeczek
- Bugfix for retrieving events - #264 via @shiftkey
- New client for managing Gists - #225 via @SimonCropp
- New client for managing Git references - #238 via @khellang
- Added missing Observable versions for Git objects client - #251 by @khellang
- New client for Gist comments - #252 by @khellang
- Lots of documentation - #253 by @pmacn
- New client for managing issue labels - #256 by @andrerod
- New client for starring repositories
- New client for retrieving commits
- New client for managing an organization's teams and members
- New client for managing blobs
- New client for retrieving and creating trees
- New client for managing collaborators of a repository
- New client for retrieving activity events
- Fixed bug where concealing an org's member actually shows the member
- New Xamarin Component store versions of Octokit.net
- New clients for managing assignees, milestones, and tags
- New clients for managing issues, issue events, and issue comments
- New client for managing organization members
- Fixed bug in applying query parameters that could cause paging to continually request the same page
- New default constructors in Octokit.Reactive
- New IObservableAssigneesClient in Octokit.Reactive
- Fixed problems with Microsoft.Threading.Tasks
- Initial release