Skip to content

Commit

Permalink
Depts update
Browse files Browse the repository at this point in the history
  • Loading branch information
koltyakov committed May 20, 2023
1 parent 94134c7 commit 1f1d581
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 53 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
name: "sharepoint"
registry: "github"
path: "koltyakov/sharepoint"
version: "v1.7.2" # provide the latest stable version
version: "v1.8.2" # provide the latest stable version
destinations: ["postgresql"] # provide the list of used destinations
tables: ["*"] # required field, a list of tables to sync
spec:
Expand Down Expand Up @@ -304,7 +304,7 @@ spec:
name: "sharepoint"
registry: "github"
path: "koltyakov/sharepoint"
version: "v1.7.2" # https://github.com/koltyakov/cq-source-sharepoint/releases
version: "v1.8.2" # https://github.com/koltyakov/cq-source-sharepoint/releases
destinations: ["sqlite"]
tables: ["*"]
spec:
Expand Down Expand Up @@ -387,7 +387,7 @@ Loading spec(s) from sharepoint_reg.yml, sqlite.yml
Downloading https://github.com/koltyakov/...sharepoint_darwin_arm64.zip
Downloading 100% |█████████████████████████████████████| (5.2/5.2 MB, 10 MB/s)
Migration completed successfully.
Starting sync for: sharepoint (v1.7.2) -> [sqlite (v1.3.5)]
Starting sync for: sharepoint (v1.8.2) -> [sqlite (v2.1.0)]
Sync completed successfully. Resources: 37478, Errors: 0, Panics: 0, Time: 21s
```

Expand Down
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"fmt"

"github.com/cloudquery/plugin-pb-go/specs"
"github.com/cloudquery/plugin-sdk/v2/plugins/source"
"github.com/cloudquery/plugin-sdk/v2/schema"
"github.com/cloudquery/plugin-sdk/v2/specs"
"github.com/koltyakov/cq-source-sharepoint/resources/auth"
"github.com/koltyakov/cq-source-sharepoint/resources/ct"
"github.com/koltyakov/cq-source-sharepoint/resources/lists"
Expand Down
2 changes: 1 addition & 1 deletion client/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"fmt"

"github.com/cloudquery/plugin-sdk/v2/specs"
"github.com/cloudquery/plugin-pb-go/specs"
"github.com/koltyakov/cq-source-sharepoint/resources/auth"
"github.com/koltyakov/cq-source-sharepoint/resources/ct"
"github.com/koltyakov/cq-source-sharepoint/resources/lists"
Expand Down
2 changes: 1 addition & 1 deletion debug/postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ kind: destination
spec:
name: "postgresql"
path: "cloudquery/postgresql"
version: "v4.0.4"
version: "v4.1.1"
spec:
connection_string: "postgresql://postgres:postgres@localhost:5432/postgres?sslmode=disable"
2 changes: 1 addition & 1 deletion debug/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ kind: destination
spec:
name: sqlite
path: cloudquery/sqlite
version: "v2.0.4"
version: "v2.1.0"
spec:
connection_string: ./sp.db
32 changes: 17 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@ go 1.19
require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/brianvoe/gofakeit/v6 v6.21.0
github.com/cloudquery/plugin-sdk/v2 v2.5.1
github.com/cloudquery/plugin-pb-go v1.0.8
github.com/cloudquery/plugin-sdk/v2 v2.7.0
github.com/google/uuid v1.3.0
github.com/koltyakov/gosip v0.0.0-20230416191329-2fa7a7295870
github.com/koltyakov/gosip-sandbox v0.0.0-20230410140555-1211f873b91c
github.com/rs/zerolog v1.29.1
github.com/schollz/progressbar/v3 v3.13.1
github.com/thoas/go-funk v0.9.3
golang.org/x/sync v0.1.0
golang.org/x/sync v0.2.0
)

replace (
// ToDo: remove once the changes are merged to upstream
github.com/apache/arrow/go/v12 => github.com/cloudquery/arrow/go/v12 v12.0.0-20230417154311-f9add0212acd
github.com/apache/arrow/go/v13 => github.com/cloudquery/arrow/go/v13 v13.0.0-20230509053643-898a79b1d3c8
// ToDo: romove once package is fixed
github.com/grpc-ecosystem/go-grpc-middleware/v2 => github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3
)
Expand All @@ -33,18 +34,18 @@ require (
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/apache/arrow/go/v12 v12.0.0-20230428170547-16dbd98e8f52 // indirect
github.com/apache/arrow/go/v13 v13.0.0-20230520140400-65520b361941 // indirect
github.com/apache/thrift v0.18.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/getsentry/sentry-go v0.20.0 // indirect
github.com/getsentry/sentry-go v0.21.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/flatbuffers v23.3.3+incompatible // indirect
github.com/google/flatbuffers v23.5.9+incompatible // indirect
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.3 // indirect
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.5 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
Expand All @@ -62,26 +63,27 @@ require (
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.2 // indirect
github.com/stretchr/testify v1.8.3 // indirect
github.com/vadimi/go-http-ntlm/v2 v2.4.1 // indirect
github.com/vadimi/go-ntlm v1.2.1 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/exp v0.0.0-20230519143937-03e91628a987 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/term v0.7.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.8.0 // indirect
golang.org/x/tools v0.9.1 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.54.0 // indirect
google.golang.org/grpc v1.55.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit 1f1d581

Please sign in to comment.