Skip to content

Commit 01e5307

Browse files
authored
Merge pull request #319 from Songmu/upadte-google-go-github
update google/go-github from v82 to v83
2 parents 2caa17e + 9b3dc77 commit 01e5307

15 files changed

Lines changed: 81 additions & 56 deletions

File tree

CREDITS

Lines changed: 55 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -56,34 +56,6 @@ THE SOFTWARE.
5656

5757
================================================================
5858

59-
github.com/Songmu/gh2changelog
60-
https://github.com/Songmu/gh2changelog
61-
----------------------------------------------------------------
62-
Copyright (c) 2022 Songmu
63-
64-
MIT License
65-
66-
Permission is hereby granted, free of charge, to any person obtaining
67-
a copy of this software and associated documentation files (the
68-
"Software"), to deal in the Software without restriction, including
69-
without limitation the rights to use, copy, modify, merge, publish,
70-
distribute, sublicense, and/or sell copies of the Software, and to
71-
permit persons to whom the Software is furnished to do so, subject to
72-
the following conditions:
73-
74-
The above copyright notice and this permission notice shall be
75-
included in all copies or substantial portions of the Software.
76-
77-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
78-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
79-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
80-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
81-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
82-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
83-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84-
85-
================================================================
86-
8759
github.com/Songmu/gitconfig
8860
https://github.com/Songmu/gitconfig
8961
----------------------------------------------------------------
@@ -334,8 +306,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
334306

335307
================================================================
336308

337-
github.com/google/go-github/v82
338-
https://github.com/google/go-github/v82
309+
github.com/google/go-github/v83
310+
https://github.com/google/go-github/v83
339311
----------------------------------------------------------------
340312
Copyright (c) 2013 The go-github AUTHORS. All rights reserved.
341313

@@ -400,6 +372,33 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
400372

401373
================================================================
402374

375+
github.com/k1LoW/calver
376+
https://github.com/k1LoW/calver
377+
----------------------------------------------------------------
378+
The MIT License (MIT)
379+
380+
Copyright © 2023 Ken'ichiro Oyama <k1lowxb@gmail.com>
381+
382+
Permission is hereby granted, free of charge, to any person obtaining a copy
383+
of this software and associated documentation files (the "Software"), to deal
384+
in the Software without restriction, including without limitation the rights
385+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
386+
copies of the Software, and to permit persons to whom the Software is
387+
furnished to do so, subject to the following conditions:
388+
389+
The above copyright notice and this permission notice shall be included in
390+
all copies or substantial portions of the Software.
391+
392+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
393+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
394+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
395+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
396+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
397+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
398+
THE SOFTWARE.
399+
400+
================================================================
401+
403402
github.com/kr/pretty
404403
https://github.com/kr/pretty
405404
----------------------------------------------------------------
@@ -511,6 +510,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
511510
SOFTWARE.
512511
================================================================
513512

513+
github.com/snabb/isoweek
514+
https://github.com/snabb/isoweek
515+
----------------------------------------------------------------
516+
Copyright © 2016-2023 Janne Snabb snabb AT epipe.com
517+
518+
Permission is hereby granted, free of charge, to any person obtaining
519+
a copy of this software and associated documentation files (the
520+
"Software"), to deal in the Software without restriction, including
521+
without limitation the rights to use, copy, modify, merge, publish,
522+
distribute, sublicense, and/or sell copies of the Software, and to
523+
permit persons to whom the Software is furnished to do so, subject to
524+
the following conditions:
525+
526+
The above copyright notice and this permission notice shall be included
527+
in all copies or substantial portions of the Software.
528+
529+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
530+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
531+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
532+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
533+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
534+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
535+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
536+
537+
================================================================
538+
514539
github.com/stretchr/testify
515540
https://github.com/stretchr/testify
516541
----------------------------------------------------------------

config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88

99
"github.com/Songmu/gitconfig"
10-
"github.com/google/go-github/v82/github"
10+
"github.com/google/go-github/v83/github"
1111
)
1212

1313
const (

gh2changelog/gh2changelog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"time"
1515

1616
"github.com/Songmu/gitsemvers"
17-
"github.com/google/go-github/v82/github"
17+
"github.com/google/go-github/v83/github"
1818
)
1919

2020
type releaseNoteGenerator interface {

gh2changelog/gh2changelog_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/Songmu/tagpr/gh2changelog"
12-
"github.com/google/go-github/v82/github"
12+
"github.com/google/go-github/v83/github"
1313
)
1414

1515
func TestGH2Changelog(t *testing.T) {

gh2changelog/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/url"
77

88
"github.com/Songmu/gitconfig"
9-
"github.com/google/go-github/v82/github"
9+
"github.com/google/go-github/v83/github"
1010
"golang.org/x/oauth2"
1111
)
1212

