Skip to content

Commit 662d35b

Browse files
authored
CUBA 7.1 support & release 0.6.0 (#11)
1 parent 35b6cad commit 662d35b

File tree

6 files changed

+9
-28
lines changed

6 files changed

+9
-28
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.6.0] - 2019-09-20
8+
9+
### Dependencies
10+
- CUBA 7.1
11+
712
## [0.5.1] - 2019-05-14
813

914
## Bugfix

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ For cross cutting functionality, these soft references can be the solution here.
5656

5757
| Platform Version | Add-on Version |
5858
| ---------------- | -------------- |
59+
| 7.1.x | 0.6.x |
5960
| 7.0.x | 0.5.x |
6061
| 6.10.x | 0.4.x |
6162
| 6.9.x | 0.3.x |

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
buildscript {
3-
ext.cubaVersion = '7.0.0'
3+
ext.cubaVersion = '7.1.0'
44
repositories {
55

66
maven {
@@ -103,7 +103,7 @@ dependencies {
103103

104104
}
105105

106-
def hsql = 'org.hsqldb:hsqldb:2.2.9'
106+
def hsql = 'org.hsqldb:hsqldb:2.4.1'
107107

108108

109109
allprojects {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.5.2-SNAPSHOT
1+
version=0.6.0-SNAPSHOT

modules/core/src/de/diedavids/cuba/entitysoftreference/core/messages.properties

Whitespace-only changes.

modules/web/web/WEB-INF/web.xml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@
3131
<servlet-class>com.haulmont.cuba.web.sys.CubaDispatcherServlet</servlet-class>
3232
<load-on-startup>1</load-on-startup>
3333
</servlet>
34-
<servlet>
35-
<servlet-name>rest_api</servlet-name>
36-
<servlet-class>com.haulmont.restapi.sys.CubaRestApiServlet</servlet-class>
37-
<load-on-startup>2</load-on-startup>
38-
</servlet>
3934
<servlet-mapping>
4035
<servlet-name>dispatcher</servlet-name>
4136
<url-pattern>/dispatch/*</url-pattern>
@@ -44,10 +39,6 @@
4439
<servlet-name>app_servlet</servlet-name>
4540
<url-pattern>/*</url-pattern>
4641
</servlet-mapping>
47-
<servlet-mapping>
48-
<servlet-name>rest_api</servlet-name>
49-
<url-pattern>/rest/*</url-pattern>
50-
</servlet-mapping>
5142
<filter>
5243
<filter-name>cuba_filter</filter-name>
5344
<filter-class>com.haulmont.cuba.web.sys.CubaHttpFilter</filter-class>
@@ -57,20 +48,4 @@
5748
<filter-name>cuba_filter</filter-name>
5849
<url-pattern>/*</url-pattern>
5950
</filter-mapping>
60-
<filter>
61-
<filter-name>restSpringSecurityFilterChain</filter-name>
62-
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
63-
<init-param>
64-
<param-name>contextAttribute</param-name>
65-
<param-value>org.springframework.web.servlet.FrameworkServlet.CONTEXT.rest_api</param-value>
66-
</init-param>
67-
<init-param>
68-
<param-name>targetBeanName</param-name>
69-
<param-value>springSecurityFilterChain</param-value>
70-
</init-param>
71-
</filter>
72-
<filter-mapping>
73-
<filter-name>restSpringSecurityFilterChain</filter-name>
74-
<url-pattern>/rest/*</url-pattern>
75-
</filter-mapping>
7651
</web-app>

0 commit comments

Comments
 (0)