Skip to content

Releases: everwatchsolutions/convergent-ui

v2.0.0

03 Oct 17:34
Compare
Choose a tag to compare

Convergent UI 2.0.0 is a major release that brings compatibility with Spring Boot 2.1.8 and Spring Cloud Greenwich. This version will no longer support Spring Boot 1.x. Upgrading to the latest Spring Boot brings numerous bug fixes and security enhancements.

Thanks to @chuckgregoryACES for contributing this upgrade!

V1.1.2

04 Mar 16:21
Compare
Choose a tag to compare

Convergent-UI v1.1.2 is a maintenance release that upgrades the Spring Boot and Spring Cloud dependencies to the last version that supports the 1.x line of those libraries. Here are the version now supported:

Spring-Boot: 1.5.19.RELEASE
Spring Cloud: Edgware.SR5
jsoup: 1.11.3

Use this version like so in your maven pom:

<dependency>
  <groupId>net.acesinc</groupId>
  <artifactId>convergent-ui</artifactId>
  <version>1.1.1</version>
</dependency>

The next version of Convergent UI should support Spring Boot 2.x

v1.1.1

06 Dec 18:40
Compare
Choose a tag to compare

This release fixes a bug that was introduced by our upgrade to Spring Cloud Brixton which broke the RestClients use of the Discovery Service for service resolution. We have also upgraded the examples to use this latest version of Convergent UI, Spring Boot 1.4.2, and Spring Cloud Brixton.SR3.

v1.1.0

02 Dec 22:45
Compare
Choose a tag to compare

We have upgraded the Spring Cloud dependency to the Camden release train at version Camden.SR3. This version is not compatible with Spring Boot 1.2x and has only been tested with Spring Boot 1.4x.

v1.0.7

28 Nov 16:56
Compare
Choose a tag to compare

This version of Convergent-UI upgrades dependencies of spring boot to 1.4.2.RELEASE and spring cloud to Brixton.SR6. This version is not backwards compatible with old versions of Spring Boot/Cloud.

<dependency>
    <groupId>net.acesinc</groupId>
    <artifactId>convergent-ui</artifactId>
    <version>1.0.7</version>
</dependency>

v1.0.6

13 Oct 22:37
Compare
Choose a tag to compare

Convergent-UI v1.0.6 adds the ability to forward images, css, javascript and other text objects from backend services. This is useful because the HTML that might be served from the backend service could contain images. It could also require some special styling or javascript in order to look/work correctly. For more information about how this feature works and how to use it, please see the "Images, CSS & Javascript" section of the README.

You can use the following dependency in your project:

<dependency>
    <groupId>net.acesinc</groupId>
    <artifactId>convergent-ui</artifactId>
    <version>1.0.6</version>
</dependency>

v1.0.5

06 Oct 02:49
Compare
Choose a tag to compare

Provides the following fixes:

  • Fix for #1 that was breaking the ability to pass through binary types such as images. We now only filter on contentType of html
  • Fix for #2 which now restricts the filter to only GET requests. We just let POST/PUT/DELETE requests pass thru.
<dependency>
    <groupId>net.acesinc</groupId>
    <artifactId>convergent-ui</artifactId>
    <version>1.0.5</version>
</dependency>

v1.0.4

29 Sep 20:17
Compare
Choose a tag to compare

Had to fix the pom file in order to successfully release to maven central. You should now be able to include the following dependency:

<dependency>
  <groupId>net.acesinc</groupId>
  <artifactId>convergent-ui</artifactId>
  <version>1.0.4</version>
</dependency>

v1.0.2

29 Sep 19:48
Compare
Choose a tag to compare

Fixed release process so jar is now pushed to maven central as a release. You should be able to include this jar in your project using the following dependency:

<dependency>
  <groupId>net.acesinc</groupId>
  <artifactId>convergent-ui</artifactId>
  <version>1.0.2</version>
</dependency>

Sorry, this version didn't work either...use 1.0.4

v1.0.0

29 Sep 17:26
Compare
Choose a tag to compare

This is the initial release of the Convergent UI filter. Please see the README for full documentation about the background and how to use it.