Skip to content

Commit

Permalink
MIJN-7195 - Bodem live (#1072)
Browse files Browse the repository at this point in the history
* fix: turn on bodem

* fix: 1 tag back
  • Loading branch information
janthijs authored Nov 27, 2023
1 parent de2134b commit 9b5f510
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/release-notifications/release-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand Down
2 changes: 1 addition & 1 deletion src/universal/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const FeatureToggle = {
avgActive: true,
svwiLinkActive: !IS_PRODUCTION,
ehKetenmachtigingActive: !IS_PRODUCTION,
bodemActive: !IS_PRODUCTION,
bodemActive: true,
stadspasRequestsActive: false,
};

Expand Down

0 comments on commit 9b5f510

Please sign in to comment.