Skip to content

Commit 06ce62d

Browse files
authored
Fix next page cursor for list calls (#43)
Signed-off-by: Tamal Saha <[email protected]>
1 parent cdc1ffc commit 06ce62d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+8833
-6780
lines changed

glide.lock

Lines changed: 12 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

Lines changed: 40 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,57 @@
11
package: github.com/appscode/osm
22
import:
3+
- package: cloud.google.com/go
4+
version: v0.2.0
5+
- package: github.com/Azure/azure-sdk-for-go
6+
version: v19.0.0
7+
- package: github.com/Azure/go-autorest
8+
version: v10.14.0
39
- package: github.com/appscode/go
410
version: master
11+
- package: github.com/appscode/kutil
12+
version: release-9.0
13+
- package: github.com/aws/aws-sdk-go
14+
version: v1.14.12
15+
- package: github.com/cpuguy83/go-md2man
16+
version: v1.0.8
17+
- package: github.com/davecgh/go-spew
18+
version: v1.1.1
519
- package: github.com/dustin/go-humanize
620
- package: github.com/ghodss/yaml
721
version: v1.0.0
22+
- package: github.com/golang/protobuf
23+
version: v1.0.0
24+
- package: github.com/gorilla/websocket
25+
version: v1.4.0
826
- package: github.com/graymeta/stow
927
repo: https://github.com/appscode/stow.git
1028
vcs: git
1129
version: master
12-
- package: github.com/Azure/azure-sdk-for-go
13-
version: v19.0.0
14-
- package: github.com/Azure/go-autorest
15-
version: v10.14.0
16-
- package: github.com/aws/aws-sdk-go
17-
version: v1.14.12
18-
- package: google.golang.org/api/storage/v1
19-
version: 3639d6d93f377f39a1de765fa4ef37b3c7ca8bd9
20-
- package: cloud.google.com/go
21-
version: v0.2.0
30+
- package: github.com/imdario/mergo
31+
version: v0.3.5
2232
- package: github.com/jpillora/go-ogle-analytics
33+
- package: github.com/json-iterator/go
34+
version: 1.1.5
35+
- package: github.com/russross/blackfriday
36+
version: v1.5.2
2337
- package: github.com/spf13/cobra
2438
version: v0.0.3
39+
- package: github.com/spf13/pflag
40+
version: v1.0.3
41+
- package: golang.org/x/crypto
42+
version: de0752318171da717af4ce24d0a2e8626afaeb11
43+
- package: golang.org/x/net
44+
version: 1c05540f6879653db88113bc4a2b70aec4bd491f
45+
- package: golang.org/x/sys
46+
version: 95c6576299259db960f6c5b9b69ea52422860fce
47+
- package: golang.org/x/text
48+
version: b19bf474d317b857955b12035d2c5acb57ce8b01
49+
- package: google.golang.org/api/storage/v1
50+
version: 3639d6d93f377f39a1de765fa4ef37b3c7ca8bd9
51+
- package: gopkg.in/square/go-jose.v2
52+
version: v2.2.1
53+
- package: gopkg.in/yaml.v2
54+
version: v2.2.1
2555
- package: k8s.io/api
2656
version: kubernetes-1.12.0
2757
- package: k8s.io/apimachinery
@@ -30,31 +60,5 @@ import:
3060
version: ac-1.12.0
3161
- package: k8s.io/client-go
3262
version: v9.0.0
33-
- package: github.com/appscode/kutil
34-
version: release-9.0
35-
- package: github.com/cpuguy83/go-md2man
36-
version: v1.0.8
37-
- package: github.com/json-iterator/go
38-
version: 1.1.5
39-
- package: github.com/spf13/pflag
40-
version: v1.0.3
41-
- package: golang.org/x/text
42-
version: b19bf474d317b857955b12035d2c5acb57ce8b01
43-
- package: golang.org/x/net
44-
version: 1c05540f6879653db88113bc4a2b70aec4bd491f
45-
- package: golang.org/x/sys
46-
version: 95c6576299259db960f6c5b9b69ea52422860fce
47-
- package: golang.org/x/crypto
48-
version: de0752318171da717af4ce24d0a2e8626afaeb11
49-
- package: github.com/golang/protobuf
50-
version: v1.1.0
51-
- package: github.com/davecgh/go-spew
52-
version: v1.1.1
5363
- package: k8s.io/kube-openapi
5464
version: 0cf8f7e6ed1d2e3d47d02e3b6e559369af24d803
55-
- package: github.com/russross/blackfriday
56-
version: v1.5.2
57-
- package: gopkg.in/yaml.v2
58-
version: v2.2.1
59-
- package: github.com/gorilla/websocket
60-
version: v1.4.0

vendor/github.com/appscode/go/encoding/yaml/yaml.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/kutil/meta/cloud.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/kutil/meta/cmp.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/kutil/meta/hash.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/kutil/meta/patch.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/appscode/kutil/tools/cli/cli.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)