Skip to content

Commit

Permalink
Merge pull request #18 from ondrejurbanek/wren-am-15-released
Browse files Browse the repository at this point in the history
Blog post about release of Wren:AM 15.0.0.
  • Loading branch information
pavelhoral authored Oct 10, 2023
2 parents c08c1d6 + 3387312 commit f7cc104
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
3 changes: 2 additions & 1 deletion site/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default defineConfig({
description: 'The Wren Security Suite.',
head: [
['meta', { name: 'viewport', content: 'width=device-width, initial-scale=1' } ],
['meta', { name: 'theme-color', content: '#c12233' } ],
],
themeConfig: {
logo: '/wren.png',
Expand Down Expand Up @@ -95,7 +96,7 @@ export default defineConfig({
},
socialLinks: [
{ icon: 'github', link: 'https://github.com/WrenSecurity' },
{ icon: 'twitter', link: 'https://twitter.com/WrenSecurity' },
{ icon: { svg: '<svg fill="#000000" viewBox="0 0 1200 1227" role="img"><path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"/></svg>' }, link: 'https://twitter.com/WrenSecurity' },
{ icon: { svg: '<svg fill="#000000" viewBox="0 0 24 24" role="img"><path d="M8.501 4.001H10.5V24H8.501V4.001zm6.999 0V24h-2V4.001h2zM3.5 0h2.001v15H3.5V0zm15 4.001h2V15h-2V4.001z"/></svg>' }, link: 'https://gitter.im/WrenSecurity/Lobby' },
],
},
Expand Down
48 changes: 48 additions & 0 deletions site/blog/2023/10/wrenam-15-0-0-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: Wren:AM 15.0.0 Released
date: 2023-10-10
excerpt: |
We're thrilled to announce the release of the anticipated new version of Wren:AM.
Take a closer look at the carefully curated changes that we have worked on.
sidebar: false
---

<Post>
We're thrilled to announce the release of the anticipated new version of Wren:AM. Following Wren:IDM and Wren:DS, it's now completely independent of the legacy infrastructure, features an upgraded technology stack, and is compatible with JDK 17 (with preparations for Jakarta EE). Additionally, we've addressed a significant number of issues from previous versions, predominantly the security ones.
The project remains highly compatible with abandoned community versions of OpenAM, allowing for a seamless migration process, with the added option to leverage Docker images for added convenience.

Numbers worth mentioning include:

* 89 pull requests merged;
* 136 new commits;
* 22 issues closed;
* 27 known AM security vulnerabilities fixed;
* 35 Dependabot alerts fixed;
* 93 security issues (reported by Trivy) fixed.

If you're already running Wren:AM or an unsupported version of OpenAM, we strongly recommend upgrading to get the best out of your access management solution.


## Changes

List of significant changes:

* Upgraded build pipeline (wrensec-parent, JFrog repository, GitHub Actions)
* Upgraded dependencies (including switch to Jakarta compatible coordinates)
* Added support for Java 17 as the default build and runtime environment
* Added Dockerfile and official images published to Docker Hub
* Fixed ton of security, build and runtime issues

Review all the changes on [GitHub](https://github.com/WrenSecurity/wrenam/releases/15.0.0).

## How to get

Refer to the [Getting Started](https://docs.wrensecurity.org/wrenam/latest/getting-started.html) page to learn how to get and run Wren:AM.

Alternatively you can run the official Docker image from [Docker Hub](https://hub.docker.com/r/wrensecurity/wrenam):

```bash
docker run --rm --name wrenam-test -p 8080:8080 wrensecurity/wrenam:15.0.0
```

</Post>

0 comments on commit f7cc104

Please sign in to comment.