[next] Update libgit2 to 821131f #266

Merged
clns merged 1 commits from update-libgit2 into next 2015-10-26 15:44:16 -05:00
clns commented 2015-10-26 09:59:20 -05:00 (Migrated from github.com)

Breaking API changes:

  • Remote.Connect()- headers was added

    // from:
    func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks) error {}
    // to:
    func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks, headers []string) error {}
    
  • Remote.ConnectFetch() - headers was added

    func (o *Remote) ConnectFetch(callbacks *RemoteCallbacks, headers []string) error
    
  • Remote.ConnectPush() - headers was added

    func (o *Remote) ConnectPush(callbacks *RemoteCallbacks, headers []string) error
    
Breaking API changes: - `Remote.Connect()`\- `headers` was added ``` go // from: func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks) error {} // to: func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks, headers []string) error {} ``` - `Remote.ConnectFetch()` - `headers` was added ``` go func (o *Remote) ConnectFetch(callbacks *RemoteCallbacks, headers []string) error ``` - `Remote.ConnectPush()` - `headers` was added ``` go func (o *Remote) ConnectPush(callbacks *RemoteCallbacks, headers []string) error ```
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: jcarr/git2go#266
No description provided.