Skip to content
Ralph Schaer edited this page Nov 26, 2018 · 117 revisions

1.8.0 - November 26, 2018

  • Spring 5.1 and Java 1.8 upgrade. Requires Java 1.8. No new functionality. Only internal code migration to Java 1.8 code.

    Library contains a generated /META-INF/spring.components file.
    This allows the usage of extdirectspring with the spring-context-indexer:
    https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-scanning-index
    If your Spring application does not use the indexer you have to disable it.
    In a Spring Boot application you can do this with the following code

     public static void main(String[] args) throws Exception {
     	System.setProperty("spring.index.ignore", "true");
     	SpringApplication.run(Main.class, args);
     }
    

1.7.5 - September 26, 2018

  • No changes, just updated the dependencies

1.7.4 - December 30, 2017

1.7.3 - November 3, 2017

1.7.2 - September 13, 2017

1.7.1 - December 5, 2016

  • Fixes a bug when DEFAULT_VIEW_INCLUSION is disabled in the ObjectMapper

1.7.0 - July 5, 2016

  • Issue #141: Add alternative Builder classes for the results object. Both styles are supported.
    - ExtDirectFormLoadResult ---> EdFormLoadResult
    - ExtDirectFormPostResult ---> EdFormPostResult
    - ExtDirectRawJsonStoreResult ---> EdJsonStoreResult
    - ExtDirectStoreResult ----> EdStoreResult

  • New minimal requirement Spring 4.3.1 and Jackson 2.8

Clone this wiki locally