renovate[bot]
1d65ea6f6b
fix(deps): update module golang.org/x/image to v0.35.0
2026-01-12 18:58:23 +01:00
renovate[bot]
ffb7a58a23
fix(deps): update module golang.org/x/crypto to v0.47.0
2026-01-12 18:47:34 +01:00
renovate[bot]
d3639af7bc
chore(deps): update dev-dependencies
2026-01-11 09:11:30 +01:00
renovate[bot]
e97798574c
fix(deps): update dependency @fortawesome/vue-fontawesome to v3.1.3 ( #2079 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@fortawesome/vue-fontawesome](https://redirect.github.com/FortAwesome/vue-fontawesome )
| [`3.1.2` →
`3.1.3`](https://renovatebot.com/diffs/npm/@fortawesome%2fvue-fontawesome/3.1.2/3.1.3 )
|

|

|
---
### Release Notes
<details>
<summary>FortAwesome/vue-fontawesome
(@​fortawesome/vue-fontawesome)</summary>
###
[`v3.1.3`](https://redirect.github.com/FortAwesome/vue-fontawesome/blob/HEAD/CHANGELOG.md#313---2026-01-07 )
[Compare
Source](https://redirect.github.com/FortAwesome/vue-fontawesome/compare/3.1.2...3.1.3 )
##### Changed
- ci.yml update for node-versions
- a markdown lint fixup in CONTRIUBUTING.md
- update vitest version to 4.0.16 in `package.json`
***
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-10 22:42:20 +01:00
kolaente
e702785cf8
fix(filter): correct filter autocomplete for project names with spaces ( #2012 )
...
Filter expressions with multi-word values (such as project names with
spaces) are now automatically quoted to preserve them correctly as
single tokens in the filter syntax.
Fixes #2010
🐰 A filter's journey, refined with care,
Multi-word values now wear quotes fair,
Offsets aligned by the rabbit's precision,
Autocomplete flows with mathematical vision,
From comma to space, each boundary divine! ✨
2026-01-10 22:18:34 +01:00
kolaente
c0ba7210f3
chore: remove redundant is-danger class
2026-01-10 21:59:06 +01:00
kolaente
4f9681bde8
chore(form): add autocomplete attributes to a few fields
2026-01-10 21:59:06 +01:00
kolaente
a8f10a6e15
fix(register): explicitely check for username valid === true
2026-01-10 21:59:06 +01:00
kolaente
edebed151a
chore(team): add disabled prop to NewTeam checkbox
2026-01-10 21:59:06 +01:00
kolaente
f06e272225
test(frontend): add test for @keyup.enter forwarding in FormField
...
Verify that @keyup.enter modifier is properly forwarded to the inner
input element and only triggers for Enter key, not other keys.
2026-01-10 21:59:06 +01:00
kolaente
e4e2bd33c3
refactor(frontend): simplify event handlers in Register.vue
...
Replace arrow function wrappers with direct expressions and ternary
no-ops with short-circuit evaluation for cleaner, more readable code.
2026-01-10 21:59:06 +01:00
kolaente
483ddc728d
test(frontend): verify FormField generates unique IDs across instances
...
Mount multiple FormField components within the same Vue app to properly
test that useId() generates unique IDs for each instance. This validates
that labels correctly link to their respective inputs.
2026-01-10 21:59:06 +01:00
kolaente
8f0c7d504b
test(frontend): add regression test for FormField $attrs event forwarding
...
Verify that FormField forwards $attrs event listeners (onKeyup, onFocusout)
to its inner input element. This ensures migrated templates using
@keyup.enter and @focusout continue to work correctly.
2026-01-10 21:59:06 +01:00
kolaente
182b0b63d1
fix(frontend): preserve numeric type in FormField v-model
...
When modelValue is a number, emit the value as a number instead of
coercing to string. This prevents subtle type bugs when using
FormField with numeric v-model bindings.
2026-01-10 21:59:06 +01:00
kolaente
4ee29f9972
refactor(frontend): use FormField scoped slot id for select elements
...
Update FormField usages with slotted select elements to use the
exposed id from the scoped slot, ensuring label-input association
works correctly.
2026-01-10 21:59:06 +01:00
kolaente
ac2f14945b
feat(frontend): expose id via scoped slot in FormField
...
When using FormField with custom slot content, the slotted element
needs access to the generated inputId to ensure the label's for
attribute matches the input's id. This exposes the id via the
default slot: <template #default="{ id }">
2026-01-10 21:59:06 +01:00
kolaente
5ca600506b
fix(frontend): expose focus method on FormField component
...
Components using FormField with a ref need to call .focus() on it.
Without exposing the method, these calls would fail since the ref
points to the component instance, not the underlying input element.
2026-01-10 21:59:06 +01:00
kolaente
fb8ee82b98
fix(frontend): restore loading state on FormField migrations
...
Add loading prop to FormField usages where is-loading class was
accidentally removed during migration.
2026-01-10 21:59:06 +01:00
kolaente
bb16500cb5
feat(frontend): add loading prop to FormField component
...
When loading is true, adds 'is-loading' class to the input element.
2026-01-10 21:59:06 +01:00
kolaente
1ea8a3cdba
refactor(frontend): use FormField disabled prop instead of class
...
Simplify FormField usages by using the new disabled prop instead of
manually setting both :class="{ disabled: ... }" and :disabled="...".
2026-01-10 21:59:06 +01:00
kolaente
3577ba5132
feat(frontend): add disabled prop to FormField component
...
When disabled is true, the component now automatically adds the
'disabled' CSS class and sets the native disabled attribute on the
input element.
2026-01-10 21:59:06 +01:00
kolaente
e0235a6806
fix(project): don't focus project identifier
2026-01-10 21:59:06 +01:00
kolaente
ddd5662d66
fix(frontend): make v-focus directive work with wrapper components
...
When v-focus is applied to a non-focusable element (like a component
wrapper div), it now searches for the first focusable child element
(input, select, textarea, or contenteditable) and focuses that instead.
This allows v-focus to work correctly with FormField and similar
wrapper components.
2026-01-10 21:59:06 +01:00
kolaente
bad314b5e3
fix(frontend): make FormField value binding conditional
...
When FormField is used without v-model (modelValue undefined), the
component was clearing user input on re-render. This broke login forms
that access the input value directly via refs for browser autofill
compatibility.
Now the value attribute is only bound when modelValue is explicitly
provided, allowing native input behavior when v-model isn't used.
2026-01-10 21:59:06 +01:00
kolaente
d86465cbd7
refactor(frontend): migrate view forms to FormField component
...
Migrate ViewEditForm and ProjectGantt components to use the new
FormField component for title, kind select, and date range fields.
2026-01-10 21:59:06 +01:00
kolaente
1391b42c07
refactor(frontend): migrate LinkSharing to FormField component
...
Migrate LinkSharing component to use the new FormField component
for permission select, name, password, and share URL fields.
2026-01-10 21:59:06 +01:00
kolaente
4e2db482cd
refactor(frontend): migrate project settings to FormField component
...
Migrate ProjectSettingsEdit and ProjectSettingsWebhooks views
to use the new FormField component.
2026-01-10 21:59:06 +01:00
kolaente
73df9b257d
refactor(frontend): migrate entity forms to FormField component
...
Migrate NewTeam, EditTeam, NewProject, NewLabel, ListLabels,
FilterNew, and FilterEdit views to use the new FormField component.
2026-01-10 21:59:06 +01:00
kolaente
908c241ec7
refactor(frontend): migrate user settings to FormField component
...
Migrate ApiTokens, Caldav, DataExport, Deletion, EmailUpdate,
PasswordUpdate, TOTP, and DataExportDownload views to use the
new FormField component.
2026-01-10 21:59:06 +01:00
kolaente
0c23714a79
refactor(frontend): migrate auth views to FormField component
...
Migrate Login, Register, RequestPasswordReset, and LinkSharingAuth
views to use the new FormField component instead of manual
field/control/input markup.
2026-01-10 21:59:06 +01:00
kolaente
eb1f852927
feat(frontend): add FormField component for form field abstraction
...
Introduces a reusable FormField component that abstracts Bulma's
field/control/input pattern into a single component. This provides
a consistent API for form fields and prepares the codebase for
future CSS framework migrations.
Features:
- v-model binding for form values
- label prop with automatic for attribute linking
- error prop for validation messages
- Default slot for custom inputs (selects, editors)
- addon slot for button addons
- Attribute passthrough via v-bind="$attrs"
- Exposed value getter for browser autofill workarounds
Includes 14 unit tests covering all functionality.
2026-01-10 21:59:06 +01:00
kolaente
e5cfe3aa13
fix(button): fix button text color to #ffffff
...
Fixes regression introduced in cac2690fd6
2026-01-10 18:47:50 +01:00
kolaente
61b4c1b87e
fix(attachment): make sure long attachment names break the title
2026-01-10 18:46:55 +01:00
kolaente
b9ccc81ec0
fix(button): white color text for is-danger variant
2026-01-10 18:36:33 +01:00
kolaente
5ab58e6bda
fix(webhooks): make sure validation is re-triggered after selecting events when it was invalid the first time
2026-01-10 18:35:12 +01:00
kolaente
cac2690fd6
fix(button): make sure button text color is always white
2026-01-10 18:31:18 +01:00
kolaente
84b733ec0c
fix(webhooks): make sure events are initialized with false
2026-01-10 18:31:18 +01:00
kolaente
9a3e79af8e
feat(frontend): add danger prop to XButton component ( #2078 )
...
The is-danger class no longer worked on XButton because the component uses scoped CSS. This adds a proper danger boolean prop that applies danger styling (red background) as a color modifier that works alongside any variant (primary, secondary, tertiary).
2026-01-10 17:22:19 +00:00
kolaente
534483f237
fix(filter): ensure year is always within mysql allowed range
...
Fixes https://github.com/go-vikunja/vikunja/issues/2077
2026-01-09 23:11:22 +01:00
renovate[bot]
0ff6a348e4
fix(deps): update module golang.org/x/text to v0.33.0 ( #2076 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [golang.org/x/text](https://pkg.go.dev/golang.org/x/text ) | [`v0.32.0`
→
`v0.33.0`](https://cs.opensource.google/go/x/text/+/refs/tags/v0.32.0...refs/tags/v0.33.0 )
|

|

|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-09 22:00:45 +00:00
kolaente
e085fcaef2
feat(migration/todoist): migrate from Sync API v9 to API v1 ( #2072 )
...
Migrates the Todoist migration module from the deprecated Sync API v9 to the new unified Todoist API v1.
2026-01-09 22:50:27 +01:00
renovate[bot]
ff5befcda4
fix(deps): update module golang.org/x/term to v0.39.0 ( #2075 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [golang.org/x/term](https://pkg.go.dev/golang.org/x/term ) | [`v0.38.0`
→
`v0.39.0`](https://cs.opensource.google/go/x/term/+/refs/tags/v0.38.0...refs/tags/v0.39.0 )
|

|

|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-09 22:17:55 +01:00
renovate[bot]
6bcdfc50e2
fix(deps): update dependency ufo to v1.6.2 ( #2074 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [ufo](https://redirect.github.com/unjs/ufo ) | [`1.6.1` →
`1.6.2`](https://renovatebot.com/diffs/npm/ufo/1.6.1/1.6.2 ) |

|

|
---
### Release Notes
<details>
<summary>unjs/ufo (ufo)</summary>
###
[`v1.6.2`](https://redirect.github.com/unjs/ufo/blob/HEAD/CHANGELOG.md#v162 )
[Compare
Source](https://redirect.github.com/unjs/ufo/compare/v1.6.1...v1.6.2 )
[compare
changes](https://redirect.github.com/unjs/ufo/compare/v1.6.1...v1.6.2 )
##### 🩹 Fixes
- Fix `parsePath` return type
([#​293](https://redirect.github.com/unjs/ufo/pull/293 ))
##### 📖 Documentation
- Add more examples in jsdoc
([#​291](https://redirect.github.com/unjs/ufo/pull/291 ))
##### 📦 Build
- Fix exports condition order to prefer esm with default fallback
([8457581](https://redirect.github.com/unjs/ufo/commit/8457581 ))
##### 🏡 Chore
- **release:** V1.6.1
([b83cbea](https://redirect.github.com/unjs/ufo/commit/b83cbea ))
- Update deps
([9d1833b](https://redirect.github.com/unjs/ufo/commit/9d1833b ))
- Lint ([0181677](https://redirect.github.com/unjs/ufo/commit/0181677 ))
##### ❤️ Contributors
- Daedalus
([@​ComfortablyCoding](https://redirect.github.com/ComfortablyCoding ))
- Pooya Parsa ([@​pi0](https://redirect.github.com/pi0 ))
- Alex Liu
([@​Mini-ghost](https://redirect.github.com/Mini-ghost ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-09 14:54:44 +01:00
renovate[bot]
419c791e0c
chore(deps): update dev-dependencies ( #2073 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin )
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ))
| [`8.51.0` →
`8.52.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.51.0/8.52.0 )
|

|

|
|
[@typescript-eslint/parser](https://typescript-eslint.io/packages/parser )
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ))
| [`8.51.0` →
`8.52.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.51.0/8.52.0 )
|

|

|
| [rollup](https://rollupjs.org/ )
([source](https://redirect.github.com/rollup/rollup )) | [`4.54.0` →
`4.55.1`](https://renovatebot.com/diffs/npm/rollup/4.54.0/4.55.1 ) |

|

|
| [sass-embedded](https://redirect.github.com/sass/embedded-host-node ) |
[`1.97.1` →
`1.97.2`](https://renovatebot.com/diffs/npm/sass-embedded/1.97.1/1.97.2 )
|

|

|
| [vue-tsc](https://redirect.github.com/vuejs/language-tools )
([source](https://redirect.github.com/vuejs/language-tools/tree/HEAD/packages/tsc ))
| [`3.2.1` →
`3.2.2`](https://renovatebot.com/diffs/npm/vue-tsc/3.2.1/3.2.2 ) |

|

|
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/eslint-plugin)</summary>
###
[`v8.52.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#8520-2026-01-05 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.51.0...v8.52.0 )
##### 🚀 Features
- **eslint-plugin-internal:** \[no-multiple-lines-of-errors] add rule
([#​11899](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11899 ))
##### 🩹 Fixes
- **eslint-plugin:** \[no-base-to-string] detect
@​[@​toPrimitive](https://redirect.github.com/toPrimitive )
and valueOf
([#​11901](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11901 ))
- **eslint-plugin:** \[no-useless-default-assignment] handle conditional
initializer
([#​11908](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11908 ))
##### ❤️ Thank You
- Josh Goldberg ✨
- Ulrich Stark
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning ) and
[releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/parser)</summary>
###
[`v8.52.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8520-2026-01-05 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.51.0...v8.52.0 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning ) and
[releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>rollup/rollup (rollup)</summary>
###
[`v4.55.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4551 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.54.0...v4.55.1 )
*2026-01-05*
##### Bug Fixes
- Fix artifact reference for OpenBSD
([#​6231](https://redirect.github.com/rollup/rollup/issues/6231 ))
##### Pull Requests
- [#​6231](https://redirect.github.com/rollup/rollup/pull/6231 ):
Fix OpenBSD artifacts and ensure OIDC is working
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
</details>
<details>
<summary>sass/embedded-host-node (sass-embedded)</summary>
###
[`v1.97.2`](https://redirect.github.com/sass/embedded-host-node/blob/HEAD/CHANGELOG.md#1972 )
[Compare
Source](https://redirect.github.com/sass/embedded-host-node/compare/1.97.1...1.97.2 )
- Additional fixes for implicit configuration when nested imports are
involved.
</details>
<details>
<summary>vuejs/language-tools (vue-tsc)</summary>
###
[`v3.2.2`](https://redirect.github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#322-2026-01-06 )
[Compare
Source](https://redirect.github.com/vuejs/language-tools/compare/v3.2.1...v3.2.2 )
##### language-core
- **fix:** correct code features on v-bind shorthands of special
attributes - Thanks to
[@​KazariEX](https://redirect.github.com/KazariEX )!
##### language-plugin-pug
- **feat:** accurate Pug shorthand mapping
([#​5906](https://redirect.github.com/vuejs/language-tools/issues/5906 ))
- **fix:** pre-map HTML to Pug offset attribute
([#​5905](https://redirect.github.com/vuejs/language-tools/issues/5905 ))
##### language-service
- **feat:** strip `=""` for boolean props completion edits
([#​5888](https://redirect.github.com/vuejs/language-tools/issues/5888 ))
- Thanks to [@​KazariEX](https://redirect.github.com/KazariEX )!
- **fix:** avoid duplicate directive modifiers in completion
([#​5920](https://redirect.github.com/vuejs/language-tools/issues/5920 ))
- Thanks to [@​KazariEX](https://redirect.github.com/KazariEX )!
##### typescript-plugin
- **fix:** only forward quick info and suggestion diagnostics for setup
bindings
([#​5892](https://redirect.github.com/vuejs/language-tools/issues/5892 ))
- Thanks to [@​KazariEX](https://redirect.github.com/KazariEX )!
</details>
---
### Configuration
📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3
* * * ) (UTC), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions ) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-09 09:05:16 +01:00
kolaente
0f9a04d5d5
fix(frontend): prevent parent project field from jumping back when cleared ( #2071 )
...
Fixes the parent project field in project settings "jumping back" to the previous value after clearing the value from the input.
Fixes #2046
2026-01-08 17:25:00 +01:00
kolaente
8987f0890a
fix(mail): disable queue when mailer disabled ( #2069 )
...
- Don't create the mail queue when the mailer is disabled to prevent
`SendMail()` from blocking indefinitely
- Add guard clause in `SendMail()` to return early when mailer is
disabled or queue is nil
- Add test to verify notifications don't block when mailer is disabled
This implements the changes from #1080 with the review feedback
addressed (using `package notifications` instead of `package
notifications_test`).
Closes #1080
2026-01-08 15:51:31 +01:00
kolaente
745fde41ca
fix: prevent timezone field from overflowing container on smaller viewports ( #2066 )
...
Closes #2044
2026-01-08 14:30:04 +00:00
kolaente
909b35ea76
fix: multiselect clear button now properly clears the value ( #2067 )
...
Fixes #2045
2026-01-08 14:16:03 +00:00
kolaente
6c7a800bf4
fix: set log path before creating log handler ( #2064 )
...
Resolves #2020
2026-01-08 13:53:08 +00:00
renovate[bot]
3957a43d74
fix(deps): update module golang.org/x/sys to v0.40.0 ( #2068 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [golang.org/x/sys](https://pkg.go.dev/golang.org/x/sys ) | [`v0.39.0` →
`v0.40.0`](https://cs.opensource.google/go/x/sys/+/refs/tags/v0.39.0...refs/tags/v0.40.0 )
|

|

|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-08 13:28:42 +00:00