Skip to content

Latest commit

 

History

History
292 lines (238 loc) · 11.9 KB

ga-release-post.adoc

File metadata and controls

292 lines (238 loc) · 11.9 KB
layout title categories author_picture author_github seo-title seo-description blog_description open-graph-image open-graph-image-alt
post
TITLE
blog
TITLE - makes sure it ends with - OpenLiberty.io
DESCRIPTION
DESCRIPTION
Open Liberty Logo

TITLE

RELEASE_SUMMARY

In Open Liberty RELEASE_VERSION:

Along with the new features and functions added to the runtime, we’ve also made updates to our guides.

View the list of fixed bugs in RELEASE_VERSION.

Develop and run your apps using RELEASE_VERSION

If you’re using Maven, include the following in your pom.xml file:

<plugin>
    <groupId>io.openliberty.tools</groupId>
    <artifactId>liberty-maven-plugin</artifactId>
    <version>3.8.2</version>
</plugin>

Or for Gradle, include the following in your build.gradle file:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'io.openliberty.tools:liberty-gradle-plugin:3.6.2'
    }
}
apply plugin: 'liberty'

Or if you’re using container images:

FROM icr.io/appcafe/open-liberty

Or take a look at our Downloads page.

If you’re using IntelliJ IDEA, Visual Studio Code or Eclipse IDE, you can also take advantage of our open source Liberty developer tools to enable effective development, testing, debugging and application management all from within your IDE.

Ask a question on Stack Overflow

FEATURE_1_HEADING

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

FEATURE_2_TITLE

SUB_FEATURE_1_TITLE

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

SUB_FEATURE_2_TITLE

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

FEATURE_3_TITLE

For more details, check the LINK[LINK_DESCRIPTION].

Security vulnerability (CVE) fixes in this release

CVE CVSS Score Vulnerability Assessment Versions Affected Notes

Link[CVE-XXXX-XXXXX]

Score

vulnerability

Affected versions

Affected Features and other notes

For a list of past security vulnerability fixes, reference the Security vulnerability (CVE) list.

Notable bugs fixed in this release

We’ve spent some time fixing bugs. The following sections describe just some of the issues resolved in this release. If you’re interested, here’s the full list of bugs fixed in RELEASE_VERSION.

New and updated guides since the previous release

As Open Liberty features and functionality continue to grow, we continue to add new guides to openliberty.io on those topics to make their adoption as easy as possible. Existing guides also receive updates to address any reported bugs/issues, keep their content current, and expand what their topic covers.

Get Open Liberty RELEASE_VERSION now