Commit Graph

1034 Commits

Author SHA1 Message Date
renovate[bot]
b5a7f68502 fix(deps): update dependency @fortawesome/vue-fontawesome to v3.3.1 2026-07-13 07:48:32 +00:00
renovate[bot]
8b4cda2203 chore(deps): update dev-dependencies 2026-07-11 12:21:26 +00:00
renovate[bot]
b6f6ac354a fix(deps): update dependency @sentry/vue to v10.64.0 2026-07-10 19:13:00 +00:00
renovate[bot]
e992ed594c fix(deps): update tiptap to v3.27.3 2026-07-10 12:52:48 +00:00
renovate[bot]
c5f4dde4da chore(deps): update dev-dependencies 2026-07-10 12:52:27 +00:00
renovate[bot]
115e30377c fix(deps): update tiptap to v3.27.2 2026-07-09 11:56:03 +00:00
renovate[bot]
10d780f5cd chore(deps): update pnpm to v11.10.0 2026-07-08 07:32:05 +00:00
renovate[bot]
66ec7fa23a fix(deps): update dependency @sentry/vue to v10.63.0 2026-07-05 08:35:12 +00:00
renovate[bot]
6cd0c264d9 chore(deps): update dev-dependencies 2026-07-05 08:34:23 +00:00
kolaente
848392e373 chore(deps): migrate rollup override to pnpm catalog
pnpm 11 deprecated the $name reference syntax in overrides; the
catalog keeps the version defined in a single place.
2026-07-05 10:30:43 +02:00
renovate[bot]
b81aa69d04 chore(deps): update dev-dependencies 2026-07-03 11:18:41 +00:00
kolaente
f4904998ea fix(deps): upgrade to pnpm 11 and migrate config to pnpm-workspace.yaml
pnpm 11 no longer reads the `pnpm` field from package.json, renamed
`onlyBuiltDependencies` to `allowBuilds`, and defaults `strictDepBuilds`
to true. It also reads non-auth/registry settings (like
`public-hoist-pattern`) from pnpm-workspace.yaml rather than .npmrc.

