From 9b5f5102018023441994f3a627d5d5bcad8cc5bc Mon Sep 17 00:00:00 2001 From: Jan Thijs <92784122+janthijs@users.noreply.github.com> Date: Mon, 27 Nov 2023 16:13:48 +0100 Subject: [PATCH] MIJN-7195 - Bodem live (#1072) * fix: turn on bodem * fix: 1 tag back --- scripts/release-notifications/release-notes.js | 2 +- src/universal/config/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-notifications/release-notes.js b/scripts/release-notifications/release-notes.js index 5f8319322f..598fbf6119 100644 --- a/scripts/release-notifications/release-notes.js +++ b/scripts/release-notifications/release-notes.js @@ -34,7 +34,7 @@ function getDateDiff(date1, date2 = new Date()) { function getChangesSinceLastRelease() { const tag = executeCommandSync( 'git tag -l release-* --sort=-"version:refname"' - ).slice(0, 16); + ).slice(16, 32); console.log(`Latest release tag found: ${tag}`); const commitId = executeCommandSync(`git rev-list -n 1 ${tag}`); diff --git a/src/universal/config/app.ts b/src/universal/config/app.ts index 310d1460d5..74fba0eae9 100644 --- a/src/universal/config/app.ts +++ b/src/universal/config/app.ts @@ -38,7 +38,7 @@ export const FeatureToggle = { avgActive: true, svwiLinkActive: !IS_PRODUCTION, ehKetenmachtigingActive: !IS_PRODUCTION, - bodemActive: !IS_PRODUCTION, + bodemActive: true, stadspasRequestsActive: false, };