Skip to content

Commit 500f924

Browse files
Chief-Rishabravisuhag
authored andcommitted
chore: rename shield to frontier and update dependencies
1 parent c92133e commit 500f924

File tree

20 files changed

+1347
-320
lines changed

20 files changed

+1347
-320
lines changed

docs/docs/reference/extractors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ that particular extractor can be found by visiting the link in the `type` field.
4646
| Type | Email | Username | FullName | Title | IsActive | ManagerEmail | Profiles | Memberships | facets | common |
4747
| :------------------------ | :---- | :------- | :------- | :---- | :------- | :----------- | :------- | :---------- | :----- | :----- |
4848
| [`github`][github-readme] |||||||||||
49-
| [`shield`][shield-readme] |||||||||||
49+
| [`frontier`][frontier-readme] |||||||||||
5050
| [`gsuite`][gsuite-readme] |||||||||||
5151

5252
### Bucket
@@ -109,7 +109,7 @@ of asset.
109109
[redash-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/redash/README.md
110110
[kafka-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/kafka/README.md
111111
[github-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/github/README.md
112-
[shield-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/shield/README.md
112+
[frontier-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/frontier/README.md
113113
[gsuite-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/gsuite/README.md
114114
[gcs-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/gcs/README.md
115115
[optimus-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/optimus/README.md

docs/docs/reference/sinks.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -109,19 +109,19 @@ sinks:
109109
send_format_header: false
110110
```
111111

112-
## Shield
112+
## Frontier
113113

114-
`shield`
114+
`frontier`
115115

116-
Upsert users to shield service running at a given 'host'. Request will be sent via GRPC.
116+
Upsert users to frontier service running at a given 'host'. Request will be sent via GRPC.
117117

118118
```yaml
119119
sinks:
120-
name: shield
120+
name: frontier
121121
config:
122-
host: shield.com
122+
host: frontier.com
123123
headers:
124-
X-Shield-Email: [email protected]
124+
X-Frontier-Email: [email protected]
125125
X-Other-Header: value1, value2
126126
```
127127

go.mod

+21-21
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module github.com/raystack/meteor
33
go 1.16
44

55
require (
6-
cloud.google.com/go/bigquery v1.44.0
6+
cloud.google.com/go/bigquery v1.52.0
77
cloud.google.com/go/bigtable v1.10.1
8-
cloud.google.com/go/datacatalog v1.10.0
9-
cloud.google.com/go/logging v1.6.1
10-
cloud.google.com/go/storage v1.28.1
8+
cloud.google.com/go/datacatalog v1.14.1
9+
cloud.google.com/go/logging v1.7.0
10+
cloud.google.com/go/storage v1.32.0
1111
github.com/AlecAivazis/survey/v2 v2.3.6
1212
github.com/ClickHouse/clickhouse-go v1.4.5
1313
github.com/MakeNowJust/heredoc v1.0.0
1414
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
15-
github.com/aws/aws-sdk-go v1.44.151
15+
github.com/aws/aws-sdk-go v1.44.314
1616
github.com/blastrain/vitess-sqlparser v0.0.0-20201030050434-a139afbb1aba
17-
github.com/cenkalti/backoff/v4 v4.2.0
17+
github.com/cenkalti/backoff/v4 v4.2.1
1818
github.com/d5/tengo/v2 v2.13.0
1919
github.com/denisenkom/go-mssqldb v0.12.3
2020
github.com/dnaeon/go-vcr/v2 v2.0.1
@@ -27,39 +27,39 @@ require (
2727
github.com/go-kivik/kivik v2.0.0+incompatible
2828
github.com/go-kivik/kiviktest v2.0.0+incompatible // indirect
2929
github.com/go-playground/validator/v10 v10.10.0
30-
github.com/go-sql-driver/mysql v1.7.0
30+
github.com/go-sql-driver/mysql v1.7.1
3131
github.com/gocql/gocql v0.0.0-20210817081954-bc256bbb90de
3232
github.com/google/go-cmp v0.5.9
3333
github.com/google/go-github/v37 v37.0.0
3434
github.com/gopherjs/gopherjs v0.0.0-20210503212227-fb464eba2686 // indirect
35-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
35+
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
3636
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
37-
github.com/lib/pq v1.10.7
37+
github.com/lib/pq v1.10.9
3838
github.com/mcuadros/go-defaults v1.2.0
3939
github.com/mitchellh/mapstructure v1.5.0
4040
github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249
41-
github.com/ory/dockertest/v3 v3.9.1
41+
github.com/ory/dockertest/v3 v3.10.0
4242
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
4343
github.com/pkg/errors v0.9.1
4444
github.com/prestodb/presto-go-client v0.0.0-20211201125635-ad28cec17d6c
45+
github.com/raystack/frontier v0.7.2
4546
github.com/raystack/optimus v0.7.2-0.20230725205201-5874457c7bbe
4647
github.com/raystack/salt v0.3.2
47-
github.com/raystack/shield v0.6.2
4848
github.com/schollz/progressbar/v3 v3.13.0
4949
github.com/segmentio/kafka-go v0.4.39
50-
github.com/sergi/go-diff v1.1.0 // indirect
5150
github.com/sijms/go-ora/v2 v2.2.22
5251
github.com/snowflakedb/gosnowflake v1.6.7
53-
github.com/spf13/cobra v1.6.1
54-
github.com/spf13/viper v1.14.0
55-
github.com/stretchr/testify v1.8.2
52+
github.com/spf13/cobra v1.7.0
53+
github.com/spf13/viper v1.16.0
54+
github.com/stretchr/testify v1.8.4
5655
gitlab.com/flimzy/testy v0.8.0 // indirect
5756
go.mongodb.org/mongo-driver v1.10.2
58-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.36.1
59-
golang.org/x/oauth2 v0.4.0
60-
google.golang.org/api v0.107.0
61-
google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5
62-
google.golang.org/grpc v1.53.0
63-
google.golang.org/protobuf v1.30.0
57+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.0
58+
golang.org/x/oauth2 v0.10.0
59+
google.golang.org/api v0.134.0
60+
google.golang.org/genproto v0.0.0-20230724170836-66ad5b6ff146
61+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230724170836-66ad5b6ff146
62+
google.golang.org/grpc v1.56.2
63+
google.golang.org/protobuf v1.31.0
6464
gopkg.in/yaml.v3 v3.0.1
6565
)

0 commit comments

Comments
 (0)