Skip to content
İlhan Subaşı edited this page Nov 26, 2019 · 117 revisions

1.8.1 - June 8, 2019

  • /router endpoint only accepts requests with header content-type: application/json. ExtJs always sends this header so there is no change needed in your application. This is a protection against cross origin requests.

  • Spring index is no longer part of the core library. If you migrate from 1.8.0 and you use Spring index add the extdirectspring-index artifcat to your project.

      	<dependency>
      		<groupId>ch.ralscha</groupId>
      		<artifactId>extdirectspring</artifactId>
      		<version>1.8.1</version>
      	</dependency>
      	<dependency>
      		<groupId>ch.ralscha</groupId>
      		<artifactId>extdirectspring-index</artifactId>
      		<version>1.8.1</version>
      	</dependency>		

    Because the index is not part of the core library anymore you no longer need to disable it with spring.index.ignore=true if you're project does not use Spring index.

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