Skip to content

Commit

Permalink
Merge pull request #209 from yacineMTB/AUTHZ-1382/remove-support-for-…
Browse files Browse the repository at this point in the history
…psaas-custom-domains

[AUTHZ-1382] remove support for psaas legacy custom domains
  • Loading branch information
Umut Benzer authored Feb 20, 2020
2 parents 015b045 + 48c858a commit 7125f88
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 35 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [4.0.0] - 2020-02-05

- **Breaking Change:** Remove support for legacy custom domains on PSaaS. This change does not introduce breaking changes to cloud customers.
- Fix extension to work with new custom domains on PSaaS

## [3.8.0] - 2020-01-23

### Changes
Expand Down
7 changes: 0 additions & 7 deletions client/actions/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ const webAuthOptions = {
redirectUri: `${window.config.BASE_URL}/login`
};

if (window.config.IS_APPLIANCE) {
webAuthOptions.overrides = {
__tenant: window.config.AUTH0_DOMAIN.split('.')[0],
__token_issuer: `https://${window.config.AUTH0_DOMAIN}/`
};
}

const webAuth = new auth0.WebAuth(webAuthOptions); // eslint-disable-line no-undef

export function login(returnUrl, locale) {
Expand Down
52 changes: 26 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-delegated-admin",
"version": "3.8.0",
"version": "4.0.0",
"description": "This extension allows non-dashboard administrators to manage (a subset of) users.",
"engines": {
"node": ">8.9"
Expand Down
2 changes: 1 addition & 1 deletion webtask.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "Delegated Administration Dashboard",
"name": "auth0-delegated-admin",
"version": "3.8.0",
"version": "4.0.0",
"author": "auth0",
"useHashName": false,
"description": "This extension allows non-dashboard administrators to manage (a subset of) users.",
Expand Down

0 comments on commit 7125f88

Please sign in to comment.