From 87e3562757e39dfa7b3c9ef63f35193720a14134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Urb=C3=A1nek?= Date: Tue, 10 Oct 2023 13:00:39 +0200 Subject: [PATCH 1/2] Change Twitter logo to X logo and update theme color. --- site/.vitepress/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/.vitepress/config.ts b/site/.vitepress/config.ts index aab87ec..cb781a0 100644 --- a/site/.vitepress/config.ts +++ b/site/.vitepress/config.ts @@ -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', @@ -95,7 +96,7 @@ export default defineConfig({ }, socialLinks: [ { icon: 'github', link: 'https://github.com/WrenSecurity' }, - { icon: 'twitter', link: 'https://twitter.com/WrenSecurity' }, + { icon: { svg: '' }, link: 'https://twitter.com/WrenSecurity' }, { icon: { svg: '' }, link: 'https://gitter.im/WrenSecurity/Lobby' }, ], }, From 33873127503958f31fdfd9aa063519f34d0ddbb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Urb=C3=A1nek?= Date: Tue, 10 Oct 2023 13:54:14 +0200 Subject: [PATCH 2/2] Add Wren:AM 15.0.0 release blog post. --- site/blog/2023/10/wrenam-15-0-0-released.md | 48 +++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 site/blog/2023/10/wrenam-15-0-0-released.md diff --git a/site/blog/2023/10/wrenam-15-0-0-released.md b/site/blog/2023/10/wrenam-15-0-0-released.md new file mode 100644 index 0000000..198b735 --- /dev/null +++ b/site/blog/2023/10/wrenam-15-0-0-released.md @@ -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 +--- + + +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 +``` + +