Releases: zowe/sample-spring-boot-api-service
Releases · zowe/sample-spring-boot-api-service
v1.1.1
v1.1.0
v1.0.0
v0.9.0
- Sets Apache 2.0 license for the sample application
- Resolves #71
- Moves common classes from the sample to the commons library
org.zowe.sample.apiservice.apidoc.ApiDocConstants
moved toorg.zowe.commons.apidoc.ApiDocConstants
- You can replace all occurences in your sample by:
find . -name '*.java' -print -exec sed 's/org.zowe.sample.apiservice.apidoc.ApiDocConstants./org.zowe.commons.apidoc.ApiDocConstants./g' {} \;
- You can replace all occurences in your sample by:
- Package
org.zowe.sample.apiservice.zowe
moved toorg.zowe.commons.apiml
- Users of the sample need to delete package
org.zowe.sample.apiservice.zowe
that contains classApiMediationServiceConfig
- Resolves #69
- Users of the sample need to delete package
zowe-rest-api-sample-spring/src/main/java/org/zowe/sample/apiservice/CsrfController.java
→zowe-rest-api-commons-spring/src/main/java/org/zowe/commons/spring/security/CsrfController.java
- Users of the sample should delete existing class
CsrfController.java
from the sample
- Users of the sample should delete existing class
zowe-rest-api-sample-spring/src/main/java/org/zowe/sample/apiservice/config/WebServerSecurityConfig.java → zowe-rest-api-commons-spring/src/main/java/org/zowe/commons/spring/security/HttpsWebServerConfig.java
- Users of the sample should delete existing class
WebServerSecurityConfig.java
from the sample if it has not changed from the original
- Users of the sample should delete existing class
v0.8.0
v0.7.3
- Improved security requirements diagnostics and documentation
BPX.SERVER
READ
level is required to be able to check access resourcesBPX.DAEMON
UPDATE
level is required to change the thread-level security- Both
errno
anderrno2
are taken for all security-related failures and converted to more understandable error names and messages