renovate
dd123dadd2
chore(deps): update dependency netlify-cli to v8.1.9 ( #1221 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [netlify-cli](https://github.com/netlify/cli ) | devDependencies | patch | [`8.1.8` -> `8.1.9`](https://renovatebot.com/diffs/npm/netlify-cli/8.1.8/8.1.9 ) |
---
### Release Notes
<details>
<summary>netlify/cli</summary>
### [`v8.1.9`](https://github.com/netlify/cli/blob/master/CHANGELOG.md#​819-httpswwwgithubcomnetlifyclicomparev818v819-2021-12-20 )
[Compare Source](https://github.com/netlify/cli/compare/v8.1.8...v8.1.9 )
</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: https://kolaente.dev/vikunja/frontend/pulls/1221
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-20 14:46:13 +00:00
renovate
b088a5e864
chore(deps): update dependency vite to v2.7.4
2021-12-20 12:49:37 +00:00
renovate
63008e59a3
fix(deps): update dependency codemirror to v5.65.0
2021-12-20 11:02:53 +00:00
renovate
3a1da44c94
chore(deps): update dependency eslint to v8.5.0 ( #1213 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
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#​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 ([#​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 `/* @​__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 ([#​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 [@​magic-akari](https://github.com/magic-akari ).
- Avoid warning about `import.meta` if it's replaced ([#​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: https://kolaente.dev/vikunja/frontend/pulls/1218
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-20 07:14:24 +00:00
Dominik Pschenitschni
b3b7669983
fix: llama color ( #1212 )
...
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1212
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-12-19 20:08:59 +00:00
Mike
a4c85fed55
feat(docs): add details of using NGINX Proxy Manager to the Reverse Proxy docs ( #13 )
2021-12-19 19:54:18 +01:00
renovate
d114c673d8
fix(deps): update dependency @vueuse/core to v7.4.0
2021-12-19 18:02:38 +00:00
renovate
9d8f9d9de9
fix(deps): update module github.com/magefile/mage to v1.12.1 ( #1077 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1077
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:30:08 +00:00
renovate
a6771b8d37
chore(deps): update dependency slugify to v1.6.4 ( #1209 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1217
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-19 17:27:31 +00:00
Dominik Pschenitschni
f944c35e99
chore: simplify focus directive
2021-12-17 16:34:27 +00:00
kolaente
36fb250d1f
chore: directly use redirectToProvider function
2021-12-17 15:41:11 +00:00
kolaente
b7aa7891e9
feat: redirect to calculated url everywhere
2021-12-17 15:41:11 +00:00
kolaente
ccaed029f2
feat: build openid redirect url dynamically
2021-12-17 15:41:11 +00:00
renovate
770578240a
chore(deps): update dependency ts-jest to v27.1.2
2021-12-17 14:27:34 +00:00
renovate
791678720b
chore(deps): update dependency netlify-cli to v8.1.8
2021-12-17 11:02:46 +00:00
drone
21e44e15bd
[skip ci] Updated translations via Crowdin
2021-12-17 07:11:12 +00:00
renovate
c2e8a8ad98
fix(deps): update module github.com/magefile/mage to v1.12.0 ( #1076 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1076
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-17 06:52:28 +00:00
renovate
b3a8f17404
chore(deps): update dependency electron to v16.0.5 ( #73 )
...
Reviewed-on: https://kolaente.dev/vikunja/desktop/pulls/73
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-17 06:51:01 +00:00
renovate
9a612849a3
chore(deps): update dependency express to v4.17.2 ( #1211 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1207
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 15:01:35 +00:00
renovate
5e4d632e79
fix(deps): update golang.org/x/sys commit hash to 1d35b9e ( #1075 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1075
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 12:30:20 +00:00
renovate
46afeb159a
chore(deps): update dependency caniuse-lite to v1.0.30001287 ( #1205 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1206
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-16 12:28:24 +00:00
renovate
402c34fb12
fix(deps): update golang.org/x/sys commit hash to 4abf325 ( #1074 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1074
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 22:30:24 +00:00
renovate
1a55d04c97
chore(deps): update dependency vite-plugin-pwa to v0.11.12 ( #1204 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1204
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 22:30:04 +00:00
renovate
94fff0ac88
fix(deps): update golang.org/x/crypto commit hash to e495a2d ( #1073 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1073
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 16:14:35 +00:00
renovate
62c3dec6e3
fix(deps): update module github.com/spf13/viper to v1.10.1 ( #1072 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1072
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 14:47:10 +00:00
renovate
8ccfe716f6
chore(deps): update dependency netlify-cli to v8.1.4 ( #1199 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1199
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 12:13:05 +00:00
renovate
c5d831ec7c
fix(deps): update golang.org/x/sys commit hash to 4825e8c ( #1071 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1071
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-15 07:46:53 +00:00
renovate
351d72f02d
fix(deps): update module github.com/spf13/cobra to v1.3.0 ( #1070 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1070
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 20:39:53 +00:00
renovate
4752888c06
fix(deps): update golang.org/x/sys commit hash to 3b038e5 ( #1068 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1068
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:33:50 +00:00
renovate
e3243f012d
fix(deps): update dependency @github/hotkey to v1.6.1 ( #1197 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1200
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 19:30:52 +00:00
renovate
d31c0dfeac
fix(deps): update golang.org/x/sys commit hash to 03aa0b5 ( #1067 )
...
Reviewed-on: https://kolaente.dev/vikunja/api/pulls/1067
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-14 08:31:37 +00:00
renovate
ac61e8d449
chore(deps): update typescript-eslint monorepo to v5.7.0 ( #1192 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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
konrad
543dae2f30
fix: saving default list ( #1143 )
...
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1143
Reviewed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-authored-by: konrad <k@knt.li>
Co-committed-by: konrad <k@knt.li>
2021-12-13 22:20:45 +00:00
renovate
40479d0c6e
chore(deps): update dependency vite to v2.7.2 ( #1191 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/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 )
...
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1187
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-12 18:47:58 +00:00
drone
9ecd18a5ee
[skip ci] Updated translations via Crowdin
2021-12-12 18:34:43 +00:00