Skip to content

Commit

Permalink
Merge pull request #523 from zowe/bugfix/saf-check-on-get-plugins
Browse files Browse the repository at this point in the history
parameter fix for semi auth
  • Loading branch information
DivergentEuropeans authored Dec 28, 2023
2 parents 0cc59f6 + 9aa80ff commit 698a5ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

All notable changes to the Zlux Server Framework package will be documented in this file..
This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section.


## 2.14.0
- Bugfix: A call to GET /plugins would trigger an authorization check regardless of if rbac was set on or off


## 2.13.0
- Added support for using zowe.network and components.app-server.zowe.network to set listener IP and TLS properties including max and min version, ciphers, and ECDH curves. (#511)
- Enhanced cipher customization to allow for ciphers to be specified in IANA format in addition to the existing OpenSSL format. (#511)
Expand Down
2 changes: 1 addition & 1 deletion lib/webauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ module.exports = function(authManager, cookieIdentifier, isSecurePort) {
authLogger.debug(`${req.session.id}: Initiating isAuthorized check with ${handler.pluginID}`);
result = yield handler.authorized(req, authPluginSession, {
syncOnly: isWebsocket,
bypassAuthorizatonCheck: !authManager.isRbacEnabled
bypassAuthorizatonCheck: !authManager.isRbacEnabled()
});
next();
return;
Expand Down

0 comments on commit 698a5ea

Please sign in to comment.