File tree Expand file tree Collapse file tree 6 files changed +18
-9
lines changed
src/suit/java/edu/caltech/ipac/lsst/security Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 2
2
Change log
3
3
##########
4
4
5
+ 2.1.1 (2021-04-07)
6
+ ==================
7
+
8
+ - **Uses Firefly release-2020.3.3 ** See the `Firefly release notes <https://github.com/Caltech-IPAC/firefly/blob/dev/docs/release-notes.md> `. Key LSST-relevant fix:
9
+
10
+ - Charts in "expanded mode" do not update after options changes
11
+ [`FIREFLY-525 <https://jira.ipac.caltech.edu/browse/FIREFLY-525 >`_]
12
+
13
+ - Changes URLs for interaction with the authentication to use Gafaelfawr ones.
14
+
5
15
2.1.0 (2020-10-05)
6
16
==================
7
17
8
- - **Uses Firefly release-2020.3.0 ** See the `Firefly release notes <https://github.com/Caltech-IPAC/firefly/blob/dev/docs\
9
- /release-notes.md>`. Key LSST-relevant features:
18
+ - **Uses Firefly release-2020.3.0 ** See the `Firefly release notes <https://github.com/Caltech-IPAC/firefly/blob/dev/docs/release-notes.md> `. Key LSST-relevant features:
10
19
11
20
- Bug fixes for Python-driven plotting and Slate
12
21
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ pct.vis.shared.mem.size = 0.4
28
28
download.bundle.maxbytes = 304857600
29
29
30
30
sso.server.url = "https://test.cilogon.org/"
31
- sso.login.url = "oauth2/start ?rd=/portal/suit/"
32
- sso.logout.url = "/oauth2/sign_in "
31
+ sso.login.url = "/login ?rd=/portal/suit/"
32
+ sso.logout.url = "/logout "
33
33
sso.user.profile.url =
34
34
__$help.base.url = "onlinehelp/"
35
35
Original file line number Diff line number Diff line change 1
- rc -2020.3
1
+ release -2020.3 .3
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ metadata:
109
109
proxy_set_header X-Forwarded-Proto https;
110
110
proxy_set_header X-Forwarded-Port 443;
111
111
proxy_set_header X-Forwarded-Path /portal/app;
112
- error_page 403 = "https://lsst-lsp-int.ncsa.illinois.edu/oauth2/start ?rd=$request_uri";
112
+ error_page 403 = "https://lsst-lsp-int.ncsa.illinois.edu/login ?rd=$request_uri";
113
113
spec :
114
114
tls :
115
115
- hosts :
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ metadata:
109
109
proxy_set_header X-Forwarded-Proto https;
110
110
proxy_set_header X-Forwarded-Port 443;
111
111
proxy_set_header X-Forwarded-Path /portal/app;
112
- error_page 403 = "https://lsst-lsp-stable.ncsa.illinois.edu/oauth2/start ?rd=$request_uri";
112
+ error_page 403 = "https://lsst-lsp-stable.ncsa.illinois.edu/login ?rd=$request_uri";
113
113
spec :
114
114
tls :
115
115
- hosts :
Original file line number Diff line number Diff line change 25
25
*/
26
26
public class LsstSsoAdapter implements SsoAdapter {
27
27
private static Logger .LoggerImpl LOGGER = Logger .getLogger ();
28
- private static String LOGIN_URL = AppProperties .getProperty ("sso.login.url" , "/oauth2/start ?rd=/portal/suit/" );
29
- private static String LOGOUT_URL = AppProperties .getProperty ("sso.logout.url" , "/oauth2/sign_in " );
28
+ private static String LOGIN_URL = AppProperties .getProperty ("sso.login.url" , "/login ?rd=/portal/suit/" );
29
+ private static String LOGOUT_URL = AppProperties .getProperty ("sso.logout.url" , "/logout " );
30
30
private static String REQ_AUTH_HOSTS = AppProperties .getProperty ("sso.req.auth.hosts" , ".ncsa.illinois.edu" );
31
31
32
32
private static final String ID_TOKEN = "X-Auth-Request-Token" ;
You can’t perform that action at this time.
0 commit comments