renovate[bot]
aea4def3cf
chore(deps): update dependency esbuild to v0.27.2
2025-12-22 09:44:27 +01:00
renovate[bot]
dd5d418b3c
fix(deps): update dependency @sentry/vue to v10.32.0 ( #2015 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue )
([source](https://redirect.github.com/getsentry/sentry-javascript )) |
[`10.31.0` ->
`10.32.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/10.31.0/10.32.0 )
|

|

|
---
### Release Notes
<details>
<summary>getsentry/sentry-javascript (@​sentry/vue)</summary>
###
[`v10.32.0`](https://redirect.github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#10320 )
[Compare
Source](https://redirect.github.com/getsentry/sentry-javascript/compare/10.31.0...10.32.0 )
##### Important Changes
- **feat(core): Apply scope attributes to logs
([#​18184](https://redirect.github.com/getsentry/sentry-javascript/pull/18184 ))**
You can now set attributes on the SDK's scopes which will be applied to
all logs as long as the respective scopes are active. For the time
being, only `string`, `number` and `boolean` attribute values are
supported.
```ts
Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider:
'google' });
Sentry.withScope(scope => {
scope.setAttribute('step', 'authentication');
// scope attributes `is_admin`, `auth_provider` and `step` are added
Sentry.logger.info(`user ${user.id} logged in`, { activeSince: 100 });
Sentry.logger.info(`updated ${user.id} last activity`);
});
// scope attributes `is_admin` and `auth_provider` are added
Sentry.logger.warn('stale website version, reloading page');
```
- **feat(replay): Add Request body with `attachRawBodyFromRequest`
option
([#​18501](https://redirect.github.com/getsentry/sentry-javascript/pull/18501 ))**
To attach the raw request body (from `Request` objects passed as the
first `fetch` argument) to replay events, you can now use the
`attachRawBodyFromRequest` option in the Replay integration:
```js
Sentry.init({
integrations: [
Sentry.replayIntegration({
attachRawBodyFromRequest: true,
}),
],
});
```
- **feat(tanstackstart-react): Trace server functions
([#​18500](https://redirect.github.com/getsentry/sentry-javascript/pull/18500 ))**
To enable tracing for server-side requests, you can now explicitly
define a [server entry
point](https://tanstack.com/start/latest/docs/framework/react/guide/server-entry-point )
in your application and wrap your request handler with
`wrapFetchWithSentry`.
```typescript
// src/server.ts
import { wrapFetchWithSentry } from
'@​sentry/tanstackstart-react';
import handler, { createServerEntry } from
'@​tanstack/react-start/server-entry';
export default createServerEntry(
wrapFetchWithSentry({
fetch(request: Request) {
return handler.fetch(request);
},
}),
);
```
- **feat(vue): Add TanStack Router integration
([#​18547](https://redirect.github.com/getsentry/sentry-javascript/pull/18547 ))**
The `@sentry/vue` package now includes support for TanStack Router. Use
`tanstackRouterBrowserTracingIntegration` to automatically instrument
pageload and navigation transactions with parameterized routes:
```javascript
import { createApp } from 'vue';
import { createRouter } from '@​tanstack/vue-router';
import * as Sentry from '@​sentry/vue';
import { tanstackRouterBrowserTracingIntegration } from
'@​sentry/vue/tanstackrouter';
const router = createRouter({
// your router config
});
Sentry.init({
app,
dsn: '__PUBLIC_DSN__',
integrations: [tanstackRouterBrowserTracingIntegration(router)],
tracesSampleRate: 1.0,
});
```
##### Other Changes
- feat(core): Capture initialize attributes on MCP servers
([#​18531](https://redirect.github.com/getsentry/sentry-javascript/pull/18531 ))
- feat(nextjs): Extract tracing logic from server component wrapper
templates
([#​18408](https://redirect.github.com/getsentry/sentry-javascript/pull/18408 ))
- feat(nextjs): added webpack treeshaking flags as config
([#​18359](https://redirect.github.com/getsentry/sentry-javascript/pull/18359 ))
- fix(solid/tanstackrouter): Ensure web vitals are sent on pageload
([#​18542](https://redirect.github.com/getsentry/sentry-javascript/pull/18542 ))
<details>
<summary> <strong>Internal Changes</strong> </summary>
- chore(changelog): Add entry for scope attributes
([#​18555](https://redirect.github.com/getsentry/sentry-javascript/pull/18555 ))
- chore(changelog): Add entry for tanstack start wrapFetchWithSentry
([#​18558](https://redirect.github.com/getsentry/sentry-javascript/pull/18558 ))
- chore(deps): bump
[@​trpc/server](https://redirect.github.com/trpc/server ) from
10.45.2 to 10.45.3 in
/dev-packages/e2e-tests/test-applications/node-express-incorrect-instrumentation
([#​18530](https://redirect.github.com/getsentry/sentry-javascript/pull/18530 ))
- chore(deps): bump
[@​trpc/server](https://redirect.github.com/trpc/server ) from
10.45.2 to 10.45.3 in
/dev-packages/e2e-tests/test-applications/node-express-v5
([#​18550](https://redirect.github.com/getsentry/sentry-javascript/pull/18550 ))
- chore(e2e): Pin to react-router 7.10.1 in spa e2e test
([#​18548](https://redirect.github.com/getsentry/sentry-javascript/pull/18548 ))
- chore(e2e): Remove check on
`http.response_content_length_uncompressed`
([#​18536](https://redirect.github.com/getsentry/sentry-javascript/pull/18536 ))
- chore(github): Add "Closes" to PR template
([#​18538](https://redirect.github.com/getsentry/sentry-javascript/pull/18538 ))
- test(cloudflare-mcp): Unpin mcp sdk
([#​18528](https://redirect.github.com/getsentry/sentry-javascript/pull/18528 ))
- test(nextjs): Add e2e tests for server component spans in next 16
([#​18544](https://redirect.github.com/getsentry/sentry-javascript/pull/18544 ))
</details>
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-21 14:38:37 +00:00
renovate[bot]
301a12be12
fix(deps): update dependency vue to v3.5.26 ( #2014 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[vue](https://redirect.github.com/vuejs/core/tree/main/packages/vue#readme )
([source](https://redirect.github.com/vuejs/core )) | [`3.5.25` ->
`3.5.26`](https://renovatebot.com/diffs/npm/vue/3.5.25/3.5.26 ) |

|

|
---
### Release Notes
<details>
<summary>vuejs/core (vue)</summary>
###
[`v3.5.26`](https://redirect.github.com/vuejs/core/blob/HEAD/CHANGELOG.md#3526-2025-12-18 )
[Compare
Source](https://redirect.github.com/vuejs/core/compare/v3.5.25...v3.5.26 )
##### Bug Fixes
- **compat:** fix compat handler of draggable
([#​12445](https://redirect.github.com/vuejs/core/issues/12445 ))
([ed85953](ed85953e28 )),
closes
[#​12444](https://redirect.github.com/vuejs/core/issues/12444 )
- **compat:** handle v-model deprecation warning with missing appContext
([#​14203](https://redirect.github.com/vuejs/core/issues/14203 ))
([945a543](945a543152 )),
closes
[#​14202](https://redirect.github.com/vuejs/core/issues/14202 )
- **compiler-sfc:** demote const reactive bindings used in v-model
([#​14214](https://redirect.github.com/vuejs/core/issues/14214 ))
([e24ff7d](e24ff7d302 )),
closes
[#​11265](https://redirect.github.com/vuejs/core/issues/11265 )
[#​11275](https://redirect.github.com/vuejs/core/issues/11275 )
- **compiler-ssr:** handle ssr attr fallthrough when preserve whitespace
([#​12304](https://redirect.github.com/vuejs/core/issues/12304 ))
([4783118](4783118919 )),
closes
[#​8072](https://redirect.github.com/vuejs/core/issues/8072 )
- **hmr:** handle cached text node update
([#​14134](https://redirect.github.com/vuejs/core/issues/14134 ))
([69ce3c7](69ce3c7d75 )),
closes
[#​14127](https://redirect.github.com/vuejs/core/issues/14127 )
- **keep-alive:** use resolved component name for async components in
cache pruning
([#​14212](https://redirect.github.com/vuejs/core/issues/14212 ))
([dfe667c](dfe667c856 )),
closes
[#​14210](https://redirect.github.com/vuejs/core/issues/14210 )
- **runtime-core:** ensure correct anchor el for deeper unresolved async
components
([#​14182](https://redirect.github.com/vuejs/core/issues/14182 ))
([f5b3bf2](f5b3bf264d )),
closes
[#​14173](https://redirect.github.com/vuejs/core/issues/14173 )
- **runtime-core:** handle patch stable fragment edge case
([#​12411](https://redirect.github.com/vuejs/core/issues/12411 ))
([94aeb64](94aeb64ccd )),
closes
[#​12410](https://redirect.github.com/vuejs/core/issues/12410 )
- **runtime-core:** pass component instance to flushPreFlushCbs on
unmount
([#​14221](https://redirect.github.com/vuejs/core/issues/14221 ))
([e857e12](e857e12c0a )),
closes
[#​14215](https://redirect.github.com/vuejs/core/issues/14215 )
##### Performance Improvements
- **compiler-core:** use binary-search to get line and column
([#​14222](https://redirect.github.com/vuejs/core/issues/14222 ))
([1904053](1904053f1f ))
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-21 14:19:33 +00:00
renovate[bot]
0bb04e9c39
fix(deps): pin dependency nanoid to 5.1.6 ( #2008 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [nanoid](https://redirect.github.com/ai/nanoid ) | dependencies | pin |
[`^5.1.6` ->
`5.1.6`](https://renovatebot.com/diffs/npm/nanoid/5.1.6/5.1.6 ) |
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### 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 is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-19 16:47:02 +00:00
renovate[bot]
7d1655e9d7
fix(deps): update dependency @sentry/vue to v10.31.0 ( #2009 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue )
([source](https://redirect.github.com/getsentry/sentry-javascript )) |
[`10.30.0` ->
`10.31.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/10.30.0/10.31.0 )
|

|

|
---
### Release Notes
<details>
<summary>getsentry/sentry-javascript (@​sentry/vue)</summary>
###
[`v10.31.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/10.31.0 )
[Compare
Source](https://redirect.github.com/getsentry/sentry-javascript/compare/10.30.0...10.31.0 )
##### Important Changes
- **feat(browser): Add support for GraphQL persisted operations
([#​18505](https://redirect.github.com/getsentry/sentry-javascript/pull/18505 ))**
The `graphqlClientIntegration` now supports GraphQL persisted operations
(queries). When a persisted query is detected, the integration will
capture the operation hash and version as span attributes:
- `graphql.persisted_query.hash.sha256` - The SHA-256 hash of the
persisted query
- `graphql.persisted_query.version` - The version of the persisted query
protocol
Additionally, the `graphql.document` attribute format has changed to
align with OpenTelemetry semantic conventions. It now contains only the
GraphQL query string instead of the full JSON request payload.
**Before:**
```javascript
"graphql.document": "{\"query\":\"query Test { user { id } }\"}"
```
**After:**
```javascript
"graphql.document": "query Test { user { id } }"
```
##### Other Changes
- feat(node): Support `propagateTraceparent` option
([#​18476](https://redirect.github.com/getsentry/sentry-javascript/pull/18476 ))
- feat(bun): Expose spotlight option in TypeScript
([#​18436](https://redirect.github.com/getsentry/sentry-javascript/pull/18436 ))
- feat(core): Add additional exports for `captureException` and
`captureMessage` parameter types
([#​18521](https://redirect.github.com/getsentry/sentry-javascript/pull/18521 ))
- feat(core): Export `captureException` and `captureMessage` parameter
types
([#​18509](https://redirect.github.com/getsentry/sentry-javascript/pull/18509 ))
- feat(core): Parse individual cookies from cookie header
([#​18325](https://redirect.github.com/getsentry/sentry-javascript/pull/18325 ))
- feat(node): Add instrument OpenAI export to node
([#​18461](https://redirect.github.com/getsentry/sentry-javascript/pull/18461 ))
- feat(nuxt): Bump `@sentry/vite-plugin` and `@sentry/rollup-plugin` to
4.6.1
([#​18349](https://redirect.github.com/getsentry/sentry-javascript/pull/18349 ))
- feat(profiling): Add support for Node v24 in the prune script
([#​18447](https://redirect.github.com/getsentry/sentry-javascript/pull/18447 ))
- feat(tracing): strip inline media from messages
([#​18413](https://redirect.github.com/getsentry/sentry-javascript/pull/18413 ))
- feat(node): Add ESM support for postgres.js instrumentation
([#​17961](https://redirect.github.com/getsentry/sentry-javascript/pull/17961 ))
- fix(browser): Stringify span context in linked traces log statement
([#​18376](https://redirect.github.com/getsentry/sentry-javascript/pull/18376 ))
- fix(google-cloud-serverless): Move
[@​types/express](https://redirect.github.com/types/express ) to
optional peerDeps
([#​18452](https://redirect.github.com/getsentry/sentry-javascript/pull/18452 ))
- fix(node-core): passthrough node-cron context
([#​17835](https://redirect.github.com/getsentry/sentry-javascript/pull/17835 ))
- fix(tanstack-router): Check for `fromLocation` existence before
reporting pageload
([#​18463](https://redirect.github.com/getsentry/sentry-javascript/pull/18463 ))
- fix(tracing): add system prompt, model to google genai
([#​18424](https://redirect.github.com/getsentry/sentry-javascript/pull/18424 ))
- fix(tracing): Set span operations for AI spans with model ID only
([#​18471](https://redirect.github.com/getsentry/sentry-javascript/pull/18471 ))
- ref(browser): Improve profiling debug statement
([#​18507](https://redirect.github.com/getsentry/sentry-javascript/pull/18507 ))
<details>
<summary> <strong>Internal Changes</strong> </summary>
- chore: Add external contributor to CHANGELOG.md
([#​18473](https://redirect.github.com/getsentry/sentry-javascript/pull/18473 ))
- chore: upgrade Playwright to \~1.56.0 for WSL2 compatibility
([#​18468](https://redirect.github.com/getsentry/sentry-javascript/pull/18468 ))
- chore(bugbot): Add testing conventions code review rules
([#​18433](https://redirect.github.com/getsentry/sentry-javascript/pull/18433 ))
- chore(deps): bump next from 14.2.25 to 14.2.35 in
/dev-packages/e2e-tests/test-applications/create-next-app
([#​18494](https://redirect.github.com/getsentry/sentry-javascript/pull/18494 ))
- chore(deps): bump next from 14.2.32 to 14.2.35 in
/dev-packages/e2e-tests/test-applications/nextjs-orpc
([#​18520](https://redirect.github.com/getsentry/sentry-javascript/pull/18520 ))
- chore(deps): bump next from 14.2.32 to 14.2.35 in
/dev-packages/e2e-tests/test-applications/nextjs-pages-dir
([#​18496](https://redirect.github.com/getsentry/sentry-javascript/pull/18496 ))
- chore(deps): bump next from 15.5.7 to 15.5.9 in
/dev-packages/e2e-tests/test-applications/nextjs-15
([#​18482](https://redirect.github.com/getsentry/sentry-javascript/pull/18482 ))
- chore(deps): bump next from 15.5.7 to 15.5.9 in
/dev-packages/e2e-tests/test-applications/nextjs-15-intl
([#​18483](https://redirect.github.com/getsentry/sentry-javascript/pull/18483 ))
- chore(deps): bump next from 16.0.7 to 16.0.9 in
/dev-packages/e2e-tests/test-applications/nextjs-16
([#​18480](https://redirect.github.com/getsentry/sentry-javascript/pull/18480 ))
- chore(deps): bump next from 16.0.7 to 16.0.9 in
/dev-packages/e2e-tests/test-applications/nextjs-16-cacheComponents
([#​18479](https://redirect.github.com/getsentry/sentry-javascript/pull/18479 ))
- chore(deps): bump next from 16.0.7 to 16.0.9 in
/dev-packages/e2e-tests/test-applications/nextjs-16-tunnel
([#​18481](https://redirect.github.com/getsentry/sentry-javascript/pull/18481 ))
- chore(deps): bump next from 16.0.9 to 16.0.10 in
/dev-packages/e2e-tests/test-applications/nextjs-16
([#​18514](https://redirect.github.com/getsentry/sentry-javascript/pull/18514 ))
- chore(deps): bump next from 16.0.9 to 16.0.10 in
/dev-packages/e2e-tests/test-applications/nextjs-16-tunnel
([#​18487](https://redirect.github.com/getsentry/sentry-javascript/pull/18487 ))
- chore(tests): Added test variant flag
([#​18458](https://redirect.github.com/getsentry/sentry-javascript/pull/18458 ))
- test(cloudflare-mcp): Pin mcp sdk to 1.24.0
([#​18524](https://redirect.github.com/getsentry/sentry-javascript/pull/18524 ))
</details>
Work in this release was contributed by
[@​sebws](https://redirect.github.com/sebws ) and
[@​TBeeren](https://redirect.github.com/TBeeren ). Thank you for
your contributions!
#### Bundle size 📦
| Path | Size |
|
-----------------------------------------------------------------------------------------------------
| --------- |
| [@​sentry/browser](https://redirect.github.com/sentry/browser ) |
24.23 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser ) -
with treeshaking flags | 22.76 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing) | 40.58 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Profiling) | 45.08 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay) | 78.1 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay) - with treeshaking flags | 68.07 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay with Canvas) | 82.67 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay, Feedback) | 94.62 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Feedback) | 40.54 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. sendFeedback) | 28.8 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. FeedbackAsync) | 33.68 KB |
| [@​sentry/react](https://redirect.github.com/sentry/react ) |
25.9 KB |
| [@​sentry/react](https://redirect.github.com/sentry/react )
(incl. Tracing) | 42.73 KB |
| [@​sentry/vue](https://redirect.github.com/sentry/vue ) | 28.58
KB |
| [@​sentry/vue](https://redirect.github.com/sentry/vue ) (incl.
Tracing) | 42.35 KB |
| [@​sentry/svelte](https://redirect.github.com/sentry/svelte ) |
24.24 KB |
| CDN Bundle | 26.59 KB |
| CDN Bundle (incl. Tracing) | 41.23 KB |
| CDN Bundle (incl. Tracing, Replay) | 76.9 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 82.23 KB |
| CDN Bundle - uncompressed | 78.15 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 122.44 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 235.75 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 248.21
KB |
| [@​sentry/nextjs](https://redirect.github.com/sentry/nextjs )
(client) | 44.9 KB |
|
[@​sentry/sveltekit](https://redirect.github.com/sentry/sveltekit )
(client) | 40.94 KB |
|
[@​sentry/node-core](https://redirect.github.com/sentry/node-core )
| 50.39 KB |
| [@​sentry/node](https://redirect.github.com/sentry/node ) | 157.7
KB |
| [@​sentry/node](https://redirect.github.com/sentry/node ) -
without tracing | 90.85 KB |
|
[@​sentry/aws-serverless](https://redirect.github.com/sentry/aws-serverless )
| 106 KB |
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-19 16:27:43 +00:00
renovate[bot]
74c3225c3a
chore(deps): update dev-dependencies ( #2005 )
...
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.49.0` ->
`8.50.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.49.0/8.50.0 )
|

|

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

|

|
| [rollup](https://rollupjs.org/ )
([source](https://redirect.github.com/rollup/rollup )) | [`4.53.3` ->
`4.53.5`](https://renovatebot.com/diffs/npm/rollup/4.53.3/4.53.5 ) |

|

|
| [sass-embedded](https://redirect.github.com/sass/embedded-host-node ) |
[`1.96.0` ->
`1.97.0`](https://renovatebot.com/diffs/npm/sass-embedded/1.96.0/1.97.0 )
|

|

|
| [vite](https://vite.dev )
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite ))
| [`7.2.7` ->
`7.3.0`](https://renovatebot.com/diffs/npm/vite/7.2.7/7.3.0 ) |

|

|
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/eslint-plugin)</summary>
###
[`v8.50.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#8500-2025-12-15 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.49.0...v8.50.0 )
##### 🚀 Features
- **eslint-plugin:** \[no-useless-default-assignment] add rule
([#​11720](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11720 ))
##### ❤️ 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.50.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8500-2025-12-15 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.49.0...v8.50.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.53.5`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4535 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.53.4...v4.53.5 )
*2025-12-16*
##### Bug Fixes
- Fix wrong semicolon insertion position when using JSX
([#​6206](https://redirect.github.com/rollup/rollup/issues/6206 ))
- Generate spec-compliant sourcemaps when sources content is excluded
([#​6196](https://redirect.github.com/rollup/rollup/issues/6196 ))
##### Pull Requests
- [#​6196](https://redirect.github.com/rollup/rollup/pull/6196 ):
fix: set sourcesContent to undefined instead of null when excluding
sources content
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​6206](https://redirect.github.com/rollup/rollup/pull/6206 ):
Fix semicolon order in JSX
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.53.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4534 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.53.3...v4.53.4 )
*2025-12-15*
##### Bug Fixes
- Ensure `Symbol.dispose` and `Symbol.asyncDispose` properties are never
removed with `(await) using` declarations.
([#​6209](https://redirect.github.com/rollup/rollup/issues/6209 ))
##### Pull Requests
- [#​6185](https://redirect.github.com/rollup/rollup/pull/6185 ):
chore(deps): update dependency
[@​inquirer/prompts](https://redirect.github.com/inquirer/prompts )
to v8 ([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​6186](https://redirect.github.com/rollup/rollup/pull/6186 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​6187](https://redirect.github.com/rollup/rollup/pull/6187 ):
chore(deps): lock file maintenance
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​6188](https://redirect.github.com/rollup/rollup/pull/6188 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​6190](https://redirect.github.com/rollup/rollup/pull/6190 ):
Fix syntax error in manualChunks example
([@​jonnyeom](https://redirect.github.com/jonnyeom ))
- [#​6194](https://redirect.github.com/rollup/rollup/pull/6194 ):
chore(deps): update actions/checkout action to v6
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​6195](https://redirect.github.com/rollup/rollup/pull/6195 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​6202](https://redirect.github.com/rollup/rollup/pull/6202 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​6203](https://redirect.github.com/rollup/rollup/pull/6203 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​6209](https://redirect.github.com/rollup/rollup/pull/6209 ):
Do not tree-shake handlers for "using"
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
</details>
<details>
<summary>sass/embedded-host-node (sass-embedded)</summary>
###
[`v1.97.0`](https://redirect.github.com/sass/embedded-host-node/blob/HEAD/CHANGELOG.md#1970 )
[Compare
Source](https://redirect.github.com/sass/embedded-host-node/compare/1.96.0...1.97.0 )
- Add support for the `display-p3-linear` color space.
</details>
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v7.3.0`](https://redirect.github.com/vitejs/vite/releases/tag/v7.3.0 )
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v7.2.7...v7.3.0 )
Please refer to
[CHANGELOG.md](https://redirect.github.com/vitejs/vite/blob/v7.3.0/packages/vite/CHANGELOG.md )
for details.
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-19 17:16:11 +01:00
kolaente
ef1efbc29a
fix(editor): make sure checkbox lists are unique ( #2007 )
...
This fixes a checkbox persistence bug where toggling one checkbox would affect others with identical text. To make this work, a new unique `data-task-id` attribute was added to each task list item for reliable identification.
Fixes #293 , #563
🐰 With nanoid's magic and IDs so fine,
Each checkbox now knows which line is mine,
No more lost state when the page reloads—
Tasks persist through every browser node!
2025-12-19 17:12:31 +01:00
renovate[bot]
84791aa996
chore(deps): update pnpm to v10.26.0 ( #2004 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [pnpm](https://pnpm.io )
([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm )) |
[`10.25.0` ->
`10.26.0`](https://renovatebot.com/diffs/npm/pnpm/10.25.0/10.26.0 ) |

|

|
---
### Release Notes
<details>
<summary>pnpm/pnpm (pnpm)</summary>
###
[`v10.26.0`](https://redirect.github.com/pnpm/pnpm/compare/v10.25.0...v10.26.0 )
[Compare
Source](https://redirect.github.com/pnpm/pnpm/compare/v10.25.0...v10.26.0 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-18 13:54:49 +01:00
renovate[bot]
93baac7e03
chore(deps): update dev-dependencies ( #1999 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [@tsconfig/node24](https://redirect.github.com/tsconfig/bases )
([source](https://redirect.github.com/tsconfig/bases/tree/HEAD/bases )) |
[`24.0.0` ->
`24.0.3`](https://renovatebot.com/diffs/npm/@tsconfig%2fnode24/24.0.0/24.0.3 )
|

|

|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`22.19.2` ->
`22.19.3`](https://renovatebot.com/diffs/npm/@types%2fnode/22.19.2/22.19.3 )
|

|

|
| [autoprefixer](https://redirect.github.com/postcss/autoprefixer ) |
[`10.4.22` ->
`10.4.23`](https://renovatebot.com/diffs/npm/autoprefixer/10.4.22/10.4.23 )
|

|

|
---
### Release Notes
<details>
<summary>tsconfig/bases (@​tsconfig/node24)</summary>
###
[`v24.0.3`](1bff76396c...08017332f3 )
[Compare
Source](1bff76396c...08017332f3 )
###
[`v24.0.2`](f2f98bd5f9...1bff76396c )
[Compare
Source](f2f98bd5f9...1bff76396c )
###
[`v24.0.1`](a70b65ee4e...f2f98bd5f9 )
[Compare
Source](a70b65ee4e...f2f98bd5f9 )
</details>
<details>
<summary>postcss/autoprefixer (autoprefixer)</summary>
###
[`v10.4.23`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10423 )
[Compare
Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.22...10.4.23 )
- Reduced dependencies (by
[@​hyperz111](https://redirect.github.com/hyperz111 )).
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-17 22:30:57 +01:00
renovate[bot]
7199365213
chore(deps): replace dev-dependencies ( #1990 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@tsconfig/node22](https://redirect.github.com/tsconfig/bases )
([source](https://redirect.github.com/tsconfig/bases/tree/HEAD/bases )) →
[@tsconfig/node24](https://redirect.github.com/tsconfig/bases ) |
devDependencies | replacement | [`22.0.5` ->
`24.0.0`](https://renovatebot.com/diffs/npm/@tsconfig%2fnode22/22.0.5/ )
| | |
|
[@vitejs/plugin-vue](https://redirect.github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme )
([source](https://redirect.github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue ))
| devDependencies | patch | [`6.0.2` ->
`6.0.3`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/6.0.2/6.0.3 )
|

|

|
| [eslint](https://eslint.org )
([source](https://redirect.github.com/eslint/eslint )) | devDependencies
| patch | [`9.39.1` ->
`9.39.2`](https://renovatebot.com/diffs/npm/eslint/9.39.1/9.39.2 ) |

|

|
⚠️ Renovate's replacement functionality [does not
currently](https://redirect.github.com/renovatebot/renovate/issues/39400 )
wire in the release age for a package, so the Minimum Release Age checks
can apply. You will need to manually validate the Minimum Release Age
for these package(s).
This is a special PR that replaces `@tsconfig/node22` with the community
suggested minimal stable replacement version.
---
### Release Notes
<details>
<summary>vitejs/vite-plugin-vue (@​vitejs/plugin-vue)</summary>
###
[`v6.0.3`](https://redirect.github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small-603-2025-12-12-small )
##### Features
- add Vite 8 support
([2080d41](2080d41139 ))
##### Bug Fixes
- **deps:** update all non-major dependencies
([#​707](https://redirect.github.com/vitejs/vite-plugin-vue/issues/707 ))
([799f419](799f419565 ))
- **hmr:** reload when components switch between vapor and vdom
([#​714](https://redirect.github.com/vitejs/vite-plugin-vue/issues/714 ))
([6c45fe5](6c45fe5294 ))
##### Performance Improvements
- replace debug with obug
([#​705](https://redirect.github.com/vitejs/vite-plugin-vue/issues/705 ))
([684ac30](684ac30f83 ))
##### Miscellaneous Chores
- **deps:** update upstream
([#​706](https://redirect.github.com/vitejs/vite-plugin-vue/issues/706 ))
([d910114](d9101144a8 ))
- upgrade deps, setup tsgo
([037e540](037e5403e9 ))
</details>
<details>
<summary>eslint/eslint (eslint)</summary>
###
[`v9.39.2`](https://redirect.github.com/eslint/eslint/compare/v9.39.1...9278324aa0023d223874825b0d4b6ac75783096a )
[Compare
Source](https://redirect.github.com/eslint/eslint/compare/v9.39.1...v9.39.2 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com>
2025-12-16 08:51:06 +00:00
renovate[bot]
78e9bc412b
fix(deps): update dependency vue-router to v4.6.4 ( #1985 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [vue-router](https://router.vuejs.org )
([source](https://redirect.github.com/vuejs/router )) | [`4.6.3` ->
`4.6.4`](https://renovatebot.com/diffs/npm/vue-router/4.6.3/4.6.4 ) |

|

|
---
### Release Notes
<details>
<summary>vuejs/router (vue-router)</summary>
###
[`v4.6.4`](https://redirect.github.com/vuejs/router/releases/tag/v4.6.4 )
[Compare
Source](https://redirect.github.com/vuejs/router/compare/v4.6.3...v4.6.4 )
##### 🚀 Features
- **experimental**:
- Handle redirect types - by
[@​posva](https://redirect.github.com/posva )
[<samp>(92efb)</samp>](https://redirect.github.com/vuejs/router/commit/92efba79 )
- Basic alias - by [@​posva](https://redirect.github.com/posva )
[<samp>(ded2d)</samp>](https://redirect.github.com/vuejs/router/commit/ded2d578 )
##### 🐞 Bug Fixes
- Make the build output compatible with v4.5 - by
[@​drylint](https://redirect.github.com/drylint ) in
[#​2591](https://redirect.github.com/vuejs/router/issues/2591 )
[<samp>(42bc2)</samp>](https://redirect.github.com/vuejs/router/commit/42bc246f )
- **experimental**: IsActive with custom params - by
[@​posva](https://redirect.github.com/posva )
[<samp>(edca6)</samp>](https://redirect.github.com/vuejs/router/commit/edca66c6 )
##### [View changes on
GitHub](https://redirect.github.com/vuejs/router/compare/v4.6.3...v4.6.4 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-15 16:04:39 +01:00
renovate[bot]
01f563ec2d
fix(deps): update dependency @intlify/unplugin-vue-i18n to v11.0.3 ( #1983 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@intlify/unplugin-vue-i18n](https://redirect.github.com/intlify/bundle-tools/blob/main/packages/unplugin-vue-i18n/README.md )
([source](https://redirect.github.com/intlify/bundle-tools/tree/HEAD/packages/unplugin-vue-i18n ))
| [`11.0.1` ->
`11.0.3`](https://renovatebot.com/diffs/npm/@intlify%2funplugin-vue-i18n/11.0.1/11.0.3 )
|

|

|
---
### Release Notes
<details>
<summary>intlify/bundle-tools
(@​intlify/unplugin-vue-i18n)</summary>
###
[`v11.0.3`](https://redirect.github.com/intlify/bundle-tools/releases/tag/v11.0.3 )
[Compare
Source](https://redirect.github.com/intlify/bundle-tools/compare/v11.0.1...v11.0.3 )
<!-- Release notes generated using configuration in .github/release.yml
at v11.0.3 -->
**Full Changelog**:
<https://github.com/intlify/bundle-tools/compare/v11.0.2...v11.0.3 >
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-14 14:49:06 +01:00
renovate[bot]
73505980dd
fix(deps): update dependency @sentry/vue to v10.30.0 ( #1982 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@sentry/vue](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/vue )
([source](https://redirect.github.com/getsentry/sentry-javascript )) |
[`10.29.0` ->
`10.30.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/10.29.0/10.30.0 )
|

|

|
---
### Release Notes
<details>
<summary>getsentry/sentry-javascript (@​sentry/vue)</summary>
###
[`v10.30.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/10.30.0 )
[Compare
Source](https://redirect.github.com/getsentry/sentry-javascript/compare/10.29.0...10.30.0 )
- feat(nextjs): Deprecate Webpack top-level options
([#​18343](https://redirect.github.com/getsentry/sentry-javascript/pull/18343 ))
- feat(node): Capture scope when event loop blocked
([#​18040](https://redirect.github.com/getsentry/sentry-javascript/pull/18040 ))
- fix(aws-serverless): Remove hyphens from AWS-lambda origins
([#​18353](https://redirect.github.com/getsentry/sentry-javascript/pull/18353 ))
- fix(core): Parse method from Request object in fetch
([#​18453](https://redirect.github.com/getsentry/sentry-javascript/pull/18453 ))
- fix(react): Add transaction name guards for rapid lazy-route
navigations
([#​18346](https://redirect.github.com/getsentry/sentry-javascript/pull/18346 ))
<details>
<summary> <strong>Internal Changes</strong> </summary>
- chore(ci): Fix double issue creation for unreferenced PRs
([#​18442](https://redirect.github.com/getsentry/sentry-javascript/pull/18442 ))
- chore(deps): bump next from 15.5.4 to 15.5.7 in
/dev-packages/e2e-tests/test-applications/nextjs-15
([#​18411](https://redirect.github.com/getsentry/sentry-javascript/pull/18411 ))
- chore(deps): bump next from 15.5.4 to 15.5.7 in
/dev-packages/e2e-tests/test-applications/nextjs-15-intl
([#​18400](https://redirect.github.com/getsentry/sentry-javascript/pull/18400 ))
- chore(deps): bump next from 16.0.0 to 16.0.7 in
/dev-packages/e2e-tests/test-applications/nextjs-16
([#​18399](https://redirect.github.com/getsentry/sentry-javascript/pull/18399 ))
- chore(deps): bump next from 16.0.0 to 16.0.7 in
/dev-packages/e2e-tests/test-applications/nextjs-16-cacheComponents
([#​18427](https://redirect.github.com/getsentry/sentry-javascript/pull/18427 ))
- chore(deps): bump next from 16.0.0 to 16.0.7 in
/dev-packages/e2e-tests/test-applications/nextjs-16-tunnel
([#​18439](https://redirect.github.com/getsentry/sentry-javascript/pull/18439 ))
- chore(publish): Fix publish order for `@sentry/types`
([#​18429](https://redirect.github.com/getsentry/sentry-javascript/pull/18429 ))
- ci(deps): bump actions/create-github-app-token from 2.1.4 to 2.2.0
([#​18362](https://redirect.github.com/getsentry/sentry-javascript/pull/18362 ))
</details>
#### Bundle size 📦
| Path | Size |
|
-----------------------------------------------------------------------------------------------------
| --------- |
| [@​sentry/browser](https://redirect.github.com/sentry/browser ) |
24.23 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser ) -
with treeshaking flags | 22.76 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing) | 40.57 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Profiling) | 45.06 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay) | 78.09 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay) - with treeshaking flags | 68.07 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay with Canvas) | 82.66 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Tracing, Replay, Feedback) | 94.61 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. Feedback) | 40.54 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. sendFeedback) | 28.8 KB |
| [@​sentry/browser](https://redirect.github.com/sentry/browser )
(incl. FeedbackAsync) | 33.68 KB |
| [@​sentry/react](https://redirect.github.com/sentry/react ) |
25.9 KB |
| [@​sentry/react](https://redirect.github.com/sentry/react )
(incl. Tracing) | 42.73 KB |
| [@​sentry/vue](https://redirect.github.com/sentry/vue ) | 28.58
KB |
| [@​sentry/vue](https://redirect.github.com/sentry/vue ) (incl.
Tracing) | 42.34 KB |
| [@​sentry/svelte](https://redirect.github.com/sentry/svelte ) |
24.24 KB |
| CDN Bundle | 26.6 KB |
| CDN Bundle (incl. Tracing) | 41.24 KB |
| CDN Bundle (incl. Tracing, Replay) | 76.91 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 82.23 KB |
| CDN Bundle - uncompressed | 78.16 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 122.45 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 235.76 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 248.23
KB |
| [@​sentry/nextjs](https://redirect.github.com/sentry/nextjs )
(client) | 44.89 KB |
|
[@​sentry/sveltekit](https://redirect.github.com/sentry/sveltekit )
(client) | 40.94 KB |
|
[@​sentry/node-core](https://redirect.github.com/sentry/node-core )
| 50.06 KB |
| [@​sentry/node](https://redirect.github.com/sentry/node ) |
155.85 KB |
| [@​sentry/node](https://redirect.github.com/sentry/node ) -
without tracing | 90.74 KB |
|
[@​sentry/aws-serverless](https://redirect.github.com/sentry/aws-serverless )
| 105.67 KB |
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-14 11:30:01 +01:00
renovate[bot]
c166903ed6
chore(deps): update dependency sass-embedded to v1.96.0 ( #1981 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [sass-embedded](https://redirect.github.com/sass/embedded-host-node ) |
[`1.95.1` ->
`1.96.0`](https://renovatebot.com/diffs/npm/sass-embedded/1.95.1/1.96.0 )
|

|

|
---
### Release Notes
<details>
<summary>sass/embedded-host-node (sass-embedded)</summary>
###
[`v1.96.0`](https://redirect.github.com/sass/embedded-host-node/blob/HEAD/CHANGELOG.md#1960 )
[Compare
Source](https://redirect.github.com/sass/embedded-host-node/compare/1.95.1...1.96.0 )
- Allow numbers with complex units (more than one numerator unit or more
than
zero denominator units) to be emitted to CSS. These are now emitted as
`calc()` expressions, which now support complex units in plain CSS.
</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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-14 09:50:40 +01:00
renovate[bot]
bd2527a201
fix(deps): update dependency tailwindcss to v3.4.19 ( #1980 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [tailwindcss](https://tailwindcss.com )
([source](https://redirect.github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ))
| [`3.4.18` ->
`3.4.19`](https://renovatebot.com/diffs/npm/tailwindcss/3.4.18/3.4.19 ) |

|

|
---
### Release Notes
<details>
<summary>tailwindlabs/tailwindcss (tailwindcss)</summary>
###
[`v3.4.19`](https://redirect.github.com/tailwindlabs/tailwindcss/compare/v3.4.18...v3.4.19 )
[Compare
Source](https://redirect.github.com/tailwindlabs/tailwindcss/compare/v3.4.18...v3.4.19 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-14 09:50:22 +01:00
renovate[bot]
5a907c7a48
chore(deps): update dev-dependencies ( #1978 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`22.19.1` ->
`22.19.2`](https://renovatebot.com/diffs/npm/@types%2fnode/22.19.1/22.19.2 )
|

|

|
|
[@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.48.1` ->
`8.49.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.48.1/8.49.0 )
|

|

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

|

|
| [caniuse-lite](https://redirect.github.com/browserslist/caniuse-lite )
| [`1.0.30001759` ->
`1.0.30001760`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001759/1.0.30001760 )
|

|

|
| [sass-embedded](https://redirect.github.com/sass/embedded-host-node ) |
[`1.93.3` ->
`1.95.1`](https://renovatebot.com/diffs/npm/sass-embedded/1.93.3/1.95.1 )
|

|

|
| [vite](https://vite.dev )
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite ))
| [`7.2.6` ->
`7.2.7`](https://renovatebot.com/diffs/npm/vite/7.2.6/7.2.7 ) |

|

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

|

|
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/eslint-plugin)</summary>
###
[`v8.49.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#8490-2025-12-08 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.48.1...v8.49.0 )
##### 🚀 Features
- **eslint-plugin:** use `Intl.Segmenter` instead of `graphemer`
([#​11804](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11804 ))
##### 🩹 Fixes
- **deps:** update dependency prettier to v3.7.2
([#​11820](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11820 ))
##### ❤️ Thank You
- Justin McBride
- Kirk Waiblinger
[@​kirkwaiblinger](https://redirect.github.com/kirkwaiblinger )
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.49.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8490-2025-12-08 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.48.1...v8.49.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>browserslist/caniuse-lite (caniuse-lite)</summary>
###
[`v1.0.30001760`](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001759...1.0.30001760 )
[Compare
Source](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001759...1.0.30001760 )
</details>
<details>
<summary>sass/embedded-host-node (sass-embedded)</summary>
###
[`v1.95.1`](https://redirect.github.com/sass/embedded-host-node/blob/HEAD/CHANGELOG.md#1951 )
[Compare
Source](https://redirect.github.com/sass/embedded-host-node/compare/1.93.3...1.95.1 )
- No user-visible changes.
</details>
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v7.2.7`](https://redirect.github.com/vitejs/vite/compare/v7.2.6...v7.2.7 )
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v7.2.6...v7.2.7 )
</details>
<details>
<summary>vuejs/language-tools (vue-tsc)</summary>
###
[`v3.1.8`](https://redirect.github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#318-2025-12-09 )
[Compare
Source](https://redirect.github.com/vuejs/language-tools/compare/v3.1.7...v3.1.8 )
##### Features
- feat(vscode): support multiline attribute for `<script>` and `<style>`
tag
([#​5830](https://redirect.github.com/vuejs/language-tools/issues/5830 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- feat(vscode): supports format with selected range
([#​5761](https://redirect.github.com/vuejs/language-tools/issues/5761 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- feat(language-service): add tsconfig-based document link support for
Pug
##### Bug Fixes
- fix(language-core): limit the range of parseDiagnostics checks
([#​5823](https://redirect.github.com/vuejs/language-tools/issues/5823 ))
- fix(language-core): restore default import bindings for template scope
([#​5824](https://redirect.github.com/vuejs/language-tools/issues/5824 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- fix(typescript-plugin): get `preferences` and `formatOptions` in
tsserver
([#​5829](https://redirect.github.com/vuejs/language-tools/issues/5829 ))
- fix(language-core): avoid generating component options within the
setup scope
([#​5832](https://redirect.github.com/vuejs/language-tools/issues/5832 ))
##### Other Changes
- perf(language-core): dedupe component options generation
([#​5831](https://redirect.github.com/vuejs/language-tools/issues/5831 ))
###
[`v3.1.7`](https://redirect.github.com/vuejs/language-tools/compare/v3.1.6...20dcd47c0cb4ce30e2c5e3ef1986ce297c218a06 )
[Compare
Source](https://redirect.github.com/vuejs/language-tools/compare/v3.1.6...v3.1.7 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-13 10:18:23 +01:00
kolaente
ad1a5f9b5c
chore(tests): remove Cypress, use Playwright exclusively ( #1976 )
...
- Removes Cypress test framework entirely, using only Playwright for E2E tests
- All Cypress tests were already covered by Playwright; added 2 missing tests for URL filter/search parameters
- Removes ~2000 lines of Cypress code and configuration
- Updated ESLint and Stylelint configurations to reflect testing changes
🐰 Farewell to Cypress, dear and bright,
We hop to Playwright's testing light,
Factories cleared, the config gone,
Our tests now march in Playwright's song!
~✨ The Testing Rabbit
2025-12-12 20:07:18 +00:00
renovate[bot]
41777664a4
fix(deps): update dependency dompurify to v3.3.1 ( #1967 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [dompurify](https://redirect.github.com/cure53/DOMPurify ) | [`3.3.0`
-> `3.3.1`](https://renovatebot.com/diffs/npm/dompurify/3.3.0/3.3.1 ) |

|

|
---
### Release Notes
<details>
<summary>cure53/DOMPurify (dompurify)</summary>
###
[`v3.3.1`](https://redirect.github.com/cure53/DOMPurify/releases/tag/3.3.1 ):
DOMPurify 3.3.1
[Compare
Source](https://redirect.github.com/cure53/DOMPurify/compare/3.3.0...3.3.1 )
- Updated `ADD_FORBID_CONTENTS` setting to extend default list, thanks
[@​MariusRumpf](https://redirect.github.com/MariusRumpf )
- Updated the ESM import syntax to be more correct, thanks
[@​binhpv](https://redirect.github.com/binhpv )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-11 21:12:06 +01:00
renovate[bot]
a9e80f9bf8
chore(deps): update pnpm to v10.25.0 ( #1968 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [pnpm](https://pnpm.io )
([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm )) |
[`10.24.0` ->
`10.25.0`](https://renovatebot.com/diffs/npm/pnpm/10.24.0/10.25.0 ) |

|

|
---
### Release Notes
<details>
<summary>pnpm/pnpm (pnpm)</summary>
###
[`v10.25.0`](https://redirect.github.com/pnpm/pnpm/compare/v10.24.0...v10.25.0 )
[Compare
Source](https://redirect.github.com/pnpm/pnpm/compare/v10.24.0...v10.25.0 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-11 20:55:06 +01:00
renovate[bot]
6628acffce
chore(deps): update dependency vue-tsc to v3.1.6 ( #1957 )
...
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/ ) |
[Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [vue-tsc](https://redirect.github.com/vuejs/language-tools )
([source](https://redirect.github.com/vuejs/language-tools/tree/HEAD/packages/tsc ))
| [`3.1.5` ->
`3.1.6`](https://renovatebot.com/diffs/npm/vue-tsc/3.1.5/3.1.6 ) |

|

|
---
### Release Notes
<details>
<summary>vuejs/language-tools (vue-tsc)</summary>
###
[`v3.1.6`](https://redirect.github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#316-2025-12-06 )
[Compare
Source](https://redirect.github.com/vuejs/language-tools/compare/v3.1.5...v3.1.6 )
##### Features
- feat(vscode): add settings to enable per-block formatting
([#​5784](https://redirect.github.com/vuejs/language-tools/issues/5784 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- feat(language-service): enhanced component auto import
([#​5790](https://redirect.github.com/vuejs/language-tools/issues/5790 ))
- feat(component-meta): add component name and description fields
([#​5797](https://redirect.github.com/vuejs/language-tools/issues/5797 ))
- feat(typescript-plugin): add support for template "Add Import" quick
fix
([#​5799](https://redirect.github.com/vuejs/language-tools/issues/5799 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- feat(typescript-plugin): mapping JSDoc informations from `<script
setup>`
([#​5805](https://redirect.github.com/vuejs/language-tools/issues/5805 ))
- feat(vscode): support tsdk path for Eclipse Theia
([#​5806](https://redirect.github.com/vuejs/language-tools/issues/5806 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
##### Bug Fixes
- fix(language-service): ignore intrinsic elements when detect tag name
casing
([#​5771](https://redirect.github.com/vuejs/language-tools/issues/5771 ))
- fix(language-core): `createParsedCommandLineByJson` parsed incorrect
options since v3.1.5 ([#​5768
(comment)](https://redirect.github.com/vuejs/language-tools/pull/5768#issuecomment-3569623037 ))
- fix(vscode): make `vue.server.path` compatible with Windows
([#​5772](https://redirect.github.com/vuejs/language-tools/issues/5772 ))
- fix(vscode): analyze interpolation highlight ranges based on AST
([#​5777](https://redirect.github.com/vuejs/language-tools/issues/5777 ))
- fix(vscode): sync latest vscode html language configuration
([#​5740](https://redirect.github.com/vuejs/language-tools/issues/5740 ))
- fix(language-core): enhance `getVIfNode` to support `v-else-if`
directives
([#​5765](https://redirect.github.com/vuejs/language-tools/issues/5765 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- fix(language-core): generate `{}` instead of its string value for
`style="..."`
([#​5781](https://redirect.github.com/vuejs/language-tools/issues/5781 ))
- Thanks to [@​KazariEX](https://redirect.github.com/KazariEX )!
- fix(language-core): `v-bind="$attrs"` loses navigation when
`inferTemplateDollarAttrs` is disabled
([#​5783](https://redirect.github.com/vuejs/language-tools/issues/5783 ))
- fix(language-service): skip `const props =` completion in
StringLiteral
([#​5786](https://redirect.github.com/vuejs/language-tools/issues/5786 ))
- fix(language-core): unable to get completion for the second scoped
class name
- fix(language-service): format components with HTML void-element names
([#​5788](https://redirect.github.com/vuejs/language-tools/issues/5788 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- fix(language-service): properly handle promise when resolving CSS
links
([#​5785](https://redirect.github.com/vuejs/language-tools/issues/5785 ))
- fix(language-core): infer `$el` type for generic components using
`inferComponentDollarEl`
([#​5794](https://redirect.github.com/vuejs/language-tools/issues/5794 ))
- fix(language-core): ensure `<script>` content generates before
`<script setup>`
([#​5795](https://redirect.github.com/vuejs/language-tools/issues/5795 ))
- fix(language-core): remove `bypassDefineComponent` hack for better JS
support
([#​4876](https://redirect.github.com/vuejs/language-tools/issues/4876 ))
([#​5379](https://redirect.github.com/vuejs/language-tools/issues/5379 ))
- fix(language-core): `Prettify<T>` caused generic props gets inferred
as `unknown`
([#​5667](https://redirect.github.com/vuejs/language-tools/issues/5667 ))
- Thanks to [@​so1ve](https://redirect.github.com/so1ve )!
- fix(vscode): handle leading `<` as operator in SFC scripts
([#​5801](https://redirect.github.com/vuejs/language-tools/issues/5801 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
- fix(vscode): patch `isTypeScriptDocument` in VSCode for
`typescript.preferences.autoImportSpecifierExcludeRegexes` config
support
([#​5364](https://redirect.github.com/vuejs/language-tools/issues/5364 ))
- fix(language-core): ensure type consistency for optional boolean props
([#​5803](https://redirect.github.com/vuejs/language-tools/issues/5803 ))
- fix(language-core): add compatibility for `vapor` attr
([#​5496](https://redirect.github.com/vuejs/language-tools/issues/5496 ))
- fix(language-core): AST fault tolerance for key binding on template
([#​5807](https://redirect.github.com/vuejs/language-tools/issues/5807 ))
##### Performance
- perf(language-core): reuse ts asts for `:class` - Thanks to
[@​KazariEX](https://redirect.github.com/KazariEX )!
##### Other Changes
- Revert "refactor(typescript-plugin): remove go to definition trick for
auto imported components
([#​5733](https://redirect.github.com/vuejs/language-tools/issues/5733 ))"
- docs(typescript-plugin): update Neovim configuration link
([#​5775](https://redirect.github.com/vuejs/language-tools/issues/5775 ))
- Thanks to
[@​AlexVagrant](https://redirect.github.com/AlexVagrant )!
- refactor(language-core): normalize template AST
([#​5782](https://redirect.github.com/vuejs/language-tools/issues/5782 ))
- refactor(language-core): split style codegen
([#​5787](https://redirect.github.com/vuejs/language-tools/issues/5787 ))
- refactor(language-core): remove `debugger` from virtual code for
tsslint compatibility
- refactor(language-core): remove legacy navigation support in
`ref="xxx"`
- refactor(language-core): reduce codegen options
([#​5804](https://redirect.github.com/vuejs/language-tools/issues/5804 ))
- refactor(component-meta): deprecated `rawType` and `__internal__.tsLs`
([#​5808](https://redirect.github.com/vuejs/language-tools/issues/5808 ))
- chore: update volar to 2.4.26
- feat: fallback resolution mode for `createResolveModuleName`
([volarjs/volar.js#293 ](https://redirect.github.com/volarjs/volar.js/pull/293 ))
([#​5644](https://redirect.github.com/vuejs/language-tools/issues/5644 ))
- Thanks to [@​serkodev](https://redirect.github.com/serkodev )!
</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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-10 12:41:02 +01:00
renovate[bot]
d231ebb78d
chore(deps): update dependency postcss-preset-env to v10.5.0
2025-12-08 08:55:46 +01:00
renovate[bot]
f14f6ba38f
fix(deps): update dependency @sentry/vue to v10.29.0
2025-12-07 21:58:07 +01:00
renovate[bot]
9034b13dde
chore(deps): update dev-dependencies
2025-12-07 11:04:45 +01:00
renovate[bot]
4a4cd72a0b
fix(deps): update dependency @sentry/vue to v10.28.0
2025-12-06 11:01:45 +01:00
renovate[bot]
5f02098d12
chore(deps): update dev-dependencies ( #1936 )
...
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.48.0` ->
`8.48.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.48.0/8.48.1 )
|

|

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

|

|
| [caniuse-lite](https://redirect.github.com/browserslist/caniuse-lite )
| [`1.0.30001757` ->
`1.0.30001759`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001757/1.0.30001759 )
|

|

|
| [vite](https://vite.dev )
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite ))
| [`7.2.4` ->
`7.2.6`](https://renovatebot.com/diffs/npm/vite/7.2.4/7.2.6 ) |

|

|
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/eslint-plugin)</summary>
###
[`v8.48.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#8481-2025-12-02 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.48.0...v8.48.1 )
##### 🩹 Fixes
- **eslint-plugin:** \[restrict-template-expressions] check base types
in allow list
([#​11764](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11764 ),
[#​11759](https://redirect.github.com/typescript-eslint/typescript-eslint/issues/11759 ))
- **eslint-plugin:** honor ignored base types on generic classes
([#​11767](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11767 ))
- **eslint-plugin:** \[consistent-type-exports] check value flag before
resolving alias
([#​11769](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11769 ))
##### ❤️ Thank You
- Josh Goldberg
- OleksandraKordonets
- SangheeSon [@​Higangssh](https://redirect.github.com/Higangssh )
- tao
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.48.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8481-2025-12-02 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.48.0...v8.48.1 )
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>browserslist/caniuse-lite (caniuse-lite)</summary>
###
[`v1.0.30001759`](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001757...1.0.30001759 )
[Compare
Source](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001757...1.0.30001759 )
</details>
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v7.2.6`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small-726-2025-12-01-small )
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v7.2.4...v7.2.6 )
####
<small>[7.2.6](https://redirect.github.com/vitejs/vite/compare/v7.2.5...v7.2.6 )
(2025-12-01)</small>
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-06 11:00:50 +01:00
renovate[bot]
35c0ecc72e
fix(deps): update dependency vue-i18n to v11.2.2 ( #1908 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[vue-i18n](https://redirect.github.com/intlify/vue-i18n/tree/master/packages/vue-i18n#readme )
([source](https://redirect.github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n ))
| [`11.2.1` ->
`11.2.2`](https://renovatebot.com/diffs/npm/vue-i18n/11.2.1/11.2.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>intlify/vue-i18n (vue-i18n)</summary>
###
[`v11.2.2`](https://redirect.github.com/intlify/vue-i18n/releases/tag/v11.2.2 )
[Compare
Source](https://redirect.github.com/intlify/vue-i18n/compare/v11.2.1...v11.2.2 )
<!-- Release notes generated using configuration in .github/release.yml
at v11.2.2 -->
#### What's Changed
##### 🐛 Bug Fixes
- fix: avoid bundler static analysis for namespace import by
[@​kazupon](https://redirect.github.com/kazupon ) in
[#​2326](https://redirect.github.com/intlify/vue-i18n/pull/2326 )
**Full Changelog**:
<https://github.com/intlify/vue-i18n/compare/v11.2.1...v11.2.2 >
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-01 22:56:38 +01:00
renovate[bot]
5fc9b74f50
chore(deps): update dev-dependencies ( #1909 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[@vueuse/shared](https://redirect.github.com/vueuse/vueuse/tree/main/packages/shared#readme )
([source](https://redirect.github.com/vueuse/vueuse/tree/HEAD/packages/shared ))
| [`14.0.0` ->
`14.1.0`](https://renovatebot.com/diffs/npm/@vueuse%2fshared/14.0.0/14.1.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [electron](https://redirect.github.com/electron/electron ) | [`37.10.2`
->
`37.10.3`](https://renovatebot.com/diffs/npm/electron/37.10.2/37.10.3 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [eslint-plugin-vue](https://eslint.vuejs.org )
([source](https://redirect.github.com/vuejs/eslint-plugin-vue )) |
[`10.6.0` ->
`10.6.2`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/10.6.0/10.6.2 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [happy-dom](https://redirect.github.com/capricorn86/happy-dom ) |
[`20.0.10` ->
`20.0.11`](https://renovatebot.com/diffs/npm/happy-dom/20.0.10/20.0.11 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [stylelint](https://stylelint.io )
([source](https://redirect.github.com/stylelint/stylelint )) | [`16.26.0`
->
`16.26.1`](https://renovatebot.com/diffs/npm/stylelint/16.26.0/16.26.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[vite-plugin-pwa](https://redirect.github.com/vite-pwa/vite-plugin-pwa )
| [`1.1.0` ->
`1.2.0`](https://renovatebot.com/diffs/npm/vite-plugin-pwa/1.1.0/1.2.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>vueuse/vueuse (@​vueuse/shared)</summary>
###
[`v14.1.0`](https://redirect.github.com/vueuse/vueuse/releases/tag/v14.1.0 )
[Compare
Source](https://redirect.github.com/vueuse/vueuse/compare/v14.0.0...v14.1.0 )
##### 🚀 Features
- **useDropZone**: Add checkValidity function - by
[@​kolaente](https://redirect.github.com/kolaente ) in
[#​5169](https://redirect.github.com/vueuse/vueuse/issues/5169 )
[<samp>(aee84)</samp>](https://redirect.github.com/vueuse/vueuse/commit/aee846cb )
- **useElementVisibility**: Add `initialValue` option - by
[@​kricsleo](https://redirect.github.com/kricsleo ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5159](https://redirect.github.com/vueuse/vueuse/issues/5159 )
[<samp>(13f36)</samp>](https://redirect.github.com/vueuse/vueuse/commit/13f361fa )
- **useMouseInElement**: Add support for tracking inline-level elements
- by [@​siavava](https://redirect.github.com/siavava ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5049](https://redirect.github.com/vueuse/vueuse/issues/5049 )
[<samp>(62dfb)</samp>](https://redirect.github.com/vueuse/vueuse/commit/62dfb80a )
- **useTimeAgoIntl**: Custom units - by
[@​Menci](https://redirect.github.com/Menci ) in
[#​5188](https://redirect.github.com/vueuse/vueuse/issues/5188 )
[<samp>(c7d09)</samp>](https://redirect.github.com/vueuse/vueuse/commit/c7d09ef4 )
- **useWebSocket**: `autoConnect.delay` support function - by
[@​YuchenWell](https://redirect.github.com/YuchenWell ), **Anthony
Fu** and [@​9romise](https://redirect.github.com/9romise ) in
[#​5089](https://redirect.github.com/vueuse/vueuse/issues/5089 )
[<samp>(176f2)</samp>](https://redirect.github.com/vueuse/vueuse/commit/176f2515 )
##### 🐞 Bug Fixes
- Typescript type of `isIOS` constant - by
[@​toofishes](https://redirect.github.com/toofishes ) in
[#​5163](https://redirect.github.com/vueuse/vueuse/issues/5163 )
[<samp>(60888)</samp>](https://redirect.github.com/vueuse/vueuse/commit/60888d43 )
- **computedWithControl**: Allow different types in watch sources array
- by [@​kricsleo](https://redirect.github.com/kricsleo ) in
[#​5184](https://redirect.github.com/vueuse/vueuse/issues/5184 )
[<samp>(bc4ac)</samp>](https://redirect.github.com/vueuse/vueuse/commit/bc4aca90 )
- **types**: Allow async functions in useDebounceFn and useThrottleFn
- by
[@​xiaoxiaohuayu](https://redirect.github.com/xiaoxiaohuayu ) in
[#​5131](https://redirect.github.com/vueuse/vueuse/issues/5131 )
[<samp>(7fb7a)</samp>](https://redirect.github.com/vueuse/vueuse/commit/7fb7a05a )
- **types**: Deprecate embeded `ResizeObserverSize` types - by
[@​9romise](https://redirect.github.com/9romise ) in
[#​5127](https://redirect.github.com/vueuse/vueuse/issues/5127 )
[<samp>(d7a07)</samp>](https://redirect.github.com/vueuse/vueuse/commit/d7a07010 )
- **useArrayReduce**: Export `UseArrayReduceReturn` type - by
[@​michaelcozzolino](https://redirect.github.com/michaelcozzolino )
in [#​5177](https://redirect.github.com/vueuse/vueuse/issues/5177 )
[<samp>(e1204)</samp>](https://redirect.github.com/vueuse/vueuse/commit/e1204722 )
- **useAsyncQueue**: Trigger onFinished when the last task is rejected
- by
[@​keeplearning66](https://redirect.github.com/keeplearning66 ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5144](https://redirect.github.com/vueuse/vueuse/issues/5144 )
[<samp>(c4a46)</samp>](https://redirect.github.com/vueuse/vueuse/commit/c4a46025 )
- **useClipboard**: Add readonly attribute to textarea fallback to
support Safari 15 - by
[@​huajianjiu](https://redirect.github.com/huajianjiu ) in
[#​5179](https://redirect.github.com/vueuse/vueuse/issues/5179 )
[<samp>(ef0c4)</samp>](https://redirect.github.com/vueuse/vueuse/commit/ef0c4f82 )
- **useInfiniteScroll**: Make canLoadMore reactive - by
[@​nhquyss](https://redirect.github.com/nhquyss ) in
[#​5110](https://redirect.github.com/vueuse/vueuse/issues/5110 )
[<samp>(3dc2d)</samp>](https://redirect.github.com/vueuse/vueuse/commit/3dc2d831 )
- **useMagicKeys**: Handle empty key events to prevent errors - by
[@​babu-ch](https://redirect.github.com/babu-ch ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5149](https://redirect.github.com/vueuse/vueuse/issues/5149 )
[<samp>(f8aec)</samp>](https://redirect.github.com/vueuse/vueuse/commit/f8aecd82 )
- **useScroll**: Use configurable window's `getComputedStyle` - by
[@​9romise](https://redirect.github.com/9romise ) in
[#​5150](https://redirect.github.com/vueuse/vueuse/issues/5150 )
[<samp>(f74a6)</samp>](https://redirect.github.com/vueuse/vueuse/commit/f74a68d4 )
- **useSpeechRecognition**: Catch the error while calling method start
- by [@​ben-lau](https://redirect.github.com/ben-lau ),
**liubaobin** and [@​9romise](https://redirect.github.com/9romise )
in [#​5142](https://redirect.github.com/vueuse/vueuse/issues/5142 )
[<samp>(94f1e)</samp>](https://redirect.github.com/vueuse/vueuse/commit/94f1e9e7 )
- **useTimeout**: Fix type typo - by
[@​keeplearning66](https://redirect.github.com/keeplearning66 ),
**Robin** and **Anthony Fu** in
[#​5147](https://redirect.github.com/vueuse/vueuse/issues/5147 )
[<samp>(31e5c)</samp>](https://redirect.github.com/vueuse/vueuse/commit/31e5cb0c )
##### [View changes on
GitHub](https://redirect.github.com/vueuse/vueuse/compare/v14.0.0...v14.1.0 )
</details>
<details>
<summary>electron/electron (electron)</summary>
###
[`v37.10.3`](https://redirect.github.com/electron/electron/releases/tag/v37.10.3 ):
electron v37.10.3
[Compare
Source](https://redirect.github.com/electron/electron/compare/v37.10.2...v37.10.3 )
### Release Notes for v37.10.3
#### Fixes
- Fixed an issue where `systemPreferences.getAccentColor` inverted the
color.
[#​49067](https://redirect.github.com/electron/electron/pull/49067 )
<span style="font-size:small;">(Also in
[39](https://redirect.github.com/electron/electron/pull/48624 ))</span>
</details>
<details>
<summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary>
###
[`v10.6.2`](https://redirect.github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1062 )
[Compare
Source](https://redirect.github.com/vuejs/eslint-plugin-vue/compare/v10.6.1...v10.6.2 )
##### Patch Changes
- Fixed false positives in non-intersecting conditions in
[`vue/no-duplicate-class-names`](https://eslint.vuejs.org/rules/no-duplicate-class-names.html )
and correctly detect duplicates in combining expressions
([#​2980](https://redirect.github.com/vuejs/eslint-plugin-vue/pull/2980 ))
- Fixed false positives for `TSImportType` in
[`vue/script-indent`](https://eslint.vuejs.org/rules/script-indent.html )
rule
([#​2969](https://redirect.github.com/vuejs/eslint-plugin-vue/pull/2969 ))
- Improved performance and type safety in
[`vue/prefer-use-template-ref`](https://eslint.vuejs.org/rules/prefer-use-template-ref.html )
([#​2982](https://redirect.github.com/vuejs/eslint-plugin-vue/pull/2982 ))
###
[`v10.6.1`](https://redirect.github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1061 )
[Compare
Source](https://redirect.github.com/vuejs/eslint-plugin-vue/compare/v10.6.0...v10.6.1 )
##### Patch Changes
- Fixed false positives for comments outside `<template>` in
[vue/no-multiple-template-root](https://eslint.vuejs.org/rules/no-multiple-template-root.html )
rule
([#​2964](https://redirect.github.com/vuejs/eslint-plugin-vue/pull/2964 ))
</details>
<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>
###
[`v20.0.11`](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.10...b435ce751aa2a105398c4c27cc6b086f93d7f7bd )
[Compare
Source](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.10...v20.0.11 )
</details>
<details>
<summary>stylelint/stylelint (stylelint)</summary>
###
[`v16.26.1`](https://redirect.github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#16261---2025-11-28 )
[Compare
Source](https://redirect.github.com/stylelint/stylelint/compare/16.26.0...16.26.1 )
It fixes numerous false positive bugs, including many in the
`declaration-property-value-no-unknown` rule for the latest CSS
specifications.
- Fixed: `*-no-unknown` false positives for latest specs by integrating
`@csstools/css-syntax-patches-for-csstree`
([#​8850](https://redirect.github.com/stylelint/stylelint/pull/8850 ))
([@​romainmenke](https://redirect.github.com/romainmenke )).
- Fixed: `at-rule-no-unknown` false positives for `@function`
([#​8851](https://redirect.github.com/stylelint/stylelint/pull/8851 ))
([@​jeddy3](https://redirect.github.com/jeddy3 )).
- Fixed: `declaration-property-value-no-unknown` false positives for
`attr()`, `if()` and custom functions
([#​8853](https://redirect.github.com/stylelint/stylelint/pull/8853 ))
([@​jeddy3](https://redirect.github.com/jeddy3 )).
- Fixed: `function-url-quotes` false positives when URLs require quoting
([#​8804](https://redirect.github.com/stylelint/stylelint/pull/8804 ))
([@​taearls](https://redirect.github.com/taearls )).
- Fixed: `selector-pseudo-element-no-unknown` false positives for
`::scroll-button()`
([#​8856](https://redirect.github.com/stylelint/stylelint/pull/8856 ))
([@​Mouvedia](https://redirect.github.com/Mouvedia )).
</details>
<details>
<summary>vite-pwa/vite-plugin-pwa (vite-plugin-pwa)</summary>
###
[`v1.2.0`](https://redirect.github.com/vite-pwa/vite-plugin-pwa/releases/tag/v1.2.0 )
[Compare
Source](https://redirect.github.com/vite-pwa/vite-plugin-pwa/compare/v1.1.0...v1.2.0 )
*No significant changes*
##### [View changes on
GitHub](https://redirect.github.com/vite-pwa/vite-plugin-pwa/compare/v1.1.0...v1.2.0 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-01 11:15:09 +01:00
renovate[bot]
2bcecac91d
fix(deps): update vueuse to v14.1.0 ( #1910 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [@vueuse/core](https://redirect.github.com/vueuse/vueuse )
([source](https://redirect.github.com/vueuse/vueuse/tree/HEAD/packages/core ))
| [`14.0.0` ->
`14.1.0`](https://renovatebot.com/diffs/npm/@vueuse%2fcore/14.0.0/14.1.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@vueuse/router](https://redirect.github.com/vueuse/vueuse/tree/main/packages/router#readme )
([source](https://redirect.github.com/vueuse/vueuse/tree/HEAD/packages/router ))
| [`14.0.0` ->
`14.1.0`](https://renovatebot.com/diffs/npm/@vueuse%2frouter/14.0.0/14.1.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>vueuse/vueuse (@​vueuse/core)</summary>
###
[`v14.1.0`](https://redirect.github.com/vueuse/vueuse/releases/tag/v14.1.0 )
[Compare
Source](https://redirect.github.com/vueuse/vueuse/compare/v14.0.0...v14.1.0 )
##### 🚀 Features
- **useDropZone**: Add checkValidity function - by
[@​kolaente](https://redirect.github.com/kolaente ) in
[#​5169](https://redirect.github.com/vueuse/vueuse/issues/5169 )
[<samp>(aee84)</samp>](https://redirect.github.com/vueuse/vueuse/commit/aee846cb )
- **useElementVisibility**: Add `initialValue` option - by
[@​kricsleo](https://redirect.github.com/kricsleo ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5159](https://redirect.github.com/vueuse/vueuse/issues/5159 )
[<samp>(13f36)</samp>](https://redirect.github.com/vueuse/vueuse/commit/13f361fa )
- **useMouseInElement**: Add support for tracking inline-level elements
- by [@​siavava](https://redirect.github.com/siavava ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5049](https://redirect.github.com/vueuse/vueuse/issues/5049 )
[<samp>(62dfb)</samp>](https://redirect.github.com/vueuse/vueuse/commit/62dfb80a )
- **useTimeAgoIntl**: Custom units - by
[@​Menci](https://redirect.github.com/Menci ) in
[#​5188](https://redirect.github.com/vueuse/vueuse/issues/5188 )
[<samp>(c7d09)</samp>](https://redirect.github.com/vueuse/vueuse/commit/c7d09ef4 )
- **useWebSocket**: `autoConnect.delay` support function - by
[@​YuchenWell](https://redirect.github.com/YuchenWell ), **Anthony
Fu** and [@​9romise](https://redirect.github.com/9romise ) in
[#​5089](https://redirect.github.com/vueuse/vueuse/issues/5089 )
[<samp>(176f2)</samp>](https://redirect.github.com/vueuse/vueuse/commit/176f2515 )
##### 🐞 Bug Fixes
- Typescript type of `isIOS` constant - by
[@​toofishes](https://redirect.github.com/toofishes ) in
[#​5163](https://redirect.github.com/vueuse/vueuse/issues/5163 )
[<samp>(60888)</samp>](https://redirect.github.com/vueuse/vueuse/commit/60888d43 )
- **computedWithControl**: Allow different types in watch sources array
- by [@​kricsleo](https://redirect.github.com/kricsleo ) in
[#​5184](https://redirect.github.com/vueuse/vueuse/issues/5184 )
[<samp>(bc4ac)</samp>](https://redirect.github.com/vueuse/vueuse/commit/bc4aca90 )
- **types**: Allow async functions in useDebounceFn and useThrottleFn
- by
[@​xiaoxiaohuayu](https://redirect.github.com/xiaoxiaohuayu ) in
[#​5131](https://redirect.github.com/vueuse/vueuse/issues/5131 )
[<samp>(7fb7a)</samp>](https://redirect.github.com/vueuse/vueuse/commit/7fb7a05a )
- **types**: Deprecate embeded `ResizeObserverSize` types - by
[@​9romise](https://redirect.github.com/9romise ) in
[#​5127](https://redirect.github.com/vueuse/vueuse/issues/5127 )
[<samp>(d7a07)</samp>](https://redirect.github.com/vueuse/vueuse/commit/d7a07010 )
- **useArrayReduce**: Export `UseArrayReduceReturn` type - by
[@​michaelcozzolino](https://redirect.github.com/michaelcozzolino )
in [#​5177](https://redirect.github.com/vueuse/vueuse/issues/5177 )
[<samp>(e1204)</samp>](https://redirect.github.com/vueuse/vueuse/commit/e1204722 )
- **useAsyncQueue**: Trigger onFinished when the last task is rejected
- by
[@​keeplearning66](https://redirect.github.com/keeplearning66 ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5144](https://redirect.github.com/vueuse/vueuse/issues/5144 )
[<samp>(c4a46)</samp>](https://redirect.github.com/vueuse/vueuse/commit/c4a46025 )
- **useClipboard**: Add readonly attribute to textarea fallback to
support Safari 15 - by
[@​huajianjiu](https://redirect.github.com/huajianjiu ) in
[#​5179](https://redirect.github.com/vueuse/vueuse/issues/5179 )
[<samp>(ef0c4)</samp>](https://redirect.github.com/vueuse/vueuse/commit/ef0c4f82 )
- **useInfiniteScroll**: Make canLoadMore reactive - by
[@​nhquyss](https://redirect.github.com/nhquyss ) in
[#​5110](https://redirect.github.com/vueuse/vueuse/issues/5110 )
[<samp>(3dc2d)</samp>](https://redirect.github.com/vueuse/vueuse/commit/3dc2d831 )
- **useMagicKeys**: Handle empty key events to prevent errors - by
[@​babu-ch](https://redirect.github.com/babu-ch ) and
[@​9romise](https://redirect.github.com/9romise ) in
[#​5149](https://redirect.github.com/vueuse/vueuse/issues/5149 )
[<samp>(f8aec)</samp>](https://redirect.github.com/vueuse/vueuse/commit/f8aecd82 )
- **useScroll**: Use configurable window's `getComputedStyle` - by
[@​9romise](https://redirect.github.com/9romise ) in
[#​5150](https://redirect.github.com/vueuse/vueuse/issues/5150 )
[<samp>(f74a6)</samp>](https://redirect.github.com/vueuse/vueuse/commit/f74a68d4 )
- **useSpeechRecognition**: Catch the error while calling method start
- by [@​ben-lau](https://redirect.github.com/ben-lau ),
**liubaobin** and [@​9romise](https://redirect.github.com/9romise )
in [#​5142](https://redirect.github.com/vueuse/vueuse/issues/5142 )
[<samp>(94f1e)</samp>](https://redirect.github.com/vueuse/vueuse/commit/94f1e9e7 )
- **useTimeout**: Fix type typo - by
[@​keeplearning66](https://redirect.github.com/keeplearning66 ),
**Robin** and **Anthony Fu** in
[#​5147](https://redirect.github.com/vueuse/vueuse/issues/5147 )
[<samp>(31e5c)</samp>](https://redirect.github.com/vueuse/vueuse/commit/31e5cb0c )
##### [View changes on
GitHub](https://redirect.github.com/vueuse/vueuse/compare/v14.0.0...v14.1.0 )
</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 these
updates 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-01 11:14:41 +01:00
renovate[bot]
9062f78bd3
chore(deps): update pnpm to v10.24.0 ( #1912 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [pnpm](https://pnpm.io )
([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm )) |
[`10.23.0` ->
`10.24.0`](https://renovatebot.com/diffs/npm/pnpm/10.23.0/10.24.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>pnpm/pnpm (pnpm)</summary>
###
[`v10.24.0`](https://redirect.github.com/pnpm/pnpm/compare/v10.23.0...v10.24.0 )
[Compare
Source](https://redirect.github.com/pnpm/pnpm/compare/v10.23.0...v10.24.0 )
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-30 23:09:13 +01:00
renovate[bot]
d1add5c621
chore(deps): update dev-dependencies ( #1898 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-28 10:17:36 +01:00
renovate[bot]
6bee4a40ae
fix(deps): update dependency @sentry/vue to v10.26.0 ( #1878 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 19:53:03 +00:00
renovate[bot]
33ba7073c2
fix(deps): update dependency vue to v3.5.25 ( #1888 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 19:30:18 +00:00
renovate[bot]
cbbaf540a5
fix(deps): update dependency vue-i18n to v11.2.1 ( #1891 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 20:07:57 +01:00
renovate[bot]
f7d5122638
fix(deps): update dependency marked to v17 ( #1797 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 17:35:33 +01:00
renovate[bot]
c3a75bbd4d
chore(deps): update pnpm to v10.23.0 ( #1877 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 17:35:20 +01:00
renovate[bot]
5c4ea721c7
fix(deps): update dependency workbox-precaching to v7.4.0 ( #1879 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-27 16:37:42 +01:00
kolaente
51512c1cb4
feat: migrate cypress e2e tests to playwright ( #1739 )
2025-11-27 16:34:48 +01:00
renovate[bot]
f7bdb996ca
chore(deps): update dev-dependencies
2025-11-26 13:47:07 +01:00
renovate[bot]
39ba18a04a
chore(deps): update dev-dependencies ( #1832 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-17 23:17:58 +00:00
kolaente
abbf2ce183
chore: copy useDropZone from vueuse
2025-11-16 12:22:30 +01:00
renovate[bot]
374730056d
chore(deps): update dev-dependencies ( #1830 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-16 00:14:51 +00:00
renovate[bot]
aa08780f52
chore(deps): update dev-dependencies ( #1822 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-15 08:55:50 +01:00
Copilot
409edb82c6
fix: downgrade tiptap to v3.8.0 to resolve editor crash ( #1806 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com>
2025-11-12 22:47:25 +00:00
renovate[bot]
1b995024a9
fix(deps): update dependency @sentry/vue to v10.25.0 ( #1780 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-12 21:37:36 +01:00
renovate[bot]
df5084b8e7
chore(deps): update pnpm to v10.22.0 ( #1800 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-12 21:37:23 +01:00
renovate[bot]
0c59383abb
chore(deps): update dev-dependencies ( #1790 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-12 15:26:35 +01:00
renovate[bot]
e371ee6f12
chore(deps): update pnpm to v10.21.0 ( #1779 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-11 11:56:08 +01:00
renovate[bot]
d8d118be62
fix(deps): update dependency vue to v3.5.24 ( #1772 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-11 11:55:07 +01:00
renovate[bot]
be2bd90de4
fix(deps): update tiptap to v3.10.5 ( #1773 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-11 11:12:17 +01:00
Weijie Zhao
43a5ae1309
feat: enable user mentions in task description & comments ( #1754 )
2025-11-09 19:42:38 +01:00
renovate[bot]
9efec4983e
fix(deps): update dependency marked to v16.4.2 ( #1767 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-08 15:42:44 +01:00
Copilot
e424689ed9
fix: migrate Sentry integration to SDK v8 API ( #1769 )
2025-11-07 15:20:57 +00:00
renovate[bot]
77779350d2
fix(deps): update dependency vue to v3.5.23 ( #1760 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-06 11:22:22 +00:00
renovate[bot]
08525bcb4b
fix(deps): update tiptap to v3.10.2 ( #1735 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-06 07:23:21 +00:00
renovate[bot]
6ee83283e0
fix(deps): update dependency @sentry/vue to v10.23.0 ( #1755 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-06 08:08:06 +01:00
renovate[bot]
5987874165
fix(deps): update dependency pinia to v3.0.4 ( #1753 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-05 10:37:59 +00:00
renovate[bot]
7c93d9fe1b
chore(deps): update dependency @cypress/vite-dev-server to v7.0.1 ( #1750 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-05 10:10:11 +01:00
renovate[bot]
7fe4573211
fix(deps): update dependency axios to v1.13.2 ( #1748 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-05 00:26:43 +01:00
renovate[bot]
615c076fcb
chore(deps): update dev-dependencies ( #1740 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-03 21:54:26 +00:00
renovate[bot]
4f26fae25b
fix(deps): update dependency dayjs to v1.11.19 ( #1736 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-31 12:24:34 +00:00
renovate[bot]
d2a097f07d
fix(deps): update tiptap to v3.9.1 ( #1731 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-30 11:45:00 +00:00
renovate[bot]
25898a7049
chore(deps): update pnpm to v10.20.0 ( #1732 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-30 11:44:46 +00:00
renovate[bot]
993d24a548
fix(deps): update dependency axios to v1.13.1 ( #1727 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-29 14:44:11 +00:00
renovate[bot]
5d8ab9b4b6
fix(deps): update dependency @kyvg/vue3-notification to v3.4.2 ( #1726 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-29 14:43:54 +00:00
renovate[bot]
458081986d
fix(deps): update dependency @sentry/vue to v10.22.0 ( #1712 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-29 14:28:50 +00:00
renovate[bot]
c3b2bb92eb
fix(deps): update tiptap to v3.9.0 ( #1723 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-29 14:12:16 +00:00
renovate[bot]
c66cf8b75a
fix(deps): update dependency axios to v1.13.0 ( #1720 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-28 00:34:28 +01:00
renovate[bot]
fedb486e70
chore(deps): update dev-dependencies ( #1708 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-27 13:24:05 +01:00
renovate[bot]
087e6294d4
fix(deps): update tiptap to v3.8.0 ( #1713 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-27 13:23:32 +01:00
renovate[bot]
262e890dc9
fix(deps): update vueuse to v14 (major) ( #1707 )
...
fix(deps): update vueuse to v14
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-22 22:55:54 +00:00
renovate[bot]
f360bc20ce
chore(deps): update pnpm to v10.19.0 ( #1704 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-23 00:55:18 +02:00
renovate[bot]
0e1c16849c
fix(deps): update dependency @sentry/vue to v10.21.0 ( #1706 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-23 00:55:06 +02:00
renovate[bot]
9a82e4a744
chore(deps): update dev-dependencies ( #1700 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-22 08:06:39 +00:00
renovate[bot]
c0d812e1db
chore(deps): update dev-dependencies ( #1692 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-21 07:11:54 +02:00
renovate[bot]
022c627ad6
chore(deps): update dev-dependencies ( #1686 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-20 08:36:45 +02:00
renovate[bot]
f077088483
chore(deps): update dev-dependencies ( #1682 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-19 09:21:42 +02:00
renovate[bot]
22d03d4309
fix(deps): update tiptap to v3.7.2 ( #1669 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-17 16:10:59 +02:00
renovate[bot]
ddc78cd1d0
fix(deps): update dependency vue-router to v4.6.3 ( #1671 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-17 16:10:45 +02:00
renovate[bot]
2d728fff08
chore(deps): update dev-dependencies ( #1676 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-17 16:10:17 +02:00
renovate[bot]
36872d8274
fix(deps): update dependency marked to v16.4.1 ( #1677 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-17 16:10:03 +02:00
renovate[bot]
a5e2fbbe69
chore(deps): update dev-dependencies ( #1662 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-15 21:23:00 +00:00
renovate[bot]
71287778d3
chore(deps): update dependency happy-dom to v20.0.2 [security] ( #1668 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-15 21:05:20 +00:00
renovate[bot]
cf0b05324e
fix(deps): update dependency vue-router to v4.6.2 ( #1665 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-15 23:03:32 +02:00
renovate[bot]
79d07c833b
fix(deps): update dependency @sentry/vue to v10.20.0 ( #1666 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-15 23:03:22 +02:00
renovate[bot]
1094edab80
fix(deps): update dependency vue-router to v4.6.0 ( #1657 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 19:12:16 +00:00
renovate[bot]
96606bf913
fix(deps): update tiptap to v3.7.0 ( #1660 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 19:04:32 +00:00
renovate[bot]
aa08a89c65
fix(deps): update dependency dompurify to v3.3.0 ( #1651 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 10:42:34 +00:00
renovate[bot]
9ebaea5d9b
fix(deps): update tiptap to v3.6.7 ( #1656 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 10:25:57 +00:00
renovate[bot]
aaae3ccd34
chore(deps): update dev-dependencies ( #1644 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 12:24:53 +02:00
renovate[bot]
abcdb2c537
chore(deps): update pnpm to v10.18.3 ( #1655 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-14 12:24:19 +02:00
renovate[bot]
c723b2dffb
chore(deps): update dependency happy-dom to v20 [security] ( #1640 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-11 09:26:17 +02:00
renovate[bot]
cf9e5d0829
chore(deps): update pnpm to v10.18.2 ( #1636 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-10 09:27:03 +02:00
renovate[bot]
d77853e940
chore(deps): update dependency @types/node to v22.18.9 ( #1635 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-10 09:26:44 +02:00
renovate[bot]
b6f61b08a7
fix(deps): update tiptap to v3.6.6 ( #1633 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-09 20:46:47 +02:00
renovate[bot]
27015e0ab7
fix(deps): update dependency @sentry/vue to v10.19.0 ( #1632 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-09 11:58:32 +00:00
renovate[bot]
4220e8219e
chore(deps): update dev-dependencies ( #1625 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-09 08:34:06 +00:00
renovate[bot]
aa400bb532
fix(deps): update dependency @sentry/vue to v10.18.0 ( #1606 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-07 22:35:33 +02:00
renovate[bot]
866aedf94a
chore(deps): update dev-dependencies ( #1601 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-07 10:01:25 +02:00
renovate[bot]
4bf3f73df2
fix(deps): update dependency marked to v16.4.0 ( #1603 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-07 10:00:55 +02:00
renovate[bot]
1af48aacb9
chore(deps): update pnpm to v10.18.1 ( #1598 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 13:57:53 +00:00
renovate[bot]
4206354849
fix(deps): update font awesome to v7.1.0 ( #1587 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 15:32:35 +02:00
renovate[bot]
adda31c60c
fix(deps): update tiptap to v3.6.5 ( #1595 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 15:32:20 +02:00
renovate[bot]
7fce68dd9c
chore(deps): update pnpm to v10.18.0 ( #1596 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 15:32:06 +02:00
renovate[bot]
714b8f82cf
fix(deps): update dependency tailwindcss to v3.4.18 ( #1585 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 11:54:29 +00:00
renovate[bot]
4177363e46
chore(deps): update dev-dependencies ( #1584 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 11:51:37 +02:00
renovate[bot]
c0bd5539f3
chore(deps): update dev-dependencies ( #1578 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-01 08:47:32 +02:00
kolaente
5c4f6dab6b
fix(test): set cypress api url when running tests locally
2025-09-30 18:56:53 +02:00
renovate[bot]
e63b349b5f
fix(deps): update dependency @sentry/vue to v10.17.0 ( #1574 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-30 14:12:49 +00:00
renovate[bot]
df0e9ccefa
chore(deps): update dev-dependencies ( #1569 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-30 09:16:11 +02:00
renovate[bot]
93e17929a9
fix(deps): update dependency @sentry/vue to v10.16.0 ( #1568 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-29 16:33:42 +00:00
renovate[bot]
75e05c45c8
fix(deps): update tiptap to v3.6.2 ( #1566 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-29 17:46:17 +02:00
renovate[bot]
6c7ccfdc20
chore(deps): update dev-dependencies ( #1563 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-29 07:47:24 +02:00
renovate[bot]
f6947952de
fix(deps): update dependency vue to v3.5.22 ( #1558 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-28 20:51:00 +02:00
renovate[bot]
a6d4a8333f
fix(deps): update dependency @sentry/vue to v10.13.0 ( #1538 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-28 17:04:57 +00:00
renovate[bot]
c71d56ee5e
fix(deps): update tiptap to v3.4.5 ( #1534 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-28 16:21:43 +00:00
renovate[bot]
2e72455b39
chore(deps): update pnpm to v10.17.1 ( #1537 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-28 15:17:09 +00:00
renovate[bot]
0654712cbd
chore(deps): update dev-dependencies ( #1527 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-21 20:17:38 +02:00
renovate[bot]
3242650713
chore(deps): update dev-dependencies ( #1522 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-18 08:21:53 +02:00
renovate[bot]
a9239ecc62
chore(deps): update pnpm to v10.17.0 ( #1521 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-17 19:58:21 +02:00
renovate[bot]
26b251172c
fix(deps): update tiptap to v3.4.4 ( #1519 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-17 15:07:30 +00:00
renovate[bot]
4ba9537e84
fix(deps): update dependency dompurify to v3.2.7 ( #1517 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-17 15:07:06 +00:00
renovate[bot]
908df8cd5f
fix(deps): update dependency @sentry/vue to v10.12.0 ( #1515 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-17 16:46:16 +02:00
renovate[bot]
4e9cc597aa
fix(deps): update tiptap to v3.4.3 ( #1506 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-15 22:37:09 +02:00
renovate[bot]
35d11efec7
chore(deps): update dev-dependencies ( #1316 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kolaente <k@knt.li>
2025-09-15 15:31:47 +00:00
renovate[bot]
243a0f51c6
chore(deps): update pnpm to v10.16.1 ( #1496 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-15 16:52:40 +02:00
renovate[bot]
9bb1f89383
fix(deps): update dependency marked to v16.3.0 ( #1500 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-15 16:52:06 +02:00
renovate[bot]
d33b3f2052
fix(deps): update dependency axios to v1.12.2 ( #1495 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-14 15:41:19 +02:00
renovate[bot]
e6abbd5fca
fix(deps): update dependency @intlify/unplugin-vue-i18n to v11.0.1 ( #1488 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-12 11:55:33 +02:00
renovate[bot]
5111f245ad
fix(deps): update dependency axios to v1.12.0 [security] ( #1487 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-12 09:52:34 +00:00
renovate[bot]
b2b1ea776d
fix(deps): update dependency @sentry/vue to v10.11.0 ( #1485 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-12 08:23:30 +02:00
renovate[bot]
c25b906e6f
fix(deps): update dependency @fortawesome/vue-fontawesome to v3.1.2 ( #1474 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-11 17:12:41 +02:00
renovate[bot]
9e6e5f993f
chore(deps): update dependency vite to v7.1.5 [security] ( #1451 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-10 13:25:10 +02:00
renovate[bot]
2538806512
fix(deps): update tiptap to v3.4.2 ( #1446 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-09 21:10:01 +02:00
renovate[bot]
02da0116a9
fix(deps): update dependency vue-i18n to v11.1.12 ( #1420 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-05 09:38:51 +00:00
renovate[bot]
d296352a01
fix(deps): update dependency @intlify/unplugin-vue-i18n to v11 ( #1418 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 16:15:37 +00:00
renovate[bot]
5bde234859
fix(deps): update dependency @sentry/vue to v10.10.0 ( #1416 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 15:46:03 +00:00
renovate[bot]
6892e8e447
fix(deps): update tiptap to v3.4.1 ( #1412 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 14:51:03 +00:00
renovate[bot]
7605fc255b
fix(deps): update tiptap to v3.4.0 ( #1406 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 06:33:01 +00:00
renovate[bot]
d78291acf7
fix(deps): update dependency @sentry/vue to v10.9.0 ( #1400 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-03 16:09:05 +02:00
renovate[bot]
d34a3a2c77
fix(deps): update font awesome to v7.0.1 ( #1394 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-02 21:14:14 +00:00
renovate[bot]
795afad9c1
fix(deps): update tiptap to v3.3.1 ( #1386 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-02 14:01:23 +00:00
renovate[bot]
7dafd07879
fix(deps): update dependency vue to v3.5.21 ( #1382 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-02 13:05:44 +00:00
renovate[bot]
67befec053
fix(deps): update vueuse to v13.9.0 ( #1374 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-01 21:18:09 +00:00
renovate[bot]
9800b2a8f8
chore(deps): update pnpm to v10.15.1 ( #1371 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-01 21:09:27 +00:00
renovate[bot]
db9d842a5b
fix(deps): update vueuse to v13.8.0 ( #1367 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-31 15:59:55 +02:00
renovate[bot]
9d28b2247a
fix(deps): update tiptap to v3.3.0 ( #1366 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-31 10:24:47 +00:00
renovate[bot]
1f88680a27
fix(deps): update dependency dayjs to v1.11.18 ( #1360 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-31 09:23:28 +02:00
renovate[bot]
a5ac5dfcf1
fix(deps): update dependency @sentry/vue to v10.8.0 ( #1361 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-31 00:34:25 +02:00
renovate[bot]
37b501c029
fix(deps): update dependency dayjs to v1.11.17 ( #1355 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-29 20:53:17 +00:00
renovate[bot]
136690b31e
fix(deps): update dependency marked to v16.2.1 ( #1350 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-28 17:36:31 +00:00
renovate[bot]
d45b381a96
fix(deps): update dependency dayjs to v1.11.15 ( #1349 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-28 17:28:32 +00:00
renovate[bot]
1d25c29e9a
fix(deps): update dependency vue to v3.5.20 ( #1327 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-28 19:11:02 +02:00
renovate[bot]
f099fce4fe
chore(deps): update pnpm to v10.15.0 ( #1314 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-28 13:20:27 +02:00
renovate[bot]
b37e2b9389
fix(deps): update dependency @floating-ui/dom to v1.7.4 ( #1332 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-28 13:19:23 +02:00
renovate[bot]
9f9a71a01f
chore(deps): update dev-dependencies ( #1310 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-19 09:43:13 +02:00
renovate[bot]
b794874cd4
fix(deps): update vueuse to v13.7.0 ( #1305 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-18 10:42:54 +00:00
renovate[bot]
99c1035191
chore(deps): update dev-dependencies ( #1298 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-18 07:20:45 +00:00
renovate[bot]
6178daf9b2
fix(deps): update dependency marked to v16.2.0 ( #1304 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-18 09:08:17 +02:00
renovate[bot]
c4889127cb
chore(deps): update dev-dependencies ( #1295 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-15 10:43:08 +02:00
renovate[bot]
92410c7ee5
fix(deps): update tiptap to v3.2.0 ( #1292 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-14 11:03:16 +00:00
renovate[bot]
27d3956182
chore(deps): update dev-dependencies ( #1290 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-14 08:30:33 +02:00
renovate[bot]
70eef88557
fix(deps): update dependency @sentry/vue to v10.5.0 ( #1280 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-13 06:52:26 +00:00
kolaente
5fc255cb36
feat(gantt): rebuild the gantt chart ( #1001 )
2025-08-12 16:33:50 +02:00
renovate[bot]
6bd3d6d4a0
fix(deps): update dependency @sentry/vue to v10.4.0 ( #1269 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-11 14:38:15 +00:00
renovate[bot]
8b18f08e41
fix(deps): update tiptap to v3.1.0 ( #1267 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-11 16:26:40 +02:00
renovate[bot]
06f319321f
chore(deps): update dependency browserslist to v4.25.2 ( #1266 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-10 06:23:44 +02:00
renovate[bot]
5a9b85d2c1
chore(deps): update dependency @cypress/vite-dev-server to v7 ( #1265 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-09 09:08:26 +02:00
renovate[bot]
1b65af3001
chore(deps): update dev-dependencies ( #1264 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-09 09:06:10 +02:00
renovate[bot]
5a0fc0780b
fix(deps): update dependency @sentry/vue to v10.3.0 ( #1263 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-08 16:44:54 +02:00
renovate[bot]
9204a67dc1
chore(deps): update dev-dependencies ( #1261 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-08 08:49:09 +02:00
renovate[bot]
68a5c5e2a5
chore(deps): update dev-dependencies ( #1252 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-07 08:20:55 +02:00
renovate[bot]
c1d88865e7
fix(deps): update dependency @sentry/vue to v10.2.0 ( #1249 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-06 17:48:57 +00:00
kolaente
504e201da2
feat: install stylelint
2025-08-06 10:55:23 +02:00
renovate[bot]
8130f5cc27
chore(deps): update dependency sass-embedded to v1.90.0 ( #1246 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-06 07:43:35 +02:00
renovate[bot]
84165848e8
fix(deps): pin dependencies ( #1242 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-05 19:49:50 +00:00
renovate[bot]
dff2bde370
fix(deps): pin dependency @floating-ui/dom to 1.7.3 ( #1243 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-05 19:37:40 +00:00
kolaente
d5de5a4f0d
feat(deps): update tiptap to v3 ( #1241 )
2025-08-05 21:23:35 +02:00
renovate[bot]
5221ec7c86
chore(deps): update dev-dependencies ( #1237 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-05 10:02:28 +02:00
renovate[bot]
b1b3c20483
fix(deps): update dependency @sentry/vue to v10.1.0 ( #1232 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-04 11:56:55 +00:00
renovate[bot]
fd771e2b7d
fix(deps): update dependency marked to v16.1.2 ( #1229 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-04 06:25:03 +00:00
renovate[bot]
ddff1cf31a
chore(deps): update dependency vue-tsc to v3.0.5 ( #1220 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-02 06:47:00 +02:00
renovate[bot]
b35a4a6172
fix(deps): update dependency @sentry/vue to v10 ( #1209 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-01 09:08:59 +02:00
renovate[bot]
1bc2cc6ab3
chore(deps): update dev-dependencies ( #1212 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-01 08:21:31 +02:00
renovate[bot]
60d0ae5c3f
fix(deps): update dependency @sentry/vue to v9.44.0 ( #1208 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-31 20:26:56 +02:00
renovate[bot]
995c268f87
chore(deps): update pnpm to v10.14.0 ( #1207 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-31 20:26:38 +02:00
renovate[bot]
f4d55c0558
chore(deps): update dev-dependencies to v1.0.0-alpha.3 ( #1204 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-31 06:58:56 +02:00
renovate[bot]
be8b2b7771
chore(deps): update dev-dependencies ( #1196 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-30 07:58:30 +02:00
renovate[bot]
f537f26a23
fix(deps): update sentry-javascript monorepo ( #1195 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-29 20:47:33 +02:00
renovate[bot]
dd833c47c7
fix(deps): update dependency @sentry/vue to v9.42.1 ( #1188 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-28 14:47:36 +00:00
renovate[bot]
29326274e7
fix(deps): update vueuse to v13.6.0 ( #1187 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-28 16:35:55 +02:00
renovate[bot]
e4c9615177
chore(deps): update dev-dependencies ( #1184 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-28 06:47:32 +00:00
renovate[bot]
e032b14c84
chore(deps): update dependency vite-plugin-vue-devtools to v8 ( #1185 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-28 08:35:59 +02:00
renovate[bot]
c1bde966e6
chore(deps): update dependency rollup to v4.45.3 ( #1182 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-27 09:18:58 +02:00
renovate[bot]
e637b4ecf1
chore(deps): update dev-dependencies ( #1180 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-26 12:14:25 +02:00
renovate[bot]
e56fb77c0b
fix(deps): update dependency @sentry/vue to v9.42.0 ( #1176 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-25 15:47:43 +02:00
renovate[bot]
b58fbc724a
chore(deps): update dev-dependencies ( #1174 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-25 09:44:10 +02:00
renovate[bot]
ef28fe46f0
fix(deps): update dependency @sentry/vue to v9.41.0 ( #1173 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-24 18:49:54 +00:00
renovate[bot]
0ec5147b71
fix(deps): update dependency @fortawesome/vue-fontawesome to v3.1.0 ( #1162 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-24 18:47:36 +00:00
renovate[bot]
3355984d61
chore(deps): update dev-dependencies ( #1169 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-24 09:06:28 +02:00
renovate[bot]
60c6162634
fix(deps): update dependency vue-i18n to v11.1.11 ( #1166 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-23 10:37:34 +00:00
renovate[bot]
25d99da25b
fix(deps): update dependency axios to v1.11.0 ( #1167 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-23 07:19:53 +00:00
renovate[bot]
c7dc82f417
chore(deps): update dev-dependencies to v8.38.0 ( #1164 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-23 08:59:47 +02:00
renovate[bot]
14f6692990
fix(deps): update dependency vue to v3.5.18 ( #1163 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-23 08:59:35 +02:00
kolaente
2395c22ad8
fix: add test:e2e-nix command to make running cypress in devenv work
2025-07-22 19:59:05 +02:00
renovate[bot]
ac2321fa21
fix(deps): update font awesome to v7 (major) ( #1160 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kolaente <k@knt.li>
2025-07-22 17:37:47 +00:00
renovate[bot]
36df5d8c41
chore(deps): update dependency esbuild to v0.25.8 ( #1151 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-20 09:38:30 +02:00
renovate[bot]
14e03d3a92
chore(deps): update dev-dependencies ( #1148 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-19 09:27:33 +02:00
renovate[bot]
6fd2c23582
fix(deps): update dependency marked to v16.1.1 ( #1145 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-18 18:32:42 +02:00
renovate[bot]
0ac4b2b9c9
chore(deps): update dependency vue-tsc to v3.0.2 ( #1144 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-18 09:53:32 +02:00
renovate[bot]
6fe381b6ed
fix(deps): update dependency marked to v16.1.0 ( #1143 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-17 22:42:43 +02:00
renovate[bot]
2e55a2096c
fix(deps): update dependency @sentry/vue to v9.40.0 ( #1141 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-17 16:48:02 +02:00
renovate[bot]
072ea5df64
chore(deps): update dev-dependencies ( #1136 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-17 09:52:20 +02:00
renovate[bot]
ca9fb420ce
fix(deps): update dependency vue-i18n to v11.1.10 ( #1132 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-16 13:10:56 +02:00
renovate[bot]
1870a8aabb
fix(deps): update dependency @sentry/vue to v9.39.0 ( #1126 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-15 21:56:21 +02:00
renovate[bot]
0c952d1b5f
chore(deps): update dev-dependencies ( #1115 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-14 10:29:01 +02:00
renovate[bot]
084821edf9
fix(deps): update tiptap to v2.26.1 ( #1112 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-12 15:18:58 +00:00
renovate[bot]
3528583c13
fix(deps): update dependency @sentry/vue to v9.38.0 ( #1109 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-12 16:28:44 +02:00
renovate[bot]
1dd2e4689b
fix(deps): update dependency @sentry/vue to v9.36.0 ( #1101 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-09 20:46:04 +02:00
renovate[bot]
c73b925483
chore(deps): update pnpm to v10.13.1 ( #1100 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-09 20:45:50 +02:00
renovate[bot]
9fc70a803b
chore(deps): update dev-dependencies ( #1093 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-09 09:14:55 +02:00
renovate[bot]
5a6d52717c
fix(deps): update dependency @sentry/vue to v9.35.0 ( #1092 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-08 11:53:52 +00:00
renovate[bot]
b1e62b38af
fix(deps): update tiptap to v2.25.0 ( #1091 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-08 13:43:09 +02:00
renovate[bot]
683e23b0e3
chore(deps): update dependency vite to v7.0.2 ( #1088 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-04 08:26:35 +02:00
renovate[bot]
c18ae139f7
fix(deps): update tiptap to v2.24.1 ( #1087 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-04 08:26:16 +02:00
renovate[bot]
78706b63bc
fix(deps): update dependency vue-i18n to v11.1.9
2025-07-03 12:30:00 +02:00
renovate[bot]
44756de0d3
chore(deps): update dev-dependencies
2025-07-03 08:59:27 +02:00
renovate[bot]
d2a2a9007a
fix(deps): update tiptap to v2.24.0
2025-07-03 00:08:44 +02:00
renovate[bot]
eba3a4e4ea
fix(deps): update dependency vue-i18n to v11.1.8 ( #1070 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-02 17:55:44 +02:00
renovate[bot]
3b64703135
fix(deps): update vueuse to v13.5.0 ( #1067 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-02 14:24:13 +02:00
renovate[bot]
6b643e89d9
chore(deps): update dependency vue-tsc to v3 ( #1065 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-02 07:39:14 +00:00
renovate[bot]
5a29945d6e
chore(deps): update dev-dependencies ( #1064 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-02 09:28:23 +02:00
kolaente
643f4eb819
Revert "chore(deps): update pnpm to v10.12.4 ( #1042 )"
...
This reverts commit c4be855e31 .
CI is now failing in the docker build, reverting this commit until
that's fixed upstream.
2025-07-01 20:41:27 +02:00
renovate[bot]
48a6c73ef3
fix(deps): update dependency @sentry/vue to v9.34.0 ( #1062 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-01 20:39:44 +02:00
renovate[bot]
c4be855e31
chore(deps): update pnpm to v10.12.4 ( #1042 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-01 09:42:54 +02:00
renovate[bot]
d3579b8e55
fix(deps): update tiptap to v2.23.1 ( #1051 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-01 09:42:20 +02:00
renovate[bot]
1f15f246c9
chore(deps): update dev-dependencies ( #1050 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-01 09:41:36 +02:00
renovate[bot]
6c7fcdee24
chore(deps): update dev-dependencies ( #1044 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-28 10:07:39 +02:00
renovate[bot]
87dd935f60
chore(deps): update dev-dependencies (major) ( #1045 )
...
chore(deps): update dev-dependencies
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-28 09:35:53 +02:00
kolaente
2cf2f98f1d
Revert "chore(deps): update pnpm to v10.12.4 ( #1033 )"
...
This reverts commit a815e2f4b7 .
Since updating pnpm, release builds do not work anymore. Reverting this
commit until we have a proper fix.
2025-06-27 13:57:31 +02:00
renovate[bot]
98cc78d9b5
fix(deps): update dependency @sentry/vue to v9.33.0 ( #1039 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-27 11:13:15 +00:00
renovate[bot]
53a3945a03
fix(deps): update dependency marked to v16 ( #1037 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-27 08:37:46 +02:00
renovate[bot]
e391aab994
fix(deps): update tiptap to v2.23.0 ( #1036 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-27 08:11:03 +02:00
renovate[bot]
836043bbdf
chore(deps): update dependency postcss-preset-env to v10.2.4 ( #1035 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-27 08:10:44 +02:00
renovate[bot]
a815e2f4b7
chore(deps): update pnpm to v10.12.4 ( #1033 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-26 20:12:07 +00:00
renovate[bot]
8f298925ff
chore(deps): update dev-dependencies ( #1030 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-26 08:12:01 +02:00
renovate[bot]
bc6b830b88
fix(deps): update dependency @sentry/vue to v9.32.0 ( #1022 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-25 14:04:44 +02:00
renovate[bot]
084fc5a2a3
chore(deps): update dependency @types/node to v22.15.33 ( #1017 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-25 08:02:03 +02:00
renovate[bot]
e0f4bafd07
chore(deps): update pnpm to v10.12.3 ( #1006 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-24 10:52:17 +00:00
renovate[bot]
247d82f086
chore(deps): update dev-dependencies to v8.35.0 ( #998 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-24 07:57:50 +02:00
renovate[bot]
bbef461617
chore(deps): update pnpm to v10.12.2 ( #994 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-23 22:39:27 +02:00