mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-17 21:37:35 +00:00
04b4cd80b8
* feat: eventstore repository * fix: remove gorm * version * feat: pkg * feat: add some files for project * feat: eventstore without eventstore-lib * rename files * gnueg * fix: key json * fix: add object * fix: change imports * fix: internal models * fix: some imports * fix: global model * feat: add global view functions * fix: add some functions on repo * feat(eventstore): sdk * fix(eventstore): search query * fix(eventstore): rename app to eventstore * delete empty test * remove unused func * merge master * fix(eventstore): tests * fix(models): delete unused struct * fix: some funcitons * feat(eventstore): implemented push events * fix: move project eventstore to project package * fix: change project eventstore funcs * feat(eventstore): overwrite context data * fix: change project eventstore * fix: add project repo to mgmt server * feat(types): SQL-config * fix: commented code * feat(eventstore): options to overwrite editor * feat: auth interceptor and cockroach migrations * fix: migrations * fix: fix filter * fix: not found on getbyid * fix: use global sql config * fix: add sequence * fix: add some tests * fix(eventstore): nullable sequence * fix: add some tests * merge * fix: add some tests * fix(migrations): correct statements for sequence * fix: add some tests * fix: add some tests * fix: changes from mr * fix: changes from mr * fix: add some tests * Update internal/eventstore/models/field.go Co-Authored-By: livio-a <livio.a@gmail.com> * fix(eventstore): code quality * fix: add types to aggregate/Event-types * fix: try tests * fix(eventstore): rename modifier* to editor* * fix(eventstore): delete editor_org * fix(migrations): remove editor_org field, rename modifier_* to editor_* * fix: query tests * fix: use prepare funcs * fix: go mod * fix: generate files * fix(eventstore): tests * fix(eventstore): rename modifier to editor * fix(migrations): add cluster migration, fix(migrations): fix typo of host in clean clsuter * fix(eventstore): move health * fix(eventstore): AggregateTypeFilter aggregateType as param * code quality * fix: go tests * feat: add member funcs * feat: add member model * feat: add member events * feat: add member repo model * fix: better error func testing * fix: project member funcs * fix: add tests * fix: add tests * feat: implement member requests * fix: merge master * fix: merge master * fix: read existing in project repo * fix: fix tests * feat: add internal cache * feat: add cache mock * fix: return values of cache mock * feat: add project role * fix: add cache config * fix: add role to eventstore * fix: use eventstore sdk * fix: use eventstore sdk * fix: add project role grpc requests * fix: fix getby id * fix: changes for mr * fix: change value to interface * feat: add app event creations * fix: searchmethods * Update internal/project/model/project_member.go Co-Authored-By: Silvan <silvan.reusser@gmail.com> * fix: use get project func * fix: append events * fix: check if value is string on equal ignore case * fix: add changes test * fix: add go mod * fix: add some tests * fix: return err not nil * fix: return err not nil * fix: add aggregate funcs and tests * fix: add oidc aggregate funcs and tests * fix: add oidc * fix: add some tests * fix: tests * fix: oidc validation * fix: generate client secret * fix: generate client id * fix: test change app * fix: deactivate/reactivate application * fix: change oidc config * fix: change oidc config secret * fix: implement grpc app funcs * fix: add application requests * fix: converter * fix: converter * fix: converter and generate clientid * fix: tests * fix: some fixes * feat: mr changes * fix: remove state converted * fix: add default oidc config * fix: use crypto pw generator * fix: rename responsetype * create GeneratorConfig and refactor some crypto.Generator code (#70) * Update internal/project/model/project_role.go Co-Authored-By: Silvan <silvan.reusser@gmail.com> * fix: change objectroot id * fix: caos err id Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: livio-a <livio.a@gmail.com>
51 lines
1.9 KiB
Modula-2
51 lines
1.9 KiB
Modula-2
module github.com/caos/zitadel
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
cloud.google.com/go v0.56.0 // indirect
|
|
contrib.go.opencensus.io/exporter/stackdriver v0.13.1
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/DATA-DOG/go-sqlmock v1.4.1
|
|
github.com/Masterminds/goutils v1.1.0 // indirect
|
|
github.com/Masterminds/semver v1.5.0 // indirect
|
|
github.com/Masterminds/sprig v2.22.0+incompatible
|
|
github.com/VictoriaMetrics/fastcache v1.5.7
|
|
github.com/allegro/bigcache v1.2.1
|
|
github.com/aws/aws-sdk-go v1.30.4 // indirect
|
|
github.com/caos/logging v0.0.1
|
|
github.com/cockroachdb/cockroach-go v0.0.0-20200312223839-f565e4789405
|
|
github.com/envoyproxy/protoc-gen-validate v0.3.0
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
|
|
github.com/golang/mock v1.4.3
|
|
github.com/golang/protobuf v1.4.0-rc.4
|
|
github.com/google/uuid v1.1.1 // indirect
|
|
github.com/gorilla/schema v1.1.0
|
|
github.com/gorilla/securecookie v1.1.1
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.14.3
|
|
github.com/huandu/xstrings v1.3.0 // indirect
|
|
github.com/imdario/mergo v0.3.9 // indirect
|
|
github.com/jackc/pgconn v1.5.0 // indirect
|
|
github.com/jinzhu/gorm v1.9.12
|
|
github.com/lib/pq v1.3.0
|
|
github.com/mitchellh/copystructure v1.0.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.1 // indirect
|
|
github.com/nicksnyder/go-i18n/v2 v2.0.3
|
|
github.com/rs/cors v1.7.0
|
|
github.com/sethvargo/go-password v0.1.3
|
|
github.com/sirupsen/logrus v1.5.0 // indirect
|
|
github.com/sony/sonyflake v1.0.0
|
|
github.com/stretchr/testify v1.5.1
|
|
go.opencensus.io v0.22.3
|
|
golang.org/x/crypto v0.0.0-20200403201458-baeed622b8d8
|
|
golang.org/x/text v0.3.2
|
|
golang.org/x/tools v0.0.0-20200403190813-44a64ad78b9b
|
|
google.golang.org/api v0.21.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20200403120447-c50568487044
|
|
google.golang.org/grpc v1.28.0
|
|
google.golang.org/protobuf v1.20.1
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
|
)
|