Skip to content

Releases: zowe/sample-spring-boot-api-service

v1.1.1

17 Aug 11:10
f9a1462
Compare
Choose a tag to compare
  • Fixes a bug where after the first file in {files} was the same as already uploaded file, the processing ended, and the other files did not get evaluated and uploaded.

v1.1.0

07 Aug 14:40
14d34d2
Compare
Choose a tag to compare
  • Zowe REST API SDK uses the latest version of API ML enabler (1.4.2) and other dependencies

v1.0.0

07 Feb 16:33
2d899af
Compare
Choose a tag to compare
  • Version 1.0.0 - no changes of functionality since v0.9.0
  • All future changes follow semantic versioning - https://semver.org/

v0.9.0

03 Feb 15:41
830d328
Compare
Choose a tag to compare
  • 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

v0.8.0

22 Jan 23:22
3fc544d
Compare
Choose a tag to compare
  • Use the value of JAVA_HOME in the environment instead of setting it in makefile while using zowe-api-dev zosbuild (#99)
  • PassTicket support (#98)
  • --force flag zowe-api-dev zosbuild (#87)

v0.7.3

22 Nov 09:08
98976e6
Compare
Choose a tag to compare
  • Improved security requirements diagnostics and documentation
    • BPX.SERVER READ level is required to be able to check access resources
    • BPX.DAEMON UPDATE level is required to change the thread-level security
    • Both errno and errno2 are taken for all security-related failures and converted to more understandable error names and messages

v0.7.1

17 Nov 16:28
d2540b8
Compare
Choose a tag to compare
  • Check for empty password #78

v0.7.0

06 Nov 10:14
d20946e
Compare
Choose a tag to compare
  • i18n for REST APIs and error messages (#68)

v0.6.1

29 Oct 06:54
5374365
Compare
Choose a tag to compare
  • Jar Patcher fix for embedded JAR files and deleted JARs on zFS (#67)
  • Support for additional fields in the error message format (#63)

v0.6.0

25 Oct 10:49
12a163e
Compare
Choose a tag to compare
  • Support for additional fields in the error message format #63
  • JarPatcher is disabled until the #62 is resolved