Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump github.com/golang/protobuf from 1.3.2 to 1.5.1 #17

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
44499bc
Add new connector for Cloudfoundry
Apr 10, 2018
bd45301
update cf connector to use 'authorization_endpoint' from /v2/info
Oct 4, 2018
b5879aa
Added support for CF resources pagination
daniellavoie Apr 4, 2019
b6dd148
cf: add org to groups claims
Nov 7, 2019
7c7f01c
cf: add org guid to groups claims
Nov 18, 2019
87a5838
add unit test and api call to `audited_spaces` and `managed_spaces`
Oct 7, 2019
3dbed76
append role to space guids
Nov 4, 2019
21bb128
add cf org:space:role group claim to token
Nov 25, 2019
78e936f
fix lint errors
Jan 13, 2020
73af7c0
run golangcli-lint
Mar 5, 2021
09330cf
use bcrypt when comparing client secrets
Apr 17, 2020
cbe0a17
add dex config flag for enabling client secret encryption
Sep 25, 2020
2547723
Add generic oauth connector
May 4, 2018
a6be30b
Make oauth user name and user id configurable
Feb 27, 2019
d2c3d48
use PreferredUsername
Jan 16, 2020
2b5b19c
add docs for oauth connector
Jul 31, 2020
bee3534
add configurable preferred_username key
Aug 4, 2020
84b6d5f
use testify in oauth tests
Oct 7, 2020
889a323
use claim mappings when retrieving user identity
Oct 20, 2020
1f329bf
readme minor fix for oauth connector
Nov 5, 2020
ec95501
move oauth connector doc to dex website repo
Mar 15, 2021
1eeff38
Add support for client_credentials grant type
Dec 11, 2019
b1718e0
Use http.FileSystem for web assets
Jan 15, 2020
adad419
use web host url for asset hosting
Sep 22, 2020
3ef8663
use pkger for embedding static contents
Oct 15, 2020
22aaf89
use go 1.16 new package io/fs
Oct 15, 2020
31025ee
default to ./web when Dir and WebFS are not set
Mar 4, 2021
14970ac
allow configuring CAs/skip verify for OIDC
vito Aug 14, 2018
7daf792
Merge remote-tracking branch 'origin/pr/add-oauth-connector-sync'
Mar 16, 2021
7e43bc2
Merge remote-tracking branch 'origin/pr/bcrypt-for-client-secret-sync'
Mar 16, 2021
1d6511d
Merge remote-tracking branch 'origin/pr/client-credentials-grant-sync'
Mar 16, 2021
c1e6839
Merge remote-tracking branch 'origin/pr/http-filesystem'
Mar 16, 2021
69f671f
Merge remote-tracking branch 'origin/pr/oidc-CA-configure-sync'
Mar 16, 2021
ef54461
upstream dex release: v2.28.0
Mar 16, 2021
73d726a
build(deps): bump github.com/golang/protobuf from 1.3.2 to 1.5.1
dependabot[bot] Mar 18, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -72,6 +72,7 @@ Dex implements the following connectors:
| [SAML 2.0](https://dexidp.io/docs/connectors/saml/) | no | yes | no | stable | WARNING: Unmaintained and likely vulnerable to auth bypasses ([#1884](https://github.com/dexidp/dex/discussions/1884)) |
| [GitLab](https://dexidp.io/docs/connectors/gitlab/) | yes | yes | yes | beta | |
| [OpenID Connect](https://dexidp.io/docs/connectors/oidc/) | yes | yes | yes | beta | Includes Salesforce, Azure, etc. |
| [OAuth 2.0](https://dexidp.io/docs/connectors/oauth/) | no | yes | yes | alpha | |
| [Google](https://dexidp.io/docs/connectors/google/) | yes | yes | yes | alpha | |
| [LinkedIn](https://dexidp.io/docs/connectors/linkedin/) | yes | no | no | beta | |
| [Microsoft](https://dexidp.io/docs/connectors/microsoft/) | yes | yes | no | beta | |
Expand Down
14 changes: 7 additions & 7 deletions cmd/dex/config.go
Expand Up @@ -10,13 +10,13 @@ import (

"golang.org/x/crypto/bcrypt"

"github.com/dexidp/dex/pkg/log"
"github.com/dexidp/dex/server"
"github.com/dexidp/dex/storage"
"github.com/dexidp/dex/storage/etcd"
"github.com/dexidp/dex/storage/kubernetes"
"github.com/dexidp/dex/storage/memory"
"github.com/dexidp/dex/storage/sql"
"github.com/concourse/dex/pkg/log"
"github.com/concourse/dex/server"
"github.com/concourse/dex/storage"
"github.com/concourse/dex/storage/etcd"
"github.com/concourse/dex/storage/kubernetes"
"github.com/concourse/dex/storage/memory"
"github.com/concourse/dex/storage/sql"
)

// Config is the config format for the main application.
Expand Down
10 changes: 5 additions & 5 deletions cmd/dex/config_test.go
Expand Up @@ -7,11 +7,11 @@ import (
"github.com/ghodss/yaml"
"github.com/kylelemons/godebug/pretty"

"github.com/dexidp/dex/connector/mock"
"github.com/dexidp/dex/connector/oidc"
"github.com/dexidp/dex/server"
"github.com/dexidp/dex/storage"
"github.com/dexidp/dex/storage/sql"
"github.com/concourse/dex/connector/mock"
"github.com/concourse/dex/connector/oidc"
"github.com/concourse/dex/server"
"github.com/concourse/dex/storage"
"github.com/concourse/dex/storage/sql"
)

var _ = yaml.YAMLToJSON
Expand Down
6 changes: 3 additions & 3 deletions cmd/dex/serve.go
Expand Up @@ -29,9 +29,9 @@ import (
"google.golang.org/grpc/reflection"

"github.com/dexidp/dex/api/v2"
"github.com/dexidp/dex/pkg/log"
"github.com/dexidp/dex/server"
"github.com/dexidp/dex/storage"
"github.com/concourse/dex/pkg/log"
"github.com/concourse/dex/server"
"github.com/concourse/dex/storage"
)

type serveOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/dex/version.go
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/spf13/cobra"

"github.com/dexidp/dex/version"
"github.com/concourse/dex/version"
)

func commandVersion() *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions connector/atlassiancrowd/atlassiancrowd.go
Expand Up @@ -13,9 +13,9 @@ import (
"strings"
"time"

"github.com/dexidp/dex/connector"
"github.com/dexidp/dex/pkg/groups"
"github.com/dexidp/dex/pkg/log"
"github.com/concourse/dex/connector"
"github.com/concourse/dex/pkg/groups"
"github.com/concourse/dex/pkg/log"
)

// Config holds configuration options for Atlassian Crowd connector.
Expand Down
4 changes: 2 additions & 2 deletions connector/authproxy/authproxy.go
Expand Up @@ -8,8 +8,8 @@ import (
"net/http"
"net/url"

"github.com/dexidp/dex/connector"
"github.com/dexidp/dex/pkg/log"
"github.com/concourse/dex/connector"
"github.com/concourse/dex/pkg/log"
)

// Config holds the configuration parameters for a connector which returns an
Expand Down
6 changes: 3 additions & 3 deletions connector/bitbucketcloud/bitbucketcloud.go
Expand Up @@ -14,9 +14,9 @@ import (
"golang.org/x/oauth2"
"golang.org/x/oauth2/bitbucket"

"github.com/dexidp/dex/connector"
"github.com/dexidp/dex/pkg/groups"
"github.com/dexidp/dex/pkg/log"
"github.com/concourse/dex/connector"
"github.com/concourse/dex/pkg/groups"
"github.com/concourse/dex/pkg/log"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion connector/bitbucketcloud/bitbucketcloud_test.go
Expand Up @@ -10,7 +10,7 @@ import (
"reflect"
"testing"

"github.com/dexidp/dex/connector"
"github.com/concourse/dex/connector"
)

func TestUserGroups(t *testing.T) {
Expand Down