Releases: SpinlockLabs/github.dart
Releases · SpinlockLabs/github.dart
6.0.0-dev.1.0
This is an alpha dev release on the 6.0 branch. It may have bugs or change in breaking ways before the stable release. See the CHANGELOG for changes. There's a lot.
5.5.0
5.4.0
- Implement rate-limiting #172
- Back off when server fails (HTTP 50x) #173
- All remaining methods in repos_service.dart (accessible via the getter
repositories
fromGitHub
client class) have been implemented.isCollaborator
,listSingleCommitComments
,listCommitComments
,createCommitComment
,getComment
,updateComment
,deleteComment
- Fixed issues.get to correctly return Future #180
5.3.0
- Add the ability to upload release assets.
- Add the ability to get an existing release by tag name.
(Non-Breaking) Deprecations:
The draft and prerelease properties in the CreateRelease and Release
classes have been renamed to isDraft and isPrerelease for clarity.
Release.targetCommitsh has been renamed to Release.targetCommitish.
The release parameter in RepositoriesService.createRelease has been renamed to createRelease.
RepositoriesService.getRelease has been renamed to RepositoriesService.getReleaseById
5.2.0
5.1.0
5.0.2
5.0.1
5.0.0
- BREAKING
RepositoriesService.listCollaborators
now returns
Stream<Collaborator>
instead ofStream<User>
.Collaborator
is a new type that includes collaborator-specific
information.