chore: release v0.23.13

This commit is contained in:
Ulas Kalayci
2026-04-22 12:41:36 +02:00
parent 00afd37c90
commit 56286bcea3
4 changed files with 12 additions and 4 deletions
+5
View File
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.23.13] - 2026-04-22
### Security
- Installer: replaced template-literal URL construction with the `URL` constructor when setting the final "Open Oikos" link, eliminating a potential DOM-based XSS vector (CodeQL js/xss-through-dom, GitHub Advisory #7)
## [0.23.12] - 2026-04-22 ## [0.23.12] - 2026-04-22
### Fixed ### Fixed
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "oikos", "name": "oikos",
"version": "0.23.12", "version": "0.23.13",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "oikos", "name": "oikos",
"version": "0.23.12", "version": "0.23.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"bcrypt": "^6.0.0", "bcrypt": "^6.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "oikos", "name": "oikos",
"version": "0.23.12", "version": "0.23.13",
"description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.", "description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.",
"main": "server/index.js", "main": "server/index.js",
"type": "module", "type": "module",
+4 -1
View File
@@ -610,7 +610,10 @@ async function createAdmin() {
}); });
const d = await r.json(); const d = await r.json();
if (r.status === 201 || r.status === 403) { if (r.status === 201 || r.status === 403) {
$('done-link').href = `http://${S.host}:${S.port}`; const appUrl = new URL('http://placeholder');
appUrl.hostname = S.host;
appUrl.port = S.port;
$('done-link').href = appUrl.href;
showStep(7); showStep(7);
} else { } else {
btn.disabled = false; btn.textContent = 'Create Account'; btn.disabled = false; btn.textContent = 'Create Account';