This does what renovate PR #3069 could not: alongside the version bump
it moves the build/override/hoist config for both pnpm projects
(frontend/ and desktop/) into a per-project pnpm-workspace.yaml, so the
settings are actually honored under pnpm 11 instead of being silently
ignored (which made #3069 hard-fail with ERR_PNPM_IGNORED_BUILDS).

- frontend/desktop package.json: drop `pnpm` field, bump packageManager
  to pnpm@11.9.0
- frontend/pnpm-workspace.yaml: allowBuilds + overrides + publicHoistPattern
- desktop/pnpm-workspace.yaml: allowBuilds + overrides
- frontend/.npmrc removed (its only setting moved to publicHoistPattern)
- mise.toml: pnpm 10.34.4 -> 11.9.0

electron-winstaller is a transitive build script that was never in the
old onlyBuiltDependencies, so it was ignored under pnpm 10; it is
explicitly denied (allowBuilds: false) to keep behavior identical while
satisfying strictDepBuilds.

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-03 06:54:50 +00:00
renovate[bot]
7d8dfe9272 fix(deps): update dependency vue-router to v5 2026-07-03 06:34:11 +00:00
renovate[bot]
1d96ce9d05 chore(deps): update dev-dependencies 2026-07-02 19:02:40 +00:00
kolaente
756da5c455 chore(deps): update vite to v8
Bumps vite 7.3.6 -> 8.1.0 (Rolldown-based), split out of the bundled
renovate PR #3046.

Rolldown does not elide a type-only import that is referenced purely as
a type, so `RouteLocationRaw` in Notifications.vue must be imported with
`type` to keep it out of the runtime bundle.

vite 8 is not coupled to the other major bumps: vitest 4 and all vite
plugins already accept vite ^8, and @sentry/vite-plugin declares no vite
peer dependency.

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-02 18:04:45 +00:00
kolaente
c1f0b2c81f chore(deps): update typescript to v6
Bump typescript from 5.9.3 to 6.0.3.

TS 6 changes that required source fixes:
- baseUrl is deprecated and now a hard error (TS5101). Dropped the unused
  baseUrl from tsconfig.app.json; the @/* paths are relative and resolve
  without it (tsconfig.vitest.json inherits this).
- vite.config.ts referenced ImportMetaEnv for getSentryConfig's parameter,
  but it is only ever called with loadEnv()'s Record<string, string>. Typed
  the parameter accordingly, matching its caller and the other config helpers.

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-02 16:27:58 +00:00
renovate[bot]
606b23784f chore(deps): update dev-dependencies 2026-07-02 10:44:06 +00:00
renovate[bot]
3801bff4f9 fix(deps): update dependency marked to v18 2026-07-02 09:02:45 +00:00
renovate[bot]
f78543c880 chore(deps): update dependency postcss to v8.5.16 2026-07-02 08:03:51 +00:00
kolaente
c689887fca chore(deps): update low-risk dev-dependency majors
Bumps independent dev-dependency majors split out of the bundled
renovate PR #3046:

- otplib 12.0.1 -> 13.4.1 (v13 is a rewrite: the `authenticator`
  singleton was removed in favour of the functional API; the only
  consumer is the TOTP e2e test, migrated to `await generate({secret})`)
- rollup-plugin-visualizer 6.0.11 -> 7.0.1
- stylelint-config-property-sort-order-smacss 10.0.0 -> 11.2.0
- @sentry/vite-plugin 3.6.1 -> 5.3.0 (no peer-dep coupling to vite)

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-02 06:30:02 +00:00
kolaente
1c142e701e chore(deps): update eslint to v10
Bumps eslint 9.39.4 -> 10.6.0, split out of the bundled renovate
PR #3046. eslint 10 no longer ships `@eslint/js` transitively, so it is
added as a direct devDependency (the flat config imports it for
`js.configs.recommended`).

eslint 10's expanded recommended set flags ten new errors, fixed here:

no-useless-assignment (dead initializer overwritten before any read):
- FilterAutocomplete.ts, UserTeam.vue, helpers/filters.ts,
  parseSubtasksViaIndention.ts, models/notification.ts,
  quickAddMagic/dateParser.ts (x2), quickAddMagic/repeatParser.ts

preserve-caught-error:
- stores/auth.ts verifyEmail() now attaches the caught error as `cause`
- stores/auth.ts refreshUserInfo() keeps its existing `{e, message}`
  cause shape (read by message/index.ts as `cause.message`); the rule
  is disabled inline there since changing the shape is a behaviour change

Claude-Session: https://claude.ai/code/session_01AHD9BmNcUfgBZdPveZRa8z
2026-07-01 12:00:08 +00:00
renovate[bot]
631825a93b chore(deps): update dependency stylelint to v17.14.0 2026-06-30 18:11:36 +00:00
renovate[bot]
5d368b849a fix(deps): update vueuse to v14.3.0 2026-06-29 22:08:01 +00:00
renovate[bot]
8f68b3f396 fix(deps): update font awesome 2026-06-29 17:55:47 +00:00
renovate[bot]
01a851ca72 fix(deps): update dependency vue-i18n to v11.4.6 2026-06-29 16:58:17 +00:00
renovate[bot]
65a498dd50 fix(deps): update dependency @sentry/vue to v10.62.0 2026-06-29 16:57:00 +00:00
renovate[bot]
bb0055293b chore(deps): update pnpm to v10.34.4 2026-06-29 16:14:58 +00:00
renovate[bot]
d2fcd2efa5 fix(deps): update dependency axios to v1.18.1 2026-06-29 15:22:25 +00:00
renovate[bot]
07c872eb2b fix(deps): update dependency vue to v3.5.39 2026-06-29 15:22:17 +00:00
renovate[bot]
b866ba3f58 fix(deps): update dependency @intlify/unplugin-vue-i18n to v11.2.4 2026-06-29 08:16:56 +02:00
renovate[bot]
b0bbfa677a chore(deps): update playwright to v1.61.1 2026-06-29 08:16:15 +02:00
renovate[bot]
c72cfdf50d chore(deps): update dev-dependencies 2026-06-28 12:46:39 +00:00
renovate[bot]
12952516cf fix(deps): update dependency ufo to v1.6.4 2026-06-28 12:10:14 +00:00
renovate[bot]
9946ca9031 fix(deps): update dependency nanoid to v5.1.16 2026-06-28 12:10:03 +00:00
renovate[bot]
a73761f4c5 fix(deps): update dependency sortablejs to v1.15.7 2026-06-28 09:08:08 +00:00
renovate[bot]
ac9811826e fix(deps): update dependency marked to v17.0.6 2026-06-28 09:07:29 +00:00
renovate[bot]
0369b61001 fix(deps): update dependency dayjs to v1.11.21 2026-06-28 09:07:12 +00:00
renovate[bot]
59da1d9514 fix(deps): update dependency @floating-ui/dom to v1.7.6 2026-06-28 09:06:49 +00:00
renovate[bot]
eed762097a fix(deps): update tiptap to v3.27.1 2026-06-27 19:39:07 +00:00
renovate[bot]
07d39b4290 chore(deps): pin dependencies 2026-06-27 18:01:23 +00:00
renovate[bot]
7a182817ee chore(deps): update dev-dependencies 2026-06-24 17:37:15 +00:00
renovate[bot]
0f3a8a7e39 chore(deps): update dev-dependencies 2026-06-22 12:33:44 +00:00
renovate[bot]
ab927aa772 chore(deps): update dev-dependencies to v4.62.2 2026-06-19 17:32:00 +00:00
renovate[bot]
54fbc79a52 chore(deps): update dev-dependencies to v4.62.1 2026-06-19 16:09:04 +00:00
dependabot[bot]
1e1e733c36 chore(deps): bump dompurify from 3.4.9 to 3.4.11 in /frontend
Bumps [dompurify](https://github.com/cure53/DOMPurify) from 3.4.9 to 3.4.11.
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](https://github.com/cure53/DOMPurify/compare/3.4.9...3.4.11)

---
updated-dependencies:
- dependency-name: dompurify
  dependency-version: 3.4.11
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-18 21:25:47 +00:00
renovate[bot]
80bb9aadc1 chore(deps): update dev-dependencies to v20.10.6 2026-06-18 20:54:23 +00:00
renovate[bot]
434b5d9fe3 chore(deps): update dev-dependencies to v10.5.0 2026-06-17 19:14:26 +00:00
renovate[bot]
ffcf92936a chore(deps): update dev-dependencies 2026-06-17 12:02:41 +00:00
renovate[bot]
ea4bb09679 chore(deps): update dev-dependencies 2026-06-17 11:22:03 +00:00
renovate[bot]
f851e6f959 chore(deps): update dev-dependencies 2026-06-16 11:46:40 +00:00