Skip to content

v0.9.0

Compare
Choose a tag to compare
@plavjanik plavjanik released this 03 Feb 15:41
· 73 commits to master since this release
830d328
  • Sets Apache 2.0 license for the sample application
  • Moves common classes from the sample to the commons library
    • org.zowe.sample.apiservice.apidoc.ApiDocConstants moved to org.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' {} \;
    • Package org.zowe.sample.apiservice.zowe moved to org.zowe.commons.apiml
      • Users of the sample need to delete package org.zowe.sample.apiservice.zowe that contains class ApiMediationServiceConfig
      • Resolves #69
    • zowe-rest-api-sample-spring/src/main/java/org/zowe/sample/apiservice/CsrfController.javazowe-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
    • 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