Commit Graph

975 Commits

Author SHA1 Message Date
renovate 63008e59a3 fix(deps): update dependency codemirror to v5.65.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-20 11:02:53 +00:00
renovate 3a1da44c94 chore(deps): update dependency eslint to v8.5.0 (#1213)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1213
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-20 08:37:38 +00:00
renovate fccb0dcc61 chore(deps): update dependency esbuild to v0.14.6 (#1218)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.14.5` -> `0.14.6`](https://renovatebot.com/diffs/npm/esbuild/0.14.5/0.14.6) |

---

### Release Notes

<details>
<summary>evanw/esbuild</summary>

### [`v0.14.6`](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md#&#8203;0146)

[Compare Source](https://github.com/evanw/esbuild/compare/v0.14.5...v0.14.6)

-   Fix a minifier bug with BigInt literals

    Previously expression simplification optimizations in the minifier incorrectly assumed that numeric operators always return numbers. This used to be true but has no longer been true since the introduction of BigInt literals in ES2020. Now numeric operators can return either a number or a BigInt depending on the arguments. This oversight could potentially have resulted in behavior changes. For example, this code printed `false` before being minified and `true` after being minified because esbuild shortened `===` to `==` under the false assumption that both operands were numbers:

    ```js
    var x = 0;
    console.log((x ? 2 : -1n) === -1);
    ```

    The type checking logic has been rewritten to take into account BigInt literals in this release, so this incorrect simplification is no longer applied.

-   Enable removal of certain unused template literals ([#&#8203;1853](https://github.com/evanw/esbuild/issues/1853))

    This release contains improvements to the minification of unused template literals containing primitive values:

    ```js
    // Original code
    `${1}${2}${3}`;
    `${x ? 1 : 2}${y}`;

    // Old output (with --minify)
    ""+1+2+3,""+(x?1:2)+y;

    // New output (with --minify)
    x,`${y}`;
    ```

    This can arise when the template literals are nested inside of another function call that was determined to be unnecessary such as an unused call to a function marked with the `/* @&#8203;__PURE__ */` pragma.

    This release also fixes a bug with this transformation where minifying the unused expression `` `foo ${bar}` `` into `"" + bar` changed the meaning of the expression. Template string interpolation always calls `toString` while string addition may call `valueOf` instead. This unused expression is now minified to `` `${bar}` ``, which is slightly longer but which avoids the behavior change.

-   Allow `keyof`/`readonly`/`infer` in TypeScript index signatures ([#&#8203;1859](https://github.com/evanw/esbuild/pull/1859))

    This release fixes a bug that prevented these keywords from being used as names in index signatures. The following TypeScript code was previously rejected, but is now accepted:

    ```ts
    interface Foo {
      [keyof: string]: number
    }
    ```

    This fix was contributed by [@&#8203;magic-akari](https://github.com/magic-akari).

-   Avoid warning about `import.meta` if it's replaced ([#&#8203;1868](https://github.com/evanw/esbuild/issues/1868))

    It's possible to replace the `import.meta` expression using the `--define:` feature. Previously doing that still warned that the `import.meta` syntax was not supported when targeting ES5. With this release, there will no longer be a warning in this case.

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1218
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-20 07:14:24 +00:00
renovate d114c673d8 fix(deps): update dependency @vueuse/core to v7.4.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-19 18:02:38 +00:00
renovate a6771b8d37 chore(deps): update dependency slugify to v1.6.4 (#1209)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1209
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:29:14 +00:00
renovate 91b06a9af6 chore(deps): update dependency caniuse-lite to v1.0.30001291 (#1214)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1214
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:28:22 +00:00
renovate 08502619c4 fix(deps): update dependency @vueuse/router to v7.4.0 (#1216)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1216
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:27:47 +00:00
renovate 26de8e66fa fix(deps): update dependency marked to v4.0.8 (#1217)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1217
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:27:31 +00:00
renovate 770578240a chore(deps): update dependency ts-jest to v27.1.2
continuous-integration/drone/push Build is passing Details
2021-12-17 14:27:34 +00:00
renovate 791678720b chore(deps): update dependency netlify-cli to v8.1.8
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-17 11:02:46 +00:00
renovate 9a612849a3 chore(deps): update dependency express to v4.17.2 (#1211)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1211
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-17 06:49:18 +00:00
renovate c4173c3c35 chore(deps): update dependency vite to v2.7.3 (#1207)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1207
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 15:01:35 +00:00
renovate 46afeb159a chore(deps): update dependency caniuse-lite to v1.0.30001287 (#1205)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1205
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 12:29:54 +00:00
renovate 940494a02d chore(deps): update dependency postcss-preset-env to v7.0.2 (#1206)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1206
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 12:28:24 +00:00
renovate 1a55d04c97 chore(deps): update dependency vite-plugin-pwa to v0.11.12 (#1204)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1204
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 22:30:04 +00:00
renovate 8ccfe716f6 chore(deps): update dependency netlify-cli to v8.1.4 (#1199)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1199
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 12:13:05 +00:00
renovate e3243f012d fix(deps): update dependency @github/hotkey to v1.6.1 (#1197)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1197
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:31:49 +00:00
renovate eef37c4f70 chore(deps): update dependency @vitejs/plugin-vue to v2.0.1 (#1196)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1196
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:31:30 +00:00
renovate e7e1cc0e55 chore(deps): update dependency browserslist to v4.19.1 (#1198)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1198
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:31:17 +00:00
renovate f8031b5aef chore(deps): update dependency esbuild to v0.14.5 (#1200)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1200
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:30:52 +00:00
renovate ac61e8d449 chore(deps): update typescript-eslint monorepo to v5.7.0 (#1192)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1192
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 08:31:19 +00:00
renovate 2c671c6a13 chore(deps): update dependency jest to v27.4.5 (#1193)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1193
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 08:31:04 +00:00
renovate d01c3eabb9 chore(deps): update dependency browserslist to v4.19.0 (#1195)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1195
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 07:42:55 +00:00
renovate d85d86eaa7 chore(deps): update dependency typescript to v4.5.4 (#1194)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1194
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 07:42:41 +00:00
renovate e1b04eed72 chore(deps): update dependency netlify-cli to v8.1.1 (#1190)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1190
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 07:42:15 +00:00
renovate 40479d0c6e chore(deps): update dependency vite to v2.7.2 (#1191)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1191
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-13 22:19:24 +00:00
renovate f5fba7880f chore(deps): update dependency postcss to v8.4.5 (#1189)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1189
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-13 07:34:48 +00:00
renovate ed332f5dd3 chore(deps): update dependency esbuild to v0.14.3 (#1187)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1187
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 18:47:58 +00:00
renovate 63070e63bd chore(deps): pin dependency caniuse-lite to 1.0.30001286 (#1185)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1185
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 17:40:28 +00:00
renovate 14f1ee1885 fix(deps): pin dependency @vueuse/router to 7.3.0 (#1182)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1182
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 15:38:17 +00:00
kolaente 8440869bcd
chore: explicitly add caniuse-lite to dependencies
continuous-integration/drone/push Build is passing Details
2021-12-12 16:29:24 +01:00
Dominik Pschenitschni c3c4d2a0a5 feat: use script setup and ts in app auth components
continuous-integration/drone/push Build was killed Details
2021-12-12 14:37:20 +00:00
renovate b03d5d80cd chore(deps): update dependency cypress to v9
continuous-integration/drone/push Build was killed Details
2021-12-12 13:28:29 +00:00
renovate 2bf9be3676 fix(deps): update dependency @vueuse/core to v7.3.0 (#1178)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1178
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 11:29:30 +00:00
renovate 7ed71f66ea chore(deps): update dependency sass to v1.45.0 (#1177)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1177
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 10:02:56 +00:00
renovate 4463b83b78 chore(deps): update dependency @vitejs/plugin-vue to v2 (#1180)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1180
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 10:02:28 +00:00
renovate 14f14f6d3e fix(deps): update vue monorepo to v3.2.26 (#1179)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1179
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 10:02:11 +00:00
renovate e1449642bd fix(deps): update sentry-javascript monorepo to v6.16.1 (#1175)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1175
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-11 20:21:01 +00:00
renovate 5dfaeb39ca chore(deps): update dependency rollup to v2.61.1 (#1174)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1174
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-11 20:20:52 +00:00
renovate 9584ef127a chore(deps): update dependency netlify-cli to v8.0.20 (#1168)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1168
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-11 16:34:18 +00:00
renovate 41c0594bd2 fix(deps): update dependency marked to v4.0.7 (#1170)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1170
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-10 06:43:05 +00:00
renovate 9acc9039a6 chore(deps): update dependency typescript to v4.5.3 (#1169)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1169
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-10 06:42:40 +00:00
renovate f530d4763e chore(deps): update dependency jest to v27.4.4 (#1171)
continuous-integration/drone/push Build is running Details
Reviewed-on: #1171
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-10 06:42:03 +00:00
renovate 3f4bcbcecd chore(deps): update dependency rollup to v2.61.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-09 18:03:53 +00:00
renovate 89d8c9d639 chore(deps): update dependency vite-plugin-pwa to v0.11.11
continuous-integration/drone/push Build is passing Details
2021-12-09 17:13:48 +00:00
renovate 2de523f2e0 chore(deps): update dependency netlify-cli to v8.0.18
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-09 16:03:06 +00:00
renovate 22e62a2cea chore(deps): update dependency vite-svg-loader to v3.1.1
continuous-integration/drone/push Build is passing Details
2021-12-09 15:34:24 +00:00
renovate 92c89d145c chore(deps): update dependency netlify-cli to v8.0.17
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-09 15:03:05 +00:00
renovate 4b8a7e1556 fix(deps): update dependency @vueuse/core to v7.2.2
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-08 12:03:02 +00:00
renovate d0c6576efa fix(deps): update dependency @vueuse/core to v7.2.1 (#1158)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1158
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-08 11:38:43 +00:00
renovate e684e9a90b chore(deps): update dependency ts-jest to v27.1.1
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-08 09:02:52 +00:00
renovate b4cbe1e1fd fix(deps): update sentry-javascript monorepo to v6.16.0 (#1155)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1155
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 21:03:27 +00:00
renovate c8029ec3c4 chore(deps): update dependency vite to v2.7.1 (#1154)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1154
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 19:36:57 +00:00
renovate 6225c54447 fix(deps): update dependency dompurify to v2.3.4
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-07 15:03:02 +00:00
renovate 809e876091 chore(deps): update dependency @vitejs/plugin-legacy to v1.6.4 (#1152)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1152
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 12:06:02 +00:00
renovate 470022899f chore(deps): update dependency netlify-cli to v8.0.16 (#1147)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1147
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 09:29:06 +00:00
renovate 8d1d60ba80 chore(deps): update dependency @vitejs/plugin-vue to v1.10.2 (#1150)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1150
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 09:28:38 +00:00
renovate 028ad3dc14 chore(deps): update dependency vite to v2.7.0 (#1151)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1151
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 09:28:13 +00:00
renovate f4df628e47 chore(deps): update typescript-eslint monorepo to v5.6.0 (#1148)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1148
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 06:14:44 +00:00
renovate 150b847638 chore(deps): update dependency eslint to v8.4.1 (#1149)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1149
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-07 06:13:38 +00:00
renovate 684acc01bd fix(deps): update vue monorepo to v3.2.24
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-12-06 10:02:46 +00:00
renovate 3218cf60f0 chore(deps): update dependency eslint-plugin-vue to v8.2.0 (#1145)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1145
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-06 06:35:53 +00:00
renovate 852d71e8b7 chore(deps): update dependency ts-jest to v27.1.0 (#1141)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1141
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-05 10:21:04 +00:00
renovate c65bb4e93b chore(deps): update dependency vite-plugin-pwa to v0.11.10 (#1140)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1140
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-04 17:13:33 +00:00
renovate 1c3f655323 chore(deps): update dependency esbuild to v0.14.2 (#1139)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1139
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-04 14:55:14 +00:00
renovate bd19234041 chore(deps): update workbox monorepo to v6.4.2 (#1133)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1133
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-04 14:47:52 +00:00
renovate f758eefa88 fix(deps): update dependency vue-i18n to v9.2.0-beta.23 (#1138)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1138
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-04 14:22:11 +00:00
renovate d253d2e743 chore(deps): update dependency eslint to v8.4.0 (#1136)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1136
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-04 13:53:31 +00:00
renovate fe5770082a chore(deps): update dependency netlify-cli to v8.0.15 (#1135)
continuous-integration/drone/push Build is failing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [netlify-cli](https://github.com/netlify/cli) | devDependencies | patch | [`8.0.14` -> `8.0.15`](https://renovatebot.com/diffs/npm/netlify-cli/8.0.14/8.0.15) |

---

### Release Notes

<details>
<summary>netlify/cli</summary>

### [`v8.0.15`](https://github.com/netlify/cli/blob/master/CHANGELOG.md#&#8203;8015-httpswwwgithubcomnetlifyclicomparev8014v8015-2021-12-03)

[Compare Source](https://github.com/netlify/cli/compare/v8.0.14...v8.0.15)

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1135
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-03 16:35:45 +00:00
renovate 2041722b8a chore(deps): update dependency jest to v27.4.3
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build encountered an error Details
2021-12-02 20:03:56 +00:00
renovate 648b947a05 chore(deps): update dependency netlify-cli to v8.0.14 (#1132)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1132
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-02 19:50:07 +00:00
renovate f58e114947 chore(deps): update dependency netlify-cli to v8.0.13
continuous-integration/drone/push Build is passing Details
2021-12-02 17:23:47 +00:00
renovate 144e7bd10c fix(deps): update dependency marked to v4.0.6
continuous-integration/drone/push Build is passing Details
2021-12-02 17:23:19 +00:00
renovate e535584412 chore(deps): update dependency vite-plugin-pwa to v0.11.9 (#1124)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1124
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 22:43:23 +00:00
renovate c5b9e2a1ff chore(deps): update dependency netlify-cli to v8.0.6 (#1125)
continuous-integration/drone/push Build encountered an error Details
Reviewed-on: #1125
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 22:43:03 +00:00
Dominik Pschenitschni 84284a6211 feat: harden textarea auto height algorithm (#985)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #985
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
2021-11-30 20:20:40 +00:00
renovate 7613afbf27 fix(deps): update dependency date-fns to v2.27.0
continuous-integration/drone/push Build is passing Details
2021-11-30 13:08:36 +00:00
renovate aeb886e4c5 chore(deps): update typescript-eslint monorepo to v5.5.0
continuous-integration/drone/push Build is passing Details
2021-11-30 12:52:53 +00:00
renovate 306bd1c179 chore(deps): update dependency esbuild to v0.14.1
continuous-integration/drone/push Build is passing Details
2021-11-30 12:52:30 +00:00
renovate f3cf79fa65 chore(deps): update dependency rollup to v2.60.2 (#1112)
continuous-integration/drone/push Build encountered an error Details
Reviewed-on: #1112
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 12:34:27 +00:00
renovate 8c945b049a chore(deps): update dependency jest to v27.4.2 (#1115)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1115
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 12:33:59 +00:00
renovate f69111c105 chore(deps): update dependency vue-tsc to v0.29.8 (#1111)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1111
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 06:45:57 +00:00
renovate 03afbfc6c8 chore(deps): update dependency sass to v1.44.0 (#1110)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1110
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-30 06:45:01 +00:00
renovate c07288dd8b chore(deps): update dependency jest to v27.4.0 (#1107)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1107
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-29 20:50:12 +00:00
renovate 03f3c52548 chore(deps): update dependency netlify-cli to v8.0.5 (#1108)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1108
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-29 20:00:12 +00:00
renovate 384037c694 chore(deps): update dependency vue-tsc to v0.29.7 (#1106)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [vue-tsc](https://github.com/johnsoncodehk/volar) | devDependencies | patch | [`0.29.6` -> `0.29.7`](https://renovatebot.com/diffs/npm/vue-tsc/0.29.6/0.29.7) |

---

### Release Notes

<details>
<summary>johnsoncodehk/volar</summary>

### [`v0.29.7`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0297)

[Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.29.6...v0.29.7)

-   feat: support html, css custom data ([#&#8203;707](https://github.com/johnsoncodehk/volar/issues/707))
-   feat: support extends tsconfig `vueCompilerOptions` ([#&#8203;731](https://github.com/johnsoncodehk/volar/issues/731))
-   fix: cannot config project reference by directory path ([#&#8203;712](https://github.com/johnsoncodehk/volar/issues/712))
-   fix: pug attrs type-check borken by nested tags ([#&#8203;721](https://github.com/johnsoncodehk/volar/issues/721))
-   fix: import path rename result incorrect ([#&#8203;723](https://github.com/johnsoncodehk/volar/issues/723))
-   fix: `editor.codeActionsOnSave: ["source.organizeImports"]` not working ([#&#8203;726](https://github.com/johnsoncodehk/volar/issues/726))
-   fix: goto definition not working with some component import statement ([#&#8203;728](https://github.com/johnsoncodehk/volar/issues/728))
-   fix: don't show volar commands in non-vue document ([#&#8203;733](https://github.com/johnsoncodehk/volar/issues/733))
-   fix: vue-tsc not working with symlink ([#&#8203;738](https://github.com/johnsoncodehk/volar/issues/738))

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1106
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-28 21:40:03 +00:00
renovate 8f6c0f3738 chore(deps): update dependency vite-plugin-pwa to v0.11.8 (#1102)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1102
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-28 14:50:57 +00:00
konrad f8d009a6aa feat: add message component (#1082)
continuous-integration/drone/push Build is passing Details
This PR adds a simple message component that replaces bulma's default message.

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1082
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-28 14:18:27 +00:00
dpschen 59e915cc10 feat: add packageManager field to package.json (#1099)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1099
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-27 19:36:57 +00:00
renovate a7434f24df chore(deps): update dependency postcss to v8.4.4 (#1100)
continuous-integration/drone/push Build encountered an error Details
Reviewed-on: #1100
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-27 19:32:29 +00:00
renovate 2911dee3cc chore(deps): update dependency esbuild to v0.14.0 (#1095)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1095
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 21:29:31 +00:00
renovate d3fc1439b5 chore(deps): update dependency postcss to v8.4.3 (#1094)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1094
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 20:33:33 +00:00
renovate bb544c353c chore(deps): update dependency postcss to v8.4.2 (#1093)
continuous-integration/drone/push Build encountered an error Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.1` -> `8.4.2`](https://renovatebot.com/diffs/npm/postcss/8.4.1/8.4.2) |

---

### Release Notes

<details>
<summary>postcss/postcss</summary>

### [`v8.4.2`](https://github.com/postcss/postcss/blob/master/CHANGELOG.md#&#8203;842)

[Compare Source](https://github.com/postcss/postcss/compare/8.4.1...8.4.2)

-   Fixed previous source map support in zero plugins mode.

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1093
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 19:59:47 +00:00
renovate cc90a1cea5 fix(deps): update dependency @vueuse/core to v7.1.2 (#1092)
continuous-integration/drone/push Build encountered an error Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@vueuse/core](https://github.com/vueuse/vueuse) | dependencies | patch | [`7.1.1` -> `7.1.2`](https://renovatebot.com/diffs/npm/@vueuse%2fcore/7.1.1/7.1.2) |

---

### Release Notes

<details>
<summary>vueuse/vueuse</summary>

### [`v7.1.2`](https://github.com/vueuse/vueuse/releases/v7.1.2)

[Compare Source](https://github.com/vueuse/vueuse/compare/v7.1.1...v7.1.2)

##### Bug Fixes

-   **useAsyncState:** optional argument of `execute` ([#&#8203;972](https://github.com/vueuse/vueuse/issues/972)) ([6661a09](https://github.com/vueuse/vueuse/commit/6661a09))
-   **UseVirtualList:** fix list not being reactive in component ([#&#8203;968](https://github.com/vueuse/vueuse/issues/968)) ([fb7cd78](https://github.com/vueuse/vueuse/commit/fb7cd78))

##### Features

-   **useEyeDropper:** add initialValue option, improve types ([#&#8203;950](https://github.com/vueuse/vueuse/issues/950)) ([cf8ced3](https://github.com/vueuse/vueuse/commit/cf8ced3))

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1092
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 19:59:31 +00:00
renovate cffba33748 chore(deps): update dependency @vitejs/plugin-vue to v1.10.1 (#1091)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@vitejs/plugin-vue](https://github.com/vitejs/vite) | devDependencies | patch | [`1.10.0` -> `1.10.1`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/1.10.0/1.10.1) |

---

### Release Notes

<details>
<summary>vitejs/vite</summary>

### [`v1.10.1`](https://github.com/vitejs/vite/blob/master/packages/plugin-vue/CHANGELOG.md#&#8203;1101-httpsgithubcomvitejsvitecompareplugin-vue1100plugin-vue1101-2021-11-26)

##### Bug Fixes

-   **plugin-vue:** fix hmr issue in vuejs/vue-next[#&#8203;4358](https://github.com/vitejs/vite/issues/4358) ([709e4b0](709e4b0428))

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1091
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 08:34:32 +00:00
renovate 055e0a2901 fix(deps): update vue monorepo to v3.2.23 (#1090)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1090
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-26 07:12:49 +00:00
renovate c8d1921bcd chore(deps): update dependency netlify-cli to v8.0.3 (#1089)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [netlify-cli](https://github.com/netlify/cli) | devDependencies | patch | [`8.0.2` -> `8.0.3`](https://renovatebot.com/diffs/npm/netlify-cli/8.0.2/8.0.3) |

---

### Release Notes

<details>
<summary>netlify/cli</summary>

### [`v8.0.3`](https://github.com/netlify/cli/blob/master/CHANGELOG.md#&#8203;803-httpswwwgithubcomnetlifyclicomparev802v803-2021-11-25)

[Compare Source](https://github.com/netlify/cli/compare/v8.0.2...v8.0.3)

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1089
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 21:44:19 +00:00
renovate 9e09314f75 chore(deps): update dependency netlify-cli to v8.0.2 (#1088)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [netlify-cli](https://github.com/netlify/cli) | devDependencies | patch | [`8.0.1` -> `8.0.2`](https://renovatebot.com/diffs/npm/netlify-cli/8.0.1/8.0.2) |

---

### Release Notes

<details>
<summary>netlify/cli</summary>

### [`v8.0.2`](https://github.com/netlify/cli/blob/master/CHANGELOG.md#&#8203;802-httpswwwgithubcomnetlifyclicomparev801v802-2021-11-25)

[Compare Source](https://github.com/netlify/cli/compare/v8.0.1...v8.0.2)

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1088
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 19:56:17 +00:00
renovate c3833d90d8 chore(deps): update dependency sass to v1.43.5
continuous-integration/drone/push Build is failing Details
2021-11-25 13:16:09 +00:00
renovate e24cb55e1b fix(deps): update dependency vue-i18n to v9.2.0-beta.22
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-25 11:02:55 +00:00
renovate f897611ad1 chore(deps): update dependency postcss to v8.4.1 (#1083)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.0` -> `8.4.1`](https://renovatebot.com/diffs/npm/postcss/8.4.0/8.4.1) |

---

### Release Notes

<details>
<summary>postcss/postcss</summary>

### [`v8.4.1`](https://github.com/postcss/postcss/blob/master/CHANGELOG.md#&#8203;841)

[Compare Source](https://github.com/postcss/postcss/compare/8.4.0...8.4.1)

-   Fixed `Stringifier` types (by James Garbutt).

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1083
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 06:10:45 +00:00
renovate ea8fe297d9 fix(deps): update dependency marked to v4.0.5 (#1085)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [marked](https://marked.js.org) ([source](https://github.com/markedjs/marked)) | dependencies | patch | [`4.0.4` -> `4.0.5`](https://renovatebot.com/diffs/npm/marked/4.0.4/4.0.5) |

---

### Release Notes

<details>
<summary>markedjs/marked</summary>

### [`v4.0.5`](https://github.com/markedjs/marked/releases/v4.0.5)

[Compare Source](https://github.com/markedjs/marked/compare/v4.0.4...v4.0.5)

##### Bug Fixes

-   table after paragraph without blank line ([#&#8203;2298](https://github.com/markedjs/marked/issues/2298)) ([5714212](5714212afd))

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1085
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 06:10:06 +00:00
renovate c6b604f1fa fix(deps): update dependency @vueuse/core to v7.1.1 (#1086)
continuous-integration/drone/push Build is passing Details
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@vueuse/core](https://github.com/vueuse/vueuse) | dependencies | patch | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@vueuse%2fcore/7.1.0/7.1.1) |

---

### Release Notes

<details>
<summary>vueuse/vueuse</summary>

### [`v7.1.1`](https://github.com/vueuse/vueuse/releases/v7.1.1)

[Compare Source](https://github.com/vueuse/vueuse/compare/v7.1.0...v7.1.1)

##### Bug Fixes

-   improve package.json ([0c4e770](https://github.com/vueuse/vueuse/commit/0c4e770))
-   **useMemory:** import path ([bd2346b](https://github.com/vueuse/vueuse/commit/bd2346b))

</details>

---

### Configuration

📅 **Schedule**: 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #1086
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 06:09:55 +00:00
renovate 4792adfbd1 chore(deps): update dependency netlify-cli to v8.0.1 (#1081)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1081
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 21:32:12 +00:00
renovate 12bec04c42 chore(deps): pin dependency autoprefixer to 10.4.0 (#1080)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1080
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 20:13:02 +00:00
renovate e8eb94d71b chore(deps): update dependency postcss to v8.4.0 (#1075)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1075
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 19:50:33 +00:00
renovate 5137f9f6cb fix(deps): update dependency @vueuse/core to v7.1.0 (#1078)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1078
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 19:31:43 +00:00
renovate a2f65d86c2 chore(deps): update dependency netlify-cli to v8 (#1077)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1077
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 16:33:51 +00:00
renovate 08dcc897cc chore(deps): update dependency @4tw/cypress-drag-drop to v2.1.0 (#1076)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1076
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 16:33:11 +00:00
renovate c975fb0fee fix(deps): update dependency vue-i18n to v9.2.0-beta.21 (#1072)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1072
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-24 13:30:24 +00:00
renovate dd9be97793 fix(deps): update dependency @vueuse/core to v7.0.3 (#1071)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1071
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-23 22:31:56 +00:00
renovate 5c6fcffd75 chore(deps): update dependency vite-plugin-pwa to v0.11.7
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-23 20:02:55 +00:00
renovate d0d1086dac chore(deps): update dependency netlify-cli to v7.1.0 (#1067)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1067
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-23 18:12:36 +00:00
renovate fb91b71395 fix(deps): pin dependency bulma-css-variables to 0.9.33 (#1065)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1065
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-23 09:20:40 +00:00
dpschen 91580f97a1 feat: use popper.js v2 vue3 version of v-tooltip (#1038)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1038
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-23 07:08:21 +00:00
renovate d95fc32d67 fix(deps): update dependency @vueuse/core to v7 (#1066)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1066
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-23 07:07:44 +00:00
dpschen 981babd691 fix: remove mentioning of context (#1017)
continuous-integration/drone/push Build encountered an error Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1017
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-22 21:36:17 +00:00
adrinux 46fa43d67f Migrate to bulma-css-variables and introduce dark mode (#954)
continuous-integration/drone/push Build encountered an error Details
Co-authored-by: Adrian Simmons <adrian@perlucida.co.uk>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #954
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Reviewed-by: konrad <k@knt.li>
Co-authored-by: adrinux <adrian@perlucida.co.uk>
Co-committed-by: adrinux <adrian@perlucida.co.uk>
2021-11-22 21:12:54 +00:00
renovate 8a722f294c chore(deps): update dependency @vitejs/plugin-legacy to v1.6.3
continuous-integration/drone/push Build is passing Details
2021-11-22 17:58:01 +00:00
renovate 5674acbee6 chore(deps): update dependency netlify-cli to v7.0.4
continuous-integration/drone/push Build is passing Details
2021-11-22 17:57:31 +00:00
renovate bf9371c60a chore(deps): update dependency slugify to v1.6.3
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-22 15:02:59 +00:00
renovate 181930f537 chore(deps): update dependency esbuild to v0.13.15
continuous-integration/drone/push Build is passing Details
2021-11-22 12:00:50 +00:00
renovate cee22a1942 chore(deps): update dependency rollup to v2.60.1
continuous-integration/drone/push Build is passing Details
2021-11-22 12:00:23 +00:00
renovate 673458b41d chore(deps): update dependency @vitejs/plugin-vue to v1.10.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is failing Details
2021-11-22 11:02:45 +00:00
renovate b56e99bfdf chore(deps): update dependency vue-tsc to v0.29.6
continuous-integration/drone/push Build is passing Details
2021-11-21 12:26:11 +00:00
renovate a5b5d99129 fix(deps): update dependency codemirror to v5.64.0
continuous-integration/drone/push Build is passing Details
2021-11-21 12:25:48 +00:00
renovate e1b9a9921c chore(deps): update dependency eslint to v8.3.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-21 07:02:48 +00:00
renovate 709ebdf567 chore(deps): update dependency netlify-cli to v7.0.2
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-19 18:02:47 +00:00
renovate d41ee3dc8c chore(deps): update dependency netlify-cli to v7.0.1
continuous-integration/drone/push Build is passing Details
2021-11-19 15:32:41 +00:00
renovate e342f6e3ed fix(deps): update dependency marked to v4.0.4
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-19 15:03:03 +00:00
renovate 8b2450d6f9 chore(deps): update dependency postcss-preset-env to v7.0.1
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-19 12:02:37 +00:00
renovate 943eab5e7e fix(deps): update dependency date-fns to v2.26.0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-19 08:02:43 +00:00
renovate d55328e03b chore(deps): update dependency vite-plugin-pwa to v0.11.6 (#1031)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #1031
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-18 21:54:59 +00:00
renovate 30aa1cd1cf chore(deps): update dependency @types/jest to v27.0.3 (#1030)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #1030
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-18 21:54:33 +00:00
renovate 01f3196938 chore(deps): update dependency netlify-cli to v7 (#1029)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1029
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-18 20:49:36 +00:00
renovate ced8e0fd3c chore(deps): update dependency netlify-cli to v6.15.0 (#1028)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1028
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-18 16:24:38 +00:00
renovate 745b4b56ec chore(deps): update dependency eslint-plugin-vue to v8.1.1 (#1026)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1026
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-18 13:00:13 +00:00
renovate c5b539912d fix(deps): update dependency vue-i18n to v9.2.0-beta.20
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-11-18 09:02:52 +00:00
renovate 233b9693eb chore(deps): update dependency typescript to v4.5.2 (#1024)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1024
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-17 19:15:01 +00:00
dpschen 2656c74f37 feat: add postcss-preset-env (#1022)
continuous-integration/drone/push Build encountered an error Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #1022
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-17 17:58:46 +00:00
renovate 28b571588e fix(deps): update dependency vue-i18n to v9.2.0-beta.19
continuous-integration/drone/push Build is failing Details
2021-11-17 14:10:37 +00:00
renovate ae0ecb9f23 fix(deps): update sentry-javascript monorepo to v6.15.0 (#1015)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1015
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 20:52:33 +00:00
renovate 75af78eecc chore(deps): update workbox monorepo to v6.4.1 (#1012)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #1012
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 20:52:20 +00:00
renovate cf202738be fix(deps): update dependency @vue/compat to v3.2.22 (#1016)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1016
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 20:02:43 +00:00
renovate d0635ae4a1 chore(deps): update dependency esbuild to v0.13.14 (#1014)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1014
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 19:52:04 +00:00
renovate 552751b346 chore(deps): update dependency @vue/eslint-config-typescript to v9.1.0 (#1018)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1018
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 19:51:49 +00:00
renovate e83cf50e51 chore(deps): update typescript-eslint monorepo to v5.4.0 (#1011)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1011
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 07:15:50 +00:00
renovate 810635f5a5 chore(deps): update dependency browserslist to v4.18.1 (#1010)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1010
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 07:15:15 +00:00
renovate 213cbfb440 chore(deps): update dependency netlify-cli to v6.14.25 (#1009)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1009
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-16 07:14:37 +00:00
renovate 11e5ff42a6 chore(deps): update dependency vue-tsc to v0.29.5 (#1007)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1007
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-15 14:50:28 +00:00
renovate e31d388ec1 fix(deps): update dependency vue to v3.2.22 (#1006)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1006
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-15 06:46:34 +00:00
renovate 7b4b97b0d3 chore(deps): pin dependencies (#1003)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1003
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-14 21:45:03 +00:00
konrad 507a73e74c feat: use flexsearch for all local searches (#997)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #997
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-14 20:49:52 +00:00
renovate 7824ba089a chore(deps): update dependency vite-plugin-pwa to v0.11.5 (#1000)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #1000
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-14 16:35:18 +00:00
renovate 060057e268 fix(deps): update dependency vue-advanced-cropper to v2.7.0 (#999)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #999
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-14 13:28:09 +00:00
renovate 4e02f77382 chore(deps): update dependency browserslist to v4.18.0 (#998)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #998
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-14 08:35:57 +00:00
renovate 7fada671fc fix(deps): pin dependency @github/hotkey to 1.6.0 (#995)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #995
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-13 21:22:42 +00:00
konrad feea191ecf feat: add v-shortcut directive for keyboard shortcuts (#942)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #942
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-13 20:28:29 +00:00
renovate b5927be136 chore(deps): pin dependency vite-svg-loader to 3.1.0 (#989)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #989
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-13 15:13:09 +00:00
dpschen 30cc89fe25 feat: add vite-svg-loader and add Logo component (#971)
continuous-integration/drone/push Build is failing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #971
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-13 14:16:14 +00:00
renovate 36f1e846bb chore(deps): update dependency netlify-cli to v6.14.23 (#986)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #986
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-13 13:30:32 +00:00
renovate 1e50aeebd8 fix(deps): update dependency marked to v4.0.3 (#988)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #988
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-13 13:29:39 +00:00
renovate 05e624ce39 chore(deps): update dependency rollup to v2.60.0 (#983)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #983
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-12 13:29:43 +00:00
renovate 4e6b9f4cbd chore(deps): update dependency vue-tsc to v0.29.4 (#981)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #981
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-12 06:58:13 +00:00
renovate 17bc35864b fix(deps): update sentry-javascript monorepo to v6.14.3 (#982)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #982
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-12 06:57:39 +00:00
renovate 52c115cea8 chore(deps): update dependency netlify-cli to v6.14.21 (#980)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #980
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-12 06:55:35 +00:00
renovate df1a7dd19e fix(deps): update sentry-javascript monorepo to v6.14.2 (#979)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #979
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-11 17:05:00 +00:00
renovate 34994e919b fix(deps): update dependency marked to v4.0.1 (#977)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #977
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-11 07:09:27 +00:00
renovate 6d86d4ce59 chore(deps): update dependency cypress to v9 (#975)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #975
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-10 22:27:02 +00:00
renovate 15da2657d3 chore(deps): pin dependencies (#974)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #974
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-10 22:25:45 +00:00
konrad e49fd16a3a feat: add preview deploys with netlify (#972)
continuous-integration/drone/push Build is failing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #972
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-11-10 21:25:50 +00:00
renovate 46e3a9516a fix(deps): update dependency vue-i18n to v9.2.0-beta.18 (#969)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #969
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-10 12:43:57 +00:00
renovate 8674c5da47 chore(deps): update dependency vue-tsc to v0.29.3 (#968)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #968
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-10 12:43:31 +00:00
renovate f299241a6c chore(deps): update dependency esbuild to v0.13.13 (#964)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #964
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-09 22:50:54 +00:00
renovate 038fb55801 chore(deps): update dependency vite to v2.6.14 (#967)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #967
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-09 22:25:12 +00:00
renovate 70a50ca1c2 chore(deps): update typescript-eslint monorepo to v5.3.1 (#962)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #962
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-09 07:16:11 +00:00
renovate 99d38e1f8e chore(deps): update dependency vue-tsc to v0.29.2 (#963)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #963
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-09 07:15:08 +00:00
renovate 00be1d4095 chore(deps): update dependency vue-tsc to v0.29.0 (#960)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #960
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-07 16:40:32 +00:00
renovate 04a971e767 chore(deps): update dependency eslint to v8.2.0 (#959)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #959
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-06 00:38:09 +00:00
renovate 917006b69f fix(deps): update sentry-javascript monorepo to v6.14.1 (#958)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #958
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-05 16:32:20 +00:00
renovate a87d5836c1 chore(deps): pin dependency vue-tsc to 0.28.10 (#955)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #955
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-04 22:32:43 +00:00
dpschen e23f3c2570 feat: add vue-tsc (#949)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #949
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-11-04 21:28:10 +00:00
renovate 3be15b0a5f chore(deps): update dependency eslint-plugin-vue to v8 (#913)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #913
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-03 17:11:31 +00:00
renovate 6e44f9eaba chore(deps): update dependency @vue/eslint-config-typescript to v9.0.1 (#941)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #941
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-03 16:12:35 +00:00
renovate 525ff7903c fix(deps): update sentry-javascript monorepo to v6.14.0 (#940)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #940
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-03 12:58:17 +00:00
renovate 4e6f961a24 fix(deps): update dependency vue-i18n to v9.2.0-beta.17 (#937)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #937
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-02 18:07:32 +00:00
renovate f72f0424cc chore(deps): update dependency browserslist to v4.17.6 (#936)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #936
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-02 18:07:16 +00:00
renovate 061e2b42c9 fix(deps): update dependency marked to v4 (#935)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #935
Reviewed-by: konrad <k@knt.li>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-02 17:39:56 +00:00
renovate b2aa2df59d fix(deps): update vue monorepo to v3.2.21 (#934)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #934
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-02 12:52:39 +00:00
renovate ead145b9ce chore(deps): update typescript-eslint monorepo to v5.3.0 (#932)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #932
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-01 18:16:01 +00:00
renovate b06b419817 chore(deps): update dependency rollup to v2.59.0 (#928)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #928
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-01 08:43:27 +00:00
renovate 8bbdbe62a4 chore(deps): update dependency esbuild to v0.13.12 (#917)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #917
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-31 09:15:56 +00:00
renovate 2c47102c56 chore(deps): update dependency esbuild to v0.13.11 (#916)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #916
Reviewed-by: konrad <k@knt.li>
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-30 08:58:58 +00:00
renovate 6d61a4b24d fix(deps): update dependency vue-i18n to v9.2.0-beta.16 (#915)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #915
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-29 17:33:39 +00:00
renovate 65ea02d861 chore(deps): update dependency @vue/eslint-config-typescript to v9 (#914)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #914
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-29 09:58:51 +00:00
renovate e9d58d12f4 chore(deps): update dependency autoprefixer to v10.4.0 (#911)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #911
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-28 11:57:45 +00:00
renovate 9b84d57f0e chore(deps): update dependency esbuild to v0.13.10 (#910)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #910
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-28 07:02:22 +00:00
renovate 3c11660cf7 chore(deps): update dependency vite to v2.6.13 (#909)
continuous-integration/drone/push Build was killed Details
Reviewed-on: #909
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-27 12:15:33 +00:00
renovate 776bd2e86f chore(deps): update dependency @vitejs/plugin-vue to v1.9.4 (#908)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #908
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-27 06:10:55 +00:00
renovate 7298ecb7b7 chore(deps): update dependency sass to v1.43.4 (#907)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #907
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-27 05:44:33 +00:00
renovate 1e4dd415cf fix(deps): pin dependencies (#905)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #905
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-26 19:15:10 +00:00
konrad 1774fdc604 feat: add sentry (#879)
continuous-integration/drone/push Build is passing Details
Co-authored-by: kolaente <k@knt.li>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: #879
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-10-26 18:53:17 +00:00
renovate a0903dd7be chore(deps): update dependency vite to v2.6.12 (#904)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #904
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-26 17:56:16 +00:00
renovate 20d57c2446 chore(deps): update dependency cypress to v8.7.0 (#900)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #900
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-26 06:01:26 +00:00
renovate 54148683f8
chore(deps): update typescript-eslint monorepo to v5.2.0 (#898)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #898
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate fd3f058d22
chore(deps): update dependency axios to v0.24.0 (#897)
Reviewed-on: #897
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate fac41b63b9
chore(deps): update dependency rollup to v2.58.3 (#895)
Reviewed-on: #895
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate 283b7c7082
chore(deps): update dependency vite to v2.6.11 (#896)
Reviewed-on: #896
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate 5058046018
fix(deps): update dependency vue-i18n to v9.2.0-beta.15 (#894)
Reviewed-on: #894
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate 8e7e86808e
fix(deps): update dependency marked to v3.0.8 (#893)
Reviewed-on: #893
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate dd26d0de0f
chore(deps): update dependency esbuild to v0.13.9 (#892)
Reviewed-on: #892
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 21:02:21 +02:00
renovate 8d90d61fd2
chore(deps): update dependency browserslist to v4.17.5 (#891)
Reviewed-on: #891
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 16:40:48 +02:00
renovate 3293e9892c
chore(deps): update dependency eslint to v8.1.0 (#890)
Reviewed-on: #890
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 16:40:47 +02:00
renovate 02b30832b3
chore(deps): update dependency sass to v1.43.3 (#888)
Reviewed-on: #888
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-25 16:40:46 +02:00
renovate de33dc6c89 fix(deps): update dependency vue-i18n to v9.2.0-beta.14 (#885)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #885
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-21 17:11:14 +00:00
renovate bbb3c81f68 chore(deps): update dependency postcss to v8.3.11 (#887)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #887
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-21 17:10:49 +00:00
renovate cb95a569d3 chore(deps): update dependency postcss to v8.3.10 (#882)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #882
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-20 18:56:53 +00:00
renovate 3918da3bc7 chore(deps): update dependency eslint-plugin-vue to v7.20.0 (#881)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #881
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-20 07:17:43 +00:00
renovate a6bb2daf81 chore(deps): update dependency @fortawesome/vue-fontawesome to v3.0.0-5 (#875)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #875
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-19 16:31:20 +00:00
renovate 6f11102153 fix(deps): update dependency vue-i18n to v9.2.0-beta.13 (#871)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #871
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-19 15:55:22 +00:00
renovate 53ff2e0209 chore(deps): update dependency vite to v2.6.10 (#876)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #876
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-19 15:54:48 +00:00
renovate 59add72cd6 chore(deps): update typescript-eslint monorepo to v5.1.0 (#877)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #877
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-19 15:54:35 +00:00
renovate 0c72d836fe chore(deps): update dependency jest to v27.3.1 (#878)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #878
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-19 15:53:03 +00:00
renovate b5b5facde6 chore(deps): update dependency vite to v2.6.9 (#873)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #873
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-18 09:48:03 +00:00
renovate 5bcd51cc5f chore(deps): pin dependencies (#870)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #870
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-18 06:12:47 +00:00
renovate cb00c869e1 chore(deps): update dependency jest to v27.3.0 (#866)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #866
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-18 05:51:52 +00:00
renovate cb81497e8d fix(deps): update dependency highlight.js to v11.3.1 (#869)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #869
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-18 05:51:25 +00:00
renovate b24145c47c fix(deps): update dependency vuedraggable to v4.1.0 (#872)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #872
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-18 05:50:58 +00:00
kolaente 49cd66581d
Merge branch 'main' into vue3
continuous-integration/drone/pr Build is failing Details
# Conflicts:
#	package.json
#	yarn.lock
2021-10-17 17:32:50 +02:00
renovate a3657abaf3 fix(deps): update dependency highlight.js to v11.3.0 (#863)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #863
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-17 14:11:49 +00:00
Dominik Pschenitschni 2ac3d29c13
Merge branch 'vue3' into feature/vue3-async-await
continuous-integration/drone/pr Build is failing Details
# Conflicts:
#	src/i18n/index.js
#	src/store/modules/labels.js
#	src/store/modules/tasks.js
#	src/views/list/views/Kanban.vue
#	src/views/tasks/ShowTasks.vue
#	src/views/tasks/TaskDetailView.vue
2021-10-17 16:06:58 +02:00
Dominik Pschenitschni c1078255fc
fix: use lodash.debounce for searching unsplash background
continuous-integration/drone/pr Build is failing Details
2021-10-17 14:47:30 +02:00
kolaente 1d2abf56f9
Merge branch 'main' into vue3
# Conflicts:
#	src/components/tasks/mixins/createTask.js
2021-10-17 13:37:20 +02:00
renovate a85e27b497 chore(deps): update dependency esbuild to v0.13.8 (#861)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #861
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-17 10:18:27 +00:00
Dominik Pschenitschni 6f51921588
chore: upgrade vue3 packages
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
2021-10-16 18:58:48 +02:00
Dominik Pschenitschni b79d238bdc
Merge branch 'main' into vue3
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
# Conflicts:
#	package.json
#	src/components/tasks/mixins/createTask.js
#	yarn.lock
2021-10-16 18:17:14 +02:00
renovate 515300d43a chore(deps): update dependency ts-jest to v27.0.7 (#857)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #857
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 12:40:22 +00:00
renovate f6d46ce394 chore(deps): update dependency axios to v0.23.0 (#848)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #848
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 10:38:57 +00:00
renovate 526d2c0cfc fix(deps): update dependency marked to v3.0.7 (#846)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #846
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 10:38:22 +00:00
renovate 3ee8231b9e chore(deps): update dependency jest to v27.2.5 (#842)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #842
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 10:38:12 +00:00
renovate fc320d0067 chore(deps): update dependency esbuild to v0.13.7 (#841)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #841
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 10:38:02 +00:00
renovate b988e3c0ec chore(deps): update dependency typescript to v4.4.4 (#844)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #844
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 10:33:44 +00:00
renovate accd3ef392 chore(deps): update dependency browserslist to v4.17.4 (#840)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #840
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 09:48:35 +00:00
renovate f36e1d78b2 chore(deps): update dependency vite to v2.6.7 (#845)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #845
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 09:48:10 +00:00
renovate a105883ef0 chore(deps): update dependency @vue/eslint-config-typescript to v8 (#854)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #854
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 09:47:37 +00:00
renovate 3271144406 chore(deps): update dependency eslint to v8 (#855)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #855
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 09:47:13 +00:00
renovate 1965535605 chore(deps): update dependency ts-jest to v27.0.6 (#843)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #843
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 08:21:36 +00:00
renovate b8a2160a93 chore(deps): update dependency autoprefixer to v10.3.7 (#839)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #839
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 08:21:04 +00:00
renovate 2b12b0fafd fix(deps): update dependency vue-i18n to v8.26.5 (#847)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #847
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 07:30:33 +00:00
renovate ccce0c6ac4 chore(deps): update dependency cypress to v8.6.0 (#849)
continuous-integration/drone/push Build is failing Details
Reviewed-on: #849
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-10-16 07:29:42 +00:00