gh2changelog/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
require (
66
github.com/Songmu/gitconfig v0.2.2
77
github.com/Songmu/gitsemvers v0.1.0
8-
github.com/google/go-github/v82 v82.0.0
8+
github.com/google/go-github/v83 v83.0.0
99
golang.org/x/oauth2 v0.35.0
1010
)
1111

@@ -15,6 +15,6 @@ require (
1515
github.com/goccy/go-yaml v1.19.2 // indirect
1616
github.com/google/go-querystring v1.2.0 // indirect
1717
github.com/kr/text v0.2.0 // indirect
18-
golang.org/x/mod v0.31.0 // indirect
18+
golang.org/x/mod v0.33.0 // indirect
1919
gopkg.in/yaml.v3 v3.0.1 // indirect
2020
)

gh2changelog/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7Lk
1616
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
1717
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
1818
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
19-
github.com/google/go-github/v82 v82.0.0 h1:OH09ESON2QwKCUVMYmMcVu1IFKFoaZHwqYaUtr/MVfk=
20-
github.com/google/go-github/v82 v82.0.0/go.mod h1:hQ6Xo0VKfL8RZ7z1hSfB4fvISg0QqHOqe9BP0qo+WvM=
19+
github.com/google/go-github/v83 v83.0.0 h1:Ydy4gAfqxrnFUwXAuKl/OMhhGa0KtMtnJ3EozIIuHT0=
20+
github.com/google/go-github/v83 v83.0.0/go.mod h1:gbqarhK37mpSu8Xy7sz21ITtznvzouyHSAajSaYCHe8=
2121
github.com/google/go-querystring v1.2.0 h1:yhqkPbu2/OH+V9BfpCVPZkNmUXhb2gBxJArfhIxNtP0=
2222
github.com/google/go-querystring v1.2.0/go.mod h1:8IFJqpSRITyJ8QhQ13bmbeMBDfmeEJZD5A0egEOmkqU=
2323
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
@@ -28,8 +28,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
2828
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
2929
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
3030
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
31-
golang.org/x/mod v0.31.0 h1:HaW9xtz0+kOcWKwli0ZXy79Ix+UW/vOfmWI5QVd2tgI=
32-
golang.org/x/mod v0.31.0/go.mod h1:43JraMp9cGx1Rx3AqioxrbrhNsLl2l/iNAvuBkrezpg=
31+
golang.org/x/mod v0.33.0 h1:tHFzIWbBifEmbwtGz65eaWyGiGZatSrT9prnU8DbVL8=
32+
golang.org/x/mod v0.33.0/go.mod h1:swjeQEj+6r7fODbD2cqrnje9PnziFuw4bmLbBZFrQ5w=
3333
golang.org/x/oauth2 v0.35.0 h1:Mv2mzuHuZuY2+bkyWXIHMfhNdJAdwW3FuWeCPYN5GVQ=
3434
golang.org/x/oauth2 v0.35.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA=
3535
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

gh2changelog/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gh2changelog
33
import (
44
"io"
55

6-
"github.com/google/go-github/v82/github"
6+
"github.com/google/go-github/v83/github"
77
)
88

99
// GitPath sets a git executable path

github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/gofri/go-github-ratelimit/github_ratelimit"
11-
"github.com/google/go-github/v82/github"
11+
"github.com/google/go-github/v83/github"
1212
"golang.org/x/oauth2"
1313
)
1414

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ require (
66
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/Songmu/gitconfig v0.2.2
88
github.com/Songmu/gitsemvers v0.1.0
9-
github.com/Songmu/tagpr/gh2changelog v0.0.0-00010101000000-000000000000
9+
github.com/Songmu/tagpr/gh2changelog v0.7.1
1010
github.com/gofri/go-github-ratelimit v1.1.1
11-
github.com/google/go-github/v82 v82.0.0
11+
github.com/google/go-github/v83 v83.0.0
1212
github.com/k1LoW/calver v1.0.1
1313
github.com/saracen/walker v0.1.4
1414
golang.org/x/oauth2 v0.35.0
@@ -20,8 +20,8 @@ require (
2020
github.com/goccy/go-yaml v1.19.2 // indirect
2121
github.com/google/go-querystring v1.2.0 // indirect
2222
github.com/snabb/isoweek v1.0.3 // indirect
23-
golang.org/x/mod v0.31.0 // indirect
24-
golang.org/x/sync v0.17.0 // indirect
23+
golang.org/x/mod v0.33.0 // indirect
24+
golang.org/x/sync v0.19.0 // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect
2626
)
2727

0 commit comments

Comments
 (0)