Commit graph

5374 commits

Author SHA1 Message Date
Robert Kaussow 6de5922408
Fix skipped pipelines model (#2923)
Fixes: https://github.com/woodpecker-ci/woodpecker/issues/2901

---------

Co-authored-by: Lauris BH <lauris@nix.lv>
2023-12-12 22:30:52 +02:00
gapanyc 547f5dea35
Init CI_COMMIT_TAG if commit ref is a tag (#2934)
When triggering a deployment event on an existing pipeline, there is no
way to get the tag used to trigger the parent pipeline, even if this
parent was a tag event.

In our company CI/CD current setup with drone, we use the tag event to
trigger a kaniko image build step, using the git tag as an image tag,
and the deployment/promotion step to effectively deploy this image using
the tag reference in our cluster. This is the only point blocking us to
completely switch to woodpecker and get rid of drone...

What's done:
- changed the metadata environ() method to populate CI_COMMIT_TAG env
var if commit ref starts with /refs/tags (like it's done in drone),
independently of event type EventTag.

Please let me know if I'm wrong, I will happily contribute in this nice
project.

---------

Co-authored-by: Christian Gapany <christian.gapany@netplus.pro>
Co-authored-by: Lauris BH <lauris@nix.lv>
2023-12-12 18:05:06 +02:00
Nikolai Rodionov b3541e314e
fix: Add backend_options to service linter entry (#2930)
I've tried setting resources for a service and have seen the linter
warning that is not supported, though the the pipeline was successful
and resources were actually set on the pod. So I assume it shouldn't be
a linter issue.

I"m also not sure if my change is correct, I only hope it is

## Some Context

A pipeline example (I've removed steps that are not related directly:
```yaml
---
steps:
  test:
    name: Test charts
    image: quay.io/helmpack/chart-testing
    environment:
      - DOCKER_HOST=tcp://docker:2375
    commands:
      - export PATH=$PWD/.bin:$PATH
      - apk update && apk add docker
      - kind create cluster --config kind.yaml
      - sed -i -E -e 's/localhost|0\.0\.0\.0/docker/g' ~/.kube/config
      - git fetch origin
      - |
        if [ -e .changed ]; then
          ct install --target-branch main --chart-dirs .
          ct install --target-branch main --chart-dirs . --upgrade
        fi

services:
  docker:
    image: docker:dind
    commands: dockerd -H tcp://0.0.0.0:2375 --tls=false
    privileged: true
    ports:
      - 2375
    backend_options:
      kubernetes:
        resources:
          requests:
            memory: 400Mi
            cpu: 100m
          limits:
            memory: 400Mi
            cpu: 100m
```

Pod description:
```
Containers:
  wp-01hhczdknafj81jv80gzjbgt93-0-services-0:
    Limits:
      cpu:     100m
      memory:  400Mi
    Requests:
      cpu:     100m
      memory:  400Mi
```

Warning in the Woodpecker UI:

```
[linter]woodpecker: services.dockerAdditional property backend_options is not allowed
```
2023-12-11 19:22:55 +01:00
Mikhail Putilov 91ea631db1
Update 20-kubernetes.md (#2927)
Fix up 404 URL

---------

Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
2023-12-11 14:03:05 +01:00
renovate[bot] fb7619a5c8
Update docker.io/techknowlogick/xgo Docker tag to go-1.21.5 (#2926)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/techknowlogick/xgo | patch | `go-1.21.4` -> `go-1.21.5` |

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2023-12-11 08:26:21 +01:00
renovate[bot] 3da1658b35
Update docker.io/golang Docker tag to v1.21.5 (#2925)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/golang | patch | `1.21.4` -> `1.21.5` |

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-11 07:54:19 +01:00
qwerty287 a796885ad4
Fix flags added multiple times (#2914)
Closes https://github.com/woodpecker-ci/woodpecker/issues/2912

Global flags should not be added to the commands/subscommands, only
globally.
2023-12-08 10:36:53 +02:00
runephilosof-karnovgroup adb2c82790
Update go module path for major version 2 (#2905)
https://go.dev/doc/modules/release-workflow#breaking

Fixes https://github.com/woodpecker-ci/woodpecker/issues/2913 fixes
#2654
```
runephilosof@fedora:~/code/platform-woodpecker/woodpecker-repo-configurator (master)$ go get go.woodpecker-ci.org/woodpecker@v2.0.0
go: go.woodpecker-ci.org/woodpecker@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("go.woodpecker-ci.org/woodpecker/v2")
```

---------

Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2023-12-08 08:15:08 +01:00
qwerty287 87fcad4303
Add release documentation to CONTRIBUTING (#2917)
and update typos and grammar mistakes

Closes https://github.com/woodpecker-ci/woodpecker/discussions/2142
Closes https://github.com/woodpecker-ci/woodpecker/discussions/2383

---------

Co-authored-by: Robert Kaussow <xoxys@rknet.org>
2023-12-07 18:20:22 +01:00
Lauris BH 511cfec66a
Fix schema validation with array syntax for clone and services (#2920)
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
Co-authored-by: Anbraten <anton@ju60.de>
2023-12-07 16:56:13 +01:00
qwerty287 f0dc5ee182
Fix prometheus docs (#2919) 2023-12-07 14:39:06 +01:00
renovate[bot] 50cc89a852
Lock file maintenance (#2910)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - "before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-06 15:05:49 +01:00
renovate[bot] e1e3adb0f2
Update web npm deps non-major (#2909)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@iconify/json](https://iconify.design/icon-sets/)
([source](https://togithub.com/iconify/icon-sets)) | [`2.2.143` ->
`2.2.153`](https://renovatebot.com/diffs/npm/@iconify%2fjson/2.2.143/2.2.153)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify%2fjson/2.2.153?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify%2fjson/2.2.153?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify%2fjson/2.2.143/2.2.153?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify%2fjson/2.2.143/2.2.153?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/lodash](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash))
| [`4.14.201` ->
`4.14.202`](https://renovatebot.com/diffs/npm/@types%2flodash/4.14.201/4.14.202)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`20.9.2` ->
`20.10.3`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.2/20.10.3)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.9.2/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.9.2/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin))
| [`6.11.0` ->
`6.13.2`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
| [`6.11.0` ->
`6.13.2`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.11.0/6.13.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.11.0/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.11.0/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@vitejs/plugin-vue](https://togithub.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme)
([source](https://togithub.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue))
| [`4.5.0` ->
`4.5.1`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.5.0/4.5.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitejs%2fplugin-vue/4.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitejs%2fplugin-vue/4.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitejs%2fplugin-vue/4.5.0/4.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitejs%2fplugin-vue/4.5.0/4.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@vue/compiler-sfc](https://togithub.com/vuejs/core/tree/main/packages/compiler-sfc#readme)
([source](https://togithub.com/vuejs/core/tree/HEAD/packages/compiler-sfc))
| [`3.3.8` ->
`3.3.10`](https://renovatebot.com/diffs/npm/@vue%2fcompiler-sfc/3.3.8/3.3.10)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vue%2fcompiler-sfc/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vue%2fcompiler-sfc/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vue%2fcompiler-sfc/3.3.8/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vue%2fcompiler-sfc/3.3.8/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@vueuse/core](https://togithub.com/vueuse/vueuse)
([source](https://togithub.com/vueuse/vueuse/tree/HEAD/packages/core)) |
[`10.6.1` ->
`10.7.0`](https://renovatebot.com/diffs/npm/@vueuse%2fcore/10.6.1/10.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vueuse%2fcore/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vueuse%2fcore/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vueuse%2fcore/10.6.1/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vueuse%2fcore/10.6.1/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.54.0` ->
`8.55.0`](https://renovatebot.com/diffs/npm/eslint/8.54.0/8.55.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/8.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint/8.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint/8.54.0/8.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/8.54.0/8.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[eslint-config-prettier](https://togithub.com/prettier/eslint-config-prettier)
| [`9.0.0` ->
`9.1.0`](https://renovatebot.com/diffs/npm/eslint-config-prettier/9.0.0/9.1.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-prettier/9.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-prettier/9.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-prettier/9.0.0/9.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-prettier/9.0.0/9.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [eslint-plugin-vue](https://eslint.vuejs.org)
([source](https://togithub.com/vuejs/eslint-plugin-vue)) | [`9.18.1` ->
`9.19.2`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.18.1/9.19.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-vue/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-vue/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-vue/9.18.1/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-vue/9.18.1/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [node-emoji](https://togithub.com/omnidan/node-emoji) | [`2.1.1` ->
`2.1.3`](https://renovatebot.com/diffs/npm/node-emoji/2.1.1/2.1.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [unplugin-icons](https://togithub.com/unplugin/unplugin-icons) |
[`0.18.0` ->
`0.18.1`](https://renovatebot.com/diffs/npm/unplugin-icons/0.18.0/0.18.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/unplugin-icons/0.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/unplugin-icons/0.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/unplugin-icons/0.18.0/0.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/unplugin-icons/0.18.0/0.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[unplugin-vue-components](https://togithub.com/unplugin/unplugin-vue-components)
| [`^0.25.0` ->
`^0.26.0`](https://renovatebot.com/diffs/npm/unplugin-vue-components/0.25.2/0.26.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/unplugin-vue-components/0.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/unplugin-vue-components/0.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/unplugin-vue-components/0.25.2/0.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/unplugin-vue-components/0.25.2/0.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vite-plugin-windicss](https://togithub.com/antfu/vite-plugin-windicss)
| [`1.9.1` ->
`1.9.2`](https://renovatebot.com/diffs/npm/vite-plugin-windicss/1.9.1/1.9.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vue](https://togithub.com/vuejs/core/tree/main/packages/vue#readme)
([source](https://togithub.com/vuejs/core)) | [`3.3.8` ->
`3.3.10`](https://renovatebot.com/diffs/npm/vue/3.3.8/3.3.10) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue/3.3.8/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue/3.3.8/3.3.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vue-i18n](https://togithub.com/intlify/vue-i18n-next/tree/master/packages/vue-i18n#readme)
([source](https://togithub.com/intlify/vue-i18n-next/tree/HEAD/packages/vue-i18n))
| [`9.7.0` ->
`9.8.0`](https://renovatebot.com/diffs/npm/vue-i18n/9.7.0/9.8.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vue-tsc](https://togithub.com/vuejs/language-tools)
([source](https://togithub.com/vuejs/language-tools/tree/HEAD/packages/tsc))
| [`1.8.22` ->
`1.8.25`](https://renovatebot.com/diffs/npm/vue-tsc/1.8.22/1.8.25) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue-tsc/1.8.25?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-tsc/1.8.25?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-tsc/1.8.22/1.8.25?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-tsc/1.8.22/1.8.25?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>iconify/icon-sets (@&#8203;iconify/json)</summary>

###
[`v2.2.153`](https://togithub.com/iconify/icon-sets/compare/2.2.152...2.2.153)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.152...2.2.153)

###
[`v2.2.152`](https://togithub.com/iconify/icon-sets/compare/2.2.151...2.2.152)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.151...2.2.152)

###
[`v2.2.151`](https://togithub.com/iconify/icon-sets/compare/2.2.150...2.2.151)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.150...2.2.151)

###
[`v2.2.150`](https://togithub.com/iconify/icon-sets/compare/2.2.149...2.2.150)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.149...2.2.150)

###
[`v2.2.149`](https://togithub.com/iconify/icon-sets/compare/2.2.148...2.2.149)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.148...2.2.149)

###
[`v2.2.148`](https://togithub.com/iconify/icon-sets/compare/2.2.147...2.2.148)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.147...2.2.148)

###
[`v2.2.147`](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

###
[`v2.2.146`](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

###
[`v2.2.145`](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

###
[`v2.2.144`](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6132-2023-12-04)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6131-2023-11-28)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

##### Bug Fixes

- **eslint-plugin:** \[class-methods-use-this] detect a problematic case
for private/protected members if `ignoreClassesThatImplementAnInterface`
is set
([#&#8203;7705](https://togithub.com/typescript-eslint/typescript-eslint/issues/7705))
([155aa1f](155aa1f533))
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive with
computed member access and branded key type
([#&#8203;7706](https://togithub.com/typescript-eslint/typescript-eslint/issues/7706))
([f151b26](f151b26d21))
- **eslint-plugin:** \[switch-exhaustiveness-check] enum members with
new line or single quotes are not being fixed correctly
([#&#8203;7806](https://togithub.com/typescript-eslint/typescript-eslint/issues/7806))
([a034d0a](a034d0a385)),
closes
[#&#8203;7768](https://togithub.com/typescript-eslint/typescript-eslint/issues/7768)

##### Features

- \[member-ordering] add accessor support for member-ordering
([#&#8203;7927](https://togithub.com/typescript-eslint/typescript-eslint/issues/7927))
([3c8312d](3c8312d1e1))
- **eslint-plugin:** \[switch-exhaustiveness-check] add
requireDefaultForNonUnion option
([#&#8203;7880](https://togithub.com/typescript-eslint/typescript-eslint/issues/7880))
([4cfcd45](4cfcd451ef))

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6132-2023-12-04)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6131-2023-11-28)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>vuejs/core (@&#8203;vue/compiler-sfc)</summary>

###
[`v3.3.10`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3310-2023-12-04)

[Compare
Source](https://togithub.com/vuejs/core/compare/v3.3.9...v3.3.10)

##### Bug Fixes

- **app:** prevent template from being cached between apps with
different options
([#&#8203;9724](https://togithub.com/vuejs/core/issues/9724))
([ec71585](ec715854ca)),
closes [#&#8203;9618](https://togithub.com/vuejs/core/issues/9618)
- **compiler-sfc:** avoid passing forEach index to genMap
([f12db7f](f12db7fb56))
- **compiler-sfc:** deindent pug/jade templates
([6345197](634519720a)),
closes [#&#8203;3231](https://togithub.com/vuejs/core/issues/3231)
[#&#8203;3842](https://togithub.com/vuejs/core/issues/3842)
[#&#8203;7723](https://togithub.com/vuejs/core/issues/7723)
- **compiler-sfc:** fix :where and :is selector in scoped mode with
multiple selectors
([#&#8203;9735](https://togithub.com/vuejs/core/issues/9735))
([c3e2c55](c3e2c556b5)),
closes [#&#8203;9707](https://togithub.com/vuejs/core/issues/9707)
- **compiler-sfc:** generate more treeshaking friendly code
([#&#8203;9507](https://togithub.com/vuejs/core/issues/9507))
([8d74ca0](8d74ca0e6f)),
closes [#&#8203;9500](https://togithub.com/vuejs/core/issues/9500)
- **compiler-sfc:** support inferring generic types
([#&#8203;8511](https://togithub.com/vuejs/core/issues/8511))
([eb5e307](eb5e307c0b)),
closes [#&#8203;8482](https://togithub.com/vuejs/core/issues/8482)
- **compiler-sfc:** support resolving components from props
([#&#8203;8785](https://togithub.com/vuejs/core/issues/8785))
([7cbcee3](7cbcee3d83))
- **compiler-sfc:** throw error when failing to load TS during type
resolution ([#&#8203;8883](https://togithub.com/vuejs/core/issues/8883))
([4936d2e](4936d2e11a))
- **cssVars:** cssVar names should be double-escaped when generating
code for ssr
([#&#8203;8824](https://togithub.com/vuejs/core/issues/8824))
([5199a12](5199a12f88)),
closes [#&#8203;7823](https://togithub.com/vuejs/core/issues/7823)
- **deps:** update compiler to ^7.23.4
([#&#8203;9681](https://togithub.com/vuejs/core/issues/9681))
([31f6ebc](31f6ebc4df))
- **runtime-core:** Suspense get anchor properly in Transition
([#&#8203;9309](https://togithub.com/vuejs/core/issues/9309))
([65f3fe2](65f3fe2731)),
closes [#&#8203;8105](https://togithub.com/vuejs/core/issues/8105)
- **runtime-dom:** set width/height with units as attribute
([#&#8203;8781](https://togithub.com/vuejs/core/issues/8781))
([bfc1838](bfc1838f31))
- **ssr:** avoid computed being accidentally cached before server render
([#&#8203;9688](https://togithub.com/vuejs/core/issues/9688))
([30d5d93](30d5d93a92)),
closes [#&#8203;5300](https://togithub.com/vuejs/core/issues/5300)
- **types:** expose emits as props in functional components
([#&#8203;9234](https://togithub.com/vuejs/core/issues/9234))
([887e54c](887e54c347))
- **types:** fix reactive collection types
([#&#8203;8960](https://togithub.com/vuejs/core/issues/8960))
([ad27473](ad27473701)),
closes [#&#8203;8904](https://togithub.com/vuejs/core/issues/8904)
- **types:** improve return type withKeys and withModifiers
([#&#8203;9734](https://togithub.com/vuejs/core/issues/9734))
([43c3cfd](43c3cfdec5))

##### Performance Improvements

- optimize on\* prop check
([38aaa8c](38aaa8c886))
- **runtime-dom:** cache modifier wrapper functions
([da4a4fb](da4a4fb5e8)),
closes [#&#8203;8882](https://togithub.com/vuejs/core/issues/8882)
- **v-on:** constant handlers with modifiers should not be treated as
dynamic
([4d94ebf](4d94ebfe75))

###
[`v3.3.9`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#339-2023-11-25)

[Compare
Source](https://togithub.com/vuejs/core/compare/v3.3.8...v3.3.9)

##### Bug Fixes

- **compiler-core:** avoid rewriting scope variables in inline for loops
([#&#8203;7245](https://togithub.com/vuejs/core/issues/7245))
([a2d810e](a2d810eb40)),
closes [#&#8203;7238](https://togithub.com/vuejs/core/issues/7238)
- **compiler-core:** fix `resolveParserPlugins` decorators check
([#&#8203;9566](https://togithub.com/vuejs/core/issues/9566))
([9d0eba9](9d0eba916f)),
closes [#&#8203;9560](https://togithub.com/vuejs/core/issues/9560)
- **compiler-sfc:** consistently escape type-only prop names
([#&#8203;8654](https://togithub.com/vuejs/core/issues/8654))
([3e08d24](3e08d246df)),
closes [#&#8203;8635](https://togithub.com/vuejs/core/issues/8635)
[#&#8203;8910](https://togithub.com/vuejs/core/issues/8910)
[vitejs/vite-plugin-vue#184](https://togithub.com/vitejs/vite-plugin-vue/issues/184)
- **compiler-sfc:** malformed filename on windows using
path.posix.join()
([#&#8203;9478](https://togithub.com/vuejs/core/issues/9478))
([f18a174](f18a174979)),
closes [#&#8203;8671](https://togithub.com/vuejs/core/issues/8671)
[#&#8203;9583](https://togithub.com/vuejs/core/issues/9583)
[#&#8203;9446](https://togithub.com/vuejs/core/issues/9446)
[#&#8203;9473](https://togithub.com/vuejs/core/issues/9473)
- **compiler-sfc:** support `:is` and `:where` selector in scoped css
rewrite ([#&#8203;8929](https://togithub.com/vuejs/core/issues/8929))
([3227e50](3227e50b32))
- **compiler-sfc:** support resolve extends interface for defineEmits
([#&#8203;8470](https://togithub.com/vuejs/core/issues/8470))
([9e1b74b](9e1b74bcd5)),
closes [#&#8203;8465](https://togithub.com/vuejs/core/issues/8465)
- **hmr/transition:** fix kept-alive component inside transition
disappearing after hmr
([#&#8203;7126](https://togithub.com/vuejs/core/issues/7126))
([d11e978](d11e978fc9)),
closes [#&#8203;7121](https://togithub.com/vuejs/core/issues/7121)
- **hydration:** force hydration for v-bind with .prop modifier
([364f319](364f319d21)),
closes [#&#8203;7490](https://togithub.com/vuejs/core/issues/7490)
- **hydration:** properly hydrate indeterminate prop
([34b5a5d](34b5a5da4a)),
closes [#&#8203;7476](https://togithub.com/vuejs/core/issues/7476)
- **reactivity:** clear method on readonly collections should return
undefined ([#&#8203;7316](https://togithub.com/vuejs/core/issues/7316))
([657476d](657476dcdb))
- **reactivity:** onCleanup also needs to be cleaned
([#&#8203;8655](https://togithub.com/vuejs/core/issues/8655))
([73fd810](73fd810eeb)),
closes [#&#8203;5151](https://togithub.com/vuejs/core/issues/5151)
[#&#8203;7695](https://togithub.com/vuejs/core/issues/7695)
- **ssr:** hydration `__vnode` missing for devtools
([#&#8203;9328](https://togithub.com/vuejs/core/issues/9328))
([5156ac5](5156ac5b38))
- **types:** allow falsy value types in `StyleValue`
([#&#8203;7954](https://togithub.com/vuejs/core/issues/7954))
([17aa92b](17aa92b79b)),
closes [#&#8203;7955](https://togithub.com/vuejs/core/issues/7955)
- **types:** defineCustomElement using defineComponent return type with
emits ([#&#8203;7937](https://togithub.com/vuejs/core/issues/7937))
([5d932a8](5d932a8e6d)),
closes [#&#8203;7782](https://togithub.com/vuejs/core/issues/7782)
- **types:** fix `unref` and `toValue` when input union type contains
ComputedRef
([#&#8203;8748](https://togithub.com/vuejs/core/issues/8748))
([176d476](176d476712)),
closes [#&#8203;8747](https://togithub.com/vuejs/core/issues/8747)
[#&#8203;8857](https://togithub.com/vuejs/core/issues/8857)
- **types:** fix instance type when props type is incompatible with
setup returned type
([#&#8203;7338](https://togithub.com/vuejs/core/issues/7338))
([0e1e8f9](0e1e8f919e)),
closes [#&#8203;5885](https://togithub.com/vuejs/core/issues/5885)
- **types:** fix shallowRef return type with union value type
([#&#8203;7853](https://togithub.com/vuejs/core/issues/7853))
([7c44800](7c448000b0)),
closes [#&#8203;7852](https://togithub.com/vuejs/core/issues/7852)
- **types:** more precise types for class bindings
([#&#8203;8012](https://togithub.com/vuejs/core/issues/8012))
([46e3374](46e33744c8))
- **types:** remove optional properties from defineProps return type
([#&#8203;6421](https://togithub.com/vuejs/core/issues/6421))
([94c049d](94c049d930)),
closes [#&#8203;6420](https://togithub.com/vuejs/core/issues/6420)
- **types:** return type of withDefaults should be readonly
([#&#8203;8601](https://togithub.com/vuejs/core/issues/8601))
([f15debc](f15debc01a))
- **types:** revert class type restrictions
([5d077c8](5d077c8754)),
closes [#&#8203;8012](https://togithub.com/vuejs/core/issues/8012)
- **types:** update jsx type definitions
([#&#8203;8607](https://togithub.com/vuejs/core/issues/8607))
([58e2a94](58e2a94871))
- **types:** widen ClassValue type
([2424013](2424013059))
- **v-model:** avoid overwriting number input with same value
([#&#8203;7004](https://togithub.com/vuejs/core/issues/7004))
([40f4b77](40f4b77bb5)),
closes [#&#8203;7003](https://togithub.com/vuejs/core/issues/7003)
- **v-model:** unnecessary value binding error should apply to dynamic
instead of static binding
([2859b65](2859b653c9)),
closes [#&#8203;3596](https://togithub.com/vuejs/core/issues/3596)

</details>

<details>
<summary>vueuse/vueuse (@&#8203;vueuse/core)</summary>

### [`v10.7.0`](https://togithub.com/vueuse/vueuse/releases/tag/v10.7.0)

[Compare
Source](https://togithub.com/vueuse/vueuse/compare/v10.6.1...v10.7.0)

#####    🚀 Features

- Upgrade deps  -  by [@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3614](https://togithub.com/vueuse/vueuse/issues/3614)
[<samp>(fccf2)</samp>](https://togithub.com/vueuse/vueuse/commit/fccf2e4d)
- **isIOS**: Detect new iPad  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3582](https://togithub.com/vueuse/vueuse/issues/3582)
[<samp>(47d2d)</samp>](https://togithub.com/vueuse/vueuse/commit/47d2d2e9)
- **onLongPress**: Add `distanceThreshold` option  -  by
[@&#8203;donaldxdonald](https://togithub.com/donaldxdonald) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3578](https://togithub.com/vueuse/vueuse/issues/3578)
[<samp>(0e04a)</samp>](https://togithub.com/vueuse/vueuse/commit/0e04aa4a)
- **tryOnMounted**: Support target arguement  -  by
[@&#8203;tolking](https://togithub.com/tolking) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3185](https://togithub.com/vueuse/vueuse/issues/3185)
[<samp>(f2aeb)</samp>](https://togithub.com/vueuse/vueuse/commit/f2aeb453)
- **useBreakpoints**: Make parameters reactivity  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) in
[https://github.com/vueuse/vueuse/issues/3592](https://togithub.com/vueuse/vueuse/issues/3592)
[<samp>(dc624)</samp>](https://togithub.com/vueuse/vueuse/commit/dc6245b3)
- **useFileDialog**: Trigger onChange when reset  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) in
[https://github.com/vueuse/vueuse/issues/3548](https://togithub.com/vueuse/vueuse/issues/3548)
[<samp>(7e2da)</samp>](https://togithub.com/vueuse/vueuse/commit/7e2da58a)
- **useInfiniteScroll**: Add the `canLoadMore` option  -  by
[@&#8203;Alfred-Skyblue](https://togithub.com/Alfred-Skyblue) in
[https://github.com/vueuse/vueuse/issues/3558](https://togithub.com/vueuse/vueuse/issues/3558)
[<samp>(e780f)</samp>](https://togithub.com/vueuse/vueuse/commit/e780f5a0)
- **usePointerSwipe**: Add `disableTextSelect` option  -  by
[@&#8203;aminmokhtari94](https://togithub.com/aminmokhtari94) in
[https://github.com/vueuse/vueuse/issues/3604](https://togithub.com/vueuse/vueuse/issues/3604)
[<samp>(fd67b)</samp>](https://togithub.com/vueuse/vueuse/commit/fd67ba3a)
- **useTitle**: Restore title on unmounted  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3570](https://togithub.com/vueuse/vueuse/issues/3570)
[<samp>(0ab76)</samp>](https://togithub.com/vueuse/vueuse/commit/0ab768d0)

#####    🐞 Bug Fixes

- **createEventHook**: Make createEventHook union type can be inferred
correctly  -  by [@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) in
[https://github.com/vueuse/vueuse/issues/3569](https://togithub.com/vueuse/vueuse/issues/3569)
[<samp>(e48ca)</samp>](https://togithub.com/vueuse/vueuse/commit/e48ca071)
- **createEventHook**: `trigger` should not ignore falsy values  -  by
[@&#8203;romansp](https://togithub.com/romansp) and
[@&#8203;Alfred-Skyblue](https://togithub.com/Alfred-Skyblue) in
[https://github.com/vueuse/vueuse/issues/3561](https://togithub.com/vueuse/vueuse/issues/3561)
[<samp>(3733b)</samp>](https://togithub.com/vueuse/vueuse/commit/3733b8ee)
- **syncRef**: SyncRef typing issue for boolean  -  by
[@&#8203;s-montigny-desautels](https://togithub.com/s-montigny-desautels)
in
[https://github.com/vueuse/vueuse/issues/3553](https://togithub.com/vueuse/vueuse/issues/3553)
[<samp>(acb2f)</samp>](https://togithub.com/vueuse/vueuse/commit/acb2fe6b)
- **useAxios**: Reset `isAborted` value on success  -  by
[@&#8203;17359898647](https://togithub.com/17359898647) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3547](https://togithub.com/vueuse/vueuse/issues/3547)
[<samp>(4b159)</samp>](https://togithub.com/vueuse/vueuse/commit/4b159380)
- **useDark**: In Vue 2.6 mode.system is undefined  -  by
[@&#8203;Teaghy](https://togithub.com/Teaghy), **hguan** and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3562](https://togithub.com/vueuse/vueuse/issues/3562)
[<samp>(68688)</samp>](https://togithub.com/vueuse/vueuse/commit/686884a1)
- **useDropZone**: Fix file types filter  -  by
[@&#8203;getname1997](https://togithub.com/getname1997) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3540](https://togithub.com/vueuse/vueuse/issues/3540)
[<samp>(8f42a)</samp>](https://togithub.com/vueuse/vueuse/commit/8f42a92e)
- **useElementVisibility**: Use last intersection entry  -  by
[@&#8203;ziolko-appfire](https://togithub.com/ziolko-appfire), **Mateusz
Zieliński** and [@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3365](https://togithub.com/vueuse/vueuse/issues/3365)
[<samp>(07d39)</samp>](https://togithub.com/vueuse/vueuse/commit/07d39853)
- **useFetch**: Immediately modify the status after the request is
completed  -  by [@&#8203;tolking](https://togithub.com/tolking) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3603](https://togithub.com/vueuse/vueuse/issues/3603)
[<samp>(3456d)</samp>](https://togithub.com/vueuse/vueuse/commit/3456d1b0)
- **useFetch**: Clone 'Response' on reading  -  by
[@&#8203;mymx2](https://togithub.com/mymx2) and
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vueuse/vueuse/issues/3607](https://togithub.com/vueuse/vueuse/issues/3607)
and
[https://github.com/vueuse/vueuse/issues/3608](https://togithub.com/vueuse/vueuse/issues/3608)
[<samp>(8cbfd)</samp>](https://togithub.com/vueuse/vueuse/commit/8cbfd9d3)
- **useMemoize**: Use shallowReactive to wrap Map  -  by
[@&#8203;antfu](https://togithub.com/antfu)
[<samp>(fecbe)</samp>](https://togithub.com/vueuse/vueuse/commit/fecbe00e)
- **useMousePressed**: Change type of element parameter to
MaybeComputedElementRef  -  by
[@&#8203;4350pChris](https://togithub.com/4350pChris) in
[https://github.com/vueuse/vueuse/issues/3566](https://togithub.com/vueuse/vueuse/issues/3566)
[<samp>(17f97)</samp>](https://togithub.com/vueuse/vueuse/commit/17f97f63)
- **useOffsetPagination**: Don't mutate props when it's readonly  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) in
[https://github.com/vueuse/vueuse/issues/3581](https://togithub.com/vueuse/vueuse/issues/3581)
[<samp>(4dace)</samp>](https://togithub.com/vueuse/vueuse/commit/4dacec8a)
- **useScreenOrientation**: Add fault tolerance to lock and unlock  - 
by [@&#8203;satrong](https://togithub.com/satrong) in
[https://github.com/vueuse/vueuse/issues/3575](https://togithub.com/vueuse/vueuse/issues/3575)
[<samp>(be3cc)</samp>](https://togithub.com/vueuse/vueuse/commit/be3ccc78)
- **useStorage**: Fix undefined defaults  -  by
[@&#8203;Doctor-wu](https://togithub.com/Doctor-wu) in
[https://github.com/vueuse/vueuse/issues/3597](https://togithub.com/vueuse/vueuse/issues/3597)
[<samp>(04220)</samp>](https://togithub.com/vueuse/vueuse/commit/04220788)

#####     [View changes on
GitHub](https://togithub.com/vueuse/vueuse/compare/v10.6.1...v10.7.0)

</details>

<details>
<summary>eslint/eslint (eslint)</summary>

### [`v8.55.0`](https://togithub.com/eslint/eslint/releases/tag/v8.55.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.54.0...v8.55.0)

#### Features

-
[`8c9e6c1`](8c9e6c100a)
feat: importNamePattern option in no-restricted-imports
([#&#8203;17721](https://togithub.com/eslint/eslint/issues/17721))
(Tanuj Kanti)

#### Documentation

-
[`83ece2a`](83ece2afc2)
docs: fix typo `--rules` -> `--rule`
([#&#8203;17806](https://togithub.com/eslint/eslint/issues/17806))
(OKURA Masafumi)
-
[`fffca5c`](fffca5c362)
docs: remove "Open in Playground" buttons for removed rules
([#&#8203;17791](https://togithub.com/eslint/eslint/issues/17791))
(Francesco Trotta)
-
[`a6d9442`](a6d9442a9a)
docs: fix correct/incorrect examples of rules
([#&#8203;17789](https://togithub.com/eslint/eslint/issues/17789))
(Tanuj Kanti)
-
[`383e999`](383e99928d)
docs: update and fix examples for `no-unused-vars`
([#&#8203;17788](https://togithub.com/eslint/eslint/issues/17788))
(Tanuj Kanti)
-
[`5a8efd5`](5a8efd5b7a)
docs: add specific stylistic rule for each deprecated rule
([#&#8203;17778](https://togithub.com/eslint/eslint/issues/17778))
(Etienne)

#### Chores

-
[`eb8950c`](eb8950c3b8)
chore: upgrade
[@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).55.0
([#&#8203;17811](https://togithub.com/eslint/eslint/issues/17811))
(Milos Djermanovic)
-
[`93df384`](93df3849a7)
chore: package.json update for
[@&#8203;eslint/js](https://togithub.com/eslint/js) release (Jenkins)
-
[`fe4b954`](fe4b9545a8)
chore: upgrade
[@&#8203;eslint/eslintrc](https://togithub.com/eslint/eslintrc)[@&#8203;2](https://togithub.com/2).1.4
([#&#8203;17799](https://togithub.com/eslint/eslint/issues/17799))
(Milos Djermanovic)
-
[`bd8911d`](bd8911db85)
ci: pin Node.js 21.2.0
([#&#8203;17809](https://togithub.com/eslint/eslint/issues/17809))
(Milos Djermanovic)
-
[`b29a16b`](b29a16b22f)
chore: fix several `cli` tests to run in the intended flat config mode
([#&#8203;17797](https://togithub.com/eslint/eslint/issues/17797))
(Milos Djermanovic)
-
[`de165c1`](de165c1082)
chore: remove unused config-extends fixtures
([#&#8203;17781](https://togithub.com/eslint/eslint/issues/17781))
(Milos Djermanovic)
-
[`d4304b8`](d4304b8b66)
chore: remove formatting/stylistic rules from new rule templates
([#&#8203;17780](https://togithub.com/eslint/eslint/issues/17780))
(Francesco Trotta)
-
[`21024fe`](21024fe202)
chore: check rule examples for syntax errors
([#&#8203;17718](https://togithub.com/eslint/eslint/issues/17718))
(Francesco Trotta)

</details>

<details>
<summary>prettier/eslint-config-prettier
(eslint-config-prettier)</summary>

###
[`v9.1.0`](https://togithub.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-910-2023-12-02)

[Compare
Source](https://togithub.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0)

- Added: \[unicorn/template-indent], (as a \[special
rule]\[unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu
([@&#8203;gurgunday](https://togithub.com/gurgunday))!
- Changed: All the \[formatting rules that were deprecated in ESLint
8.53.0]\[deprecated-8.53.0] are now excluded if you set the
`ESLINT_CONFIG_PRETTIER_NO_DEPRECATED` environment variable.

</details>

<details>
<summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary>

###
[`v9.19.2`](https://togithub.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.2)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2)

#### 🐛 Bug Fixes

-
[#&#8203;2336](https://togithub.com/vuejs/eslint-plugin-vue/issues/2336)
Fixed crash for TSFunctionType with `type-literal` option in
`vue/define-emits-declaration` rule

**Full Changelog**:
https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2

###
[`v9.19.1`](https://togithub.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.1)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1)

#### 🐛 Bug Fixes

-
[#&#8203;2334](https://togithub.com/vuejs/eslint-plugin-vue/issues/2334)
Fixed broken config of `plugin:vue/vue3-strongly-recommended`

**Full Changelog**:
https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1

###
[`v9.19.0`](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0)

</details>

<details>
<summary>omnidan/node-emoji (node-emoji)</summary>

###
[`v2.1.3`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#213-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.2...v2.1.3)

##### Bug Fixes

- pin skin-tone to ^2.0.0 and add renovate.json ignoreDeps
([dcd6c43](dcd6c43f26))

###
[`v2.1.2`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#212-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.1...v2.1.2)

##### Bug Fixes

- add back CJS support, with a test
([e2856d9](e2856d980d))

</details>

<details>
<summary>unplugin/unplugin-icons (unplugin-icons)</summary>

###
[`v0.18.1`](https://togithub.com/unplugin/unplugin-icons/releases/tag/v0.18.1)

[Compare
Source](https://togithub.com/unplugin/unplugin-icons/compare/v0.18.0...v0.18.1)

#####    🚀 Features

- Add Qwik JSX compiler  -  by
[@&#8203;userquin](https://togithub.com/userquin) in
[https://github.com/unplugin/unplugin-icons/issues/318](https://togithub.com/unplugin/unplugin-icons/issues/318)
[<samp>(11dcb)</samp>](https://togithub.com/unplugin/unplugin-icons/commit/11dcbc2)

#####     [View changes on
GitHub](https://togithub.com/unplugin/unplugin-icons/compare/v0.18.0...v0.18.1)

</details>

<details>
<summary>unplugin/unplugin-vue-components
(unplugin-vue-components)</summary>

###
[`v0.26.0`](https://togithub.com/unplugin/unplugin-vue-components/releases/tag/v0.26.0)

[Compare
Source](https://togithub.com/unplugin/unplugin-vue-components/compare/v0.25.2...v0.26.0)

#####    🚨 Breaking Changes

- Move to ESM first with dual esm/cjs package exports  -  by
[@&#8203;userquin](https://togithub.com/userquin) in
[https://github.com/unplugin/unplugin-vue-components/issues/720](https://togithub.com/unplugin/unplugin-vue-components/issues/720)
[<samp>(c15a9)</samp>](https://togithub.com/unplugin/unplugin-vue-components/commit/c15a9ba)

#####    🚀 Features

- **antdv**: Add new component  -  by
[@&#8203;selicens](https://togithub.com/selicens) and
[@&#8203;undefined-moe](https://togithub.com/undefined-moe) in
[https://github.com/unplugin/unplugin-vue-components/issues/715](https://togithub.com/unplugin/unplugin-vue-components/issues/715)
[<samp>(97c8d)</samp>](https://togithub.com/unplugin/unplugin-vue-components/commit/97c8d97)

#####     [View changes on
GitHub](https://togithub.com/unplugin/unplugin-vue-components/compare/v0.25.4...v0.26.0)

</details>

<details>
<summary>antfu/vite-plugin-windicss (vite-plugin-windicss)</summary>

###
[`v1.9.2`](https://togithub.com/windicss/vite-plugin-windicss/releases/tag/v1.9.2)

[Compare
Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

#####    🚀 Features

- Search for \*.config.mts as config file  -  by
[@&#8203;webstrand](https://togithub.com/webstrand) in
[https://github.com/windicss/vite-plugin-windicss/issues/317](https://togithub.com/windicss/vite-plugin-windicss/issues/317)
[<samp>(71b6d)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/71b6dd6)

#####    🐞 Bug Fixes

- **vite-plugin-windicss**: PeerDependencies with better compatibility
 -  by [@&#8203;markthree](https://togithub.com/markthree) in
[https://github.com/windicss/vite-plugin-windicss/issues/325](https://togithub.com/windicss/vite-plugin-windicss/issues/325)
[<samp>(1d537)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/1d5376e)

#####     [View changes on
GitHub](https://togithub.com/windicss/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

</details>

<details>
<summary>intlify/vue-i18n-next (vue-i18n)</summary>

###
[`v9.8.0`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v980-2023-11-28T010045Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.8.0)

<!-- Release notes generated using configuration in .github/release.yml
at v9.8.0 -->

#### What's Changed

##### 🌟 Features

- feat: more strictly return type locale detector by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1640](https://togithub.com/intlify/vue-i18n-next/pull/1640)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0

###
[`v9.7.1`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v971-2023-11-22T143624Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.7.1)

<!-- Release notes generated using configuration in .github/release.yml
at v9.7.1 -->

#### What's Changed

#####  Improvement Features

- fix: tweak `@intlify/core` conditional exports by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1639](https://togithub.com/intlify/vue-i18n-next/pull/1639)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1

</details>

<details>
<summary>vuejs/language-tools (vue-tsc)</summary>

###
[`v1.8.25`](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1825-2023126)

[Compare
Source](https://togithub.com/vuejs/language-tools/compare/v1.8.24...v1.8.25)

- fix(component-type-helpers): correct type inference for
FunctionalComponent
([#&#8203;3766](https://togithub.com/vuejs/language-tools/issues/3766))
- thanks [@&#8203;pinguet62](https://togithub.com/pinguet62)
- fix(language-core): camelize props for dynamic component
([#&#8203;3774](https://togithub.com/vuejs/language-tools/issues/3774))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)

###
[`v1.8.24`](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1824-20231129)

[Compare
Source](https://togithub.com/vuejs/language-tools/compare/v1.8.22...v1.8.24)

- refactor(component-type-helpers): vue 2 types now move to
`vue-component-type-helpers/vue2`
([#&#8203;3404](https://togithub.com/vuejs/language-tools/issues/3404))
- feat(language-core): expose `defineEmits`'s `arg` and `typeArg` in
`parseScriptSetupRanges`
([#&#8203;3710](https://togithub.com/vuejs/language-tools/issues/3710))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
- fix(language-core): `strictTemplates` fails to report unknown
components
([#&#8203;3539](https://togithub.com/vuejs/language-tools/issues/3539))
- fix(language-core): script syntax breaks if script options does not
have trailing comma
([#&#8203;3755](https://togithub.com/vuejs/language-tools/issues/3755))
- fix(language-core): script syntax breaks if options are enclosed in
parentheses
([#&#8203;3756](https://togithub.com/vuejs/language-tools/issues/3756))
- fix(language-core): allow using `as` with multiple `<script>` blocks
([#&#8203;3733](https://togithub.com/vuejs/language-tools/issues/3733))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
-   fix(language-core): component type narrowing not working in template
- fix(language-core): incremental insertion incorrect if input `<script
setup>` tag above `<script>` tag
([#&#8203;3743](https://togithub.com/vuejs/language-tools/issues/3743))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
- fix(language-core): don't camelize attributes for plain elements
([#&#8203;3750](https://togithub.com/vuejs/language-tools/issues/3750))
- thanks [@&#8203;rchl](https://togithub.com/rchl)
- fix(vscode): syntax highlighting for `.prop` shorthand
([#&#8203;3729](https://togithub.com/vuejs/language-tools/issues/3729))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)

##### Volar.js 1.11.1 updates:

- fix: browser integration no longer requires node polyfill
([https://github.com/volarjs/volar.js/pull/70](https://togithub.com/volarjs/volar.js/pull/70))
- fix: document continuous change merge results are incorrect in
WebStorm
([https://github.com/volarjs/volar.js/pull/77](https://togithub.com/volarjs/volar.js/pull/77))
- thanks [@&#8203;browsnet](https://togithub.com/browsnet)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-06 14:20:59 +01:00
renovate[bot] 0e886e144a
Update docs npm deps non-major (#2908)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@docusaurus/core](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fcore/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fcore/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fcore/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fcore/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fcore/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/module-type-aliases](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fmodule-type-aliases/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fmodule-type-aliases/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fmodule-type-aliases/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fmodule-type-aliases/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fmodule-type-aliases/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@docusaurus/preset-classic](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fpreset-classic/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fpreset-classic/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fpreset-classic/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fpreset-classic/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fpreset-classic/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@docusaurus/theme-classic](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-classic))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2ftheme-classic/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2ftheme-classic/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2ftheme-classic/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2ftheme-classic/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2ftheme-classic/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@docusaurus/tsconfig](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2ftsconfig/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2ftsconfig/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2ftsconfig/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2ftsconfig/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2ftsconfig/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@docusaurus/types](https://togithub.com/facebook/docusaurus)
([source](https://togithub.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types))
| [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@docusaurus%2ftypes/3.0.0/3.0.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2ftypes/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2ftypes/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2ftypes/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2ftypes/3.0.0/3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@easyops-cn/docusaurus-search-local](https://togithub.com/easyops-cn/docusaurus-search-local)
| [`^0.37.2` ->
`^0.38.0`](https://renovatebot.com/diffs/npm/@easyops-cn%2fdocusaurus-search-local/0.37.4/0.38.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@easyops-cn%2fdocusaurus-search-local/0.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@easyops-cn%2fdocusaurus-search-local/0.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@easyops-cn%2fdocusaurus-search-local/0.37.4/0.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@easyops-cn%2fdocusaurus-search-local/0.37.4/0.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`20.9.2` ->
`20.10.3`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.2/20.10.3)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.9.2/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.9.2/20.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`18.2.37` ->
`18.2.42`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.37/18.2.42)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.37/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.37/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/react-helmet](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-helmet)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-helmet))
| [`6.1.9` ->
`6.1.11`](https://renovatebot.com/diffs/npm/@types%2freact-helmet/6.1.9/6.1.11)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-helmet/6.1.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-helmet/6.1.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-helmet/6.1.9/6.1.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-helmet/6.1.9/6.1.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[prism-react-renderer](https://togithub.com/FormidableLabs/prism-react-renderer)
| [`2.2.0` ->
`2.3.0`](https://renovatebot.com/diffs/npm/prism-react-renderer/2.2.0/2.3.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/prism-react-renderer/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prism-react-renderer/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prism-react-renderer/2.2.0/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prism-react-renderer/2.2.0/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [typescript](https://www.typescriptlang.org/)
([source](https://togithub.com/Microsoft/TypeScript)) | [`5.2.2` ->
`5.3.2`](https://renovatebot.com/diffs/npm/typescript/5.2.2/5.3.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.2.2/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.2.2/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>facebook/docusaurus (@&#8203;docusaurus/core)</summary>

###
[`v3.0.1`](https://togithub.com/facebook/docusaurus/blob/HEAD/CHANGELOG.md#301-2023-11-30)

[Compare
Source](https://togithub.com/facebook/docusaurus/compare/v3.0.0...v3.0.1)

##### 🐛 Bug Fix

-   `docusaurus-utils`
- [#&#8203;9570](https://togithub.com/facebook/docusaurus/pull/9570)
fix: add v2 retrocompatible support for quoted admonitions
([@&#8203;slorber](https://togithub.com/slorber))
- [#&#8203;9535](https://togithub.com/facebook/docusaurus/pull/9535)
fix: v3 admonitions should support v2 title syntax for nested
admonitions ([@&#8203;slorber](https://togithub.com/slorber))
- `create-docusaurus`, `docusaurus-theme-classic`,
`docusaurus-theme-common`
- [#&#8203;9567](https://togithub.com/facebook/docusaurus/pull/9567)
fix(theme): upgrade prism-react-renderer, fix html script and style tag
highlighting ([@&#8203;slorber](https://togithub.com/slorber))
-   `docusaurus-theme-common`
- [#&#8203;9531](https://togithub.com/facebook/docusaurus/pull/9531)
fix(theme): docs html sidebar items should always be visible
([@&#8203;slorber](https://togithub.com/slorber))
-   `docusaurus-theme-classic`
- [#&#8203;9530](https://togithub.com/facebook/docusaurus/pull/9530)
fix(theme): fix firefox CSS :has() support bug
([@&#8203;slorber](https://togithub.com/slorber))
-   `create-docusaurus`
- [#&#8203;9487](https://togithub.com/facebook/docusaurus/pull/9487)
fix(create-docusaurus): fix readme docusaurus 2 ref
([@&#8203;slorber](https://togithub.com/slorber))

##### 🤖 Dependencies

-   `docusaurus-plugin-debug`
- [#&#8203;9566](https://togithub.com/facebook/docusaurus/pull/9566)
chore(debug-plugin): migrate to a new maintained JSON Viewer
([@&#8203;mcrstudio](https://togithub.com/mcrstudio))
- `create-docusaurus`, `docusaurus-theme-classic`,
`docusaurus-theme-common`
- [#&#8203;9572](https://togithub.com/facebook/docusaurus/pull/9572)
chore: upgrade prism-react-renderer to 2.3.0 to avoid older clsx
([@&#8203;harryzcy](https://togithub.com/harryzcy))
- [#&#8203;9567](https://togithub.com/facebook/docusaurus/pull/9567)
fix(theme): upgrade prism-react-renderer, fix html script and style tag
highlighting ([@&#8203;slorber](https://togithub.com/slorber))
- `create-docusaurus`, `docusaurus-plugin-pwa`,
`docusaurus-theme-classic`, `docusaurus-theme-common`,
`docusaurus-theme-live-codeblock`, `docusaurus-theme-search-algolia`
- [#&#8203;9464](https://togithub.com/facebook/docusaurus/pull/9464)
chore: Upgrade clsx to 2.0.0
([@&#8203;harryzcy](https://togithub.com/harryzcy))
-   `docusaurus`
- [#&#8203;9547](https://togithub.com/facebook/docusaurus/pull/9547)
chore(core): replace `wait-on` dependency with custom lighter code
([@&#8203;NickGerleman](https://togithub.com/NickGerleman))
-   `docusaurus-plugin-pwa`, `docusaurus`
- [#&#8203;9529](https://togithub.com/facebook/docusaurus/pull/9529)
chore: ugrade babel dependencies to v7.23.3
([@&#8203;reece-white](https://togithub.com/reece-white))

##### Committers: 6

-   Chongyi Zheng ([@&#8203;harryzcy](https://togithub.com/harryzcy))
-   MCR Studio ([@&#8203;mcrstudio](https://togithub.com/mcrstudio))
- Nick Gerleman
([@&#8203;NickGerleman](https://togithub.com/NickGerleman))
- Shreesh Nautiyal ([@&#8203;Shreesh09](https://togithub.com/Shreesh09))
-   Sébastien Lorber ([@&#8203;slorber](https://togithub.com/slorber))
-   [@&#8203;reece-white](https://togithub.com/reece-white)

</details>

<details>
<summary>easyops-cn/docusaurus-search-local
(@&#8203;easyops-cn/docusaurus-search-local)</summary>

###
[`v0.38.1`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.38.1)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.38.0...v0.38.1)

##### Bug Fixes

- compile to commonjs
([b8dc37d](b8dc37d1ea)),
closes
[#&#8203;370](https://togithub.com/easyops-cn/docusaurus-search-local/issues/370)

###
[`v0.38.0`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.38.0)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.37.5...v0.38.0)

##### Features

- do not index unlisted content
([b0c425d](b0c425d21e)),
closes
[#&#8203;371](https://togithub.com/easyops-cn/docusaurus-search-local/issues/371)
- add German locale
[#&#8203;353](https://togithub.com/easyops-cn/docusaurus-search-local/issues/353)

###
[`v0.37.5`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.37.5)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.37.4...v0.37.5)

##### Bug Fixes

- set typescript target back to ES6
([c05151f](c05151f6b9))

</details>

<details>
<summary>FormidableLabs/prism-react-renderer
(prism-react-renderer)</summary>

###
[`v2.3.0`](https://togithub.com/FormidableLabs/prism-react-renderer/releases/tag/prism-react-renderer%402.3.0)

[Compare
Source](https://togithub.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.2.0...prism-react-renderer@2.3.0)

##### Minor Changes

-   Upgrade clsx to v2.0.0.

([#&#8203;232](https://togithub.com/FormidableLabs/prism-react-renderer/pull/232))

</details>

<details>
<summary>Microsoft/TypeScript (typescript)</summary>

###
[`v5.3.2`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.3.2):
TypeScript 5.3

[Compare
Source](https://togithub.com/Microsoft/TypeScript/compare/v5.2.2...v5.3.2)

For release notes, check out the [release
announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/).

For the complete list of fixed issues, check out the

- [fixed issues query for Typescript 5.3.0
(Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+).
- [fixed issues query for Typescript 5.3.1
(RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+).
- [fixed issues query for Typescript 5.3.2
(Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.2%22+is%3Aclosed+).

Downloads are available on:

- [NuGet
package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-06 07:28:04 +01:00
renovate[bot] 428fe659fe
Update golang (packages) (#2904)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| code.gitea.io/sdk/gitea | require | minor | `v0.16.0` -> `v0.17.0` |
| [github.com/antonmedv/expr](https://togithub.com/antonmedv/expr) |
require | patch | `v1.15.5` -> `v1.15.6` |
| [github.com/golang-jwt/jwt/v5](https://togithub.com/golang-jwt/jwt) |
require | minor | `v5.1.0` -> `v5.2.0` |
| [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) | require
| minor | `v2.25.7` -> `v2.26.0` |

---

### Release Notes

<details>
<summary>antonmedv/expr (github.com/antonmedv/expr)</summary>

###
[`v1.15.6`](https://togithub.com/expr-lang/expr/releases/tag/v1.15.6)

[Compare
Source](https://togithub.com/antonmedv/expr/compare/v1.15.5...v1.15.6)

-   This is a new release for `expr-lang/epxr`.

</details>

<details>
<summary>golang-jwt/jwt (github.com/golang-jwt/jwt/v5)</summary>

### [`v5.2.0`](https://togithub.com/golang-jwt/jwt/releases/tag/v5.2.0)

[Compare
Source](https://togithub.com/golang-jwt/jwt/compare/v5.1.0...v5.2.0)

#### What's Changed

- Exported `NewValidator` by
[@&#8203;oxisto](https://togithub.com/oxisto) in
[https://github.com/golang-jwt/jwt/pull/349](https://togithub.com/golang-jwt/jwt/pull/349)
- Improve ErrInvalidKeyType error messages by
[@&#8203;Laurin-Notemann](https://togithub.com/Laurin-Notemann) in
[https://github.com/golang-jwt/jwt/pull/361](https://togithub.com/golang-jwt/jwt/pull/361)
- Update MIGRATION_GUIDE.md by
[@&#8203;jbarham](https://togithub.com/jbarham) in
[https://github.com/golang-jwt/jwt/pull/363](https://togithub.com/golang-jwt/jwt/pull/363)

#### New Contributors

- [@&#8203;Laurin-Notemann](https://togithub.com/Laurin-Notemann) made
their first contribution in
[https://github.com/golang-jwt/jwt/pull/361](https://togithub.com/golang-jwt/jwt/pull/361)
- [@&#8203;jbarham](https://togithub.com/jbarham) made their first
contribution in
[https://github.com/golang-jwt/jwt/pull/363](https://togithub.com/golang-jwt/jwt/pull/363)

**Full Changelog**:
https://github.com/golang-jwt/jwt/compare/v5.1.0...v5.2.0

</details>

<details>
<summary>urfave/cli (github.com/urfave/cli/v2)</summary>

### [`v2.26.0`](https://togithub.com/urfave/cli/releases/tag/v2.26.0)

[Compare
Source](https://togithub.com/urfave/cli/compare/v2.25.7...v2.26.0)

#### What's Changed

- Bash completion nits by
[@&#8203;meatballhat](https://togithub.com/meatballhat) in
[https://github.com/urfave/cli/pull/1762](https://togithub.com/urfave/cli/pull/1762)
- Chore: Rename mkdocs requirements file name by
[@&#8203;dearchap](https://togithub.com/dearchap) in
[https://github.com/urfave/cli/pull/1776](https://togithub.com/urfave/cli/pull/1776)
- Fix:(issue\_1787) Add fix for commands not listed when hide help
comma… by [@&#8203;dearchap](https://togithub.com/dearchap) in
[https://github.com/urfave/cli/pull/1788](https://togithub.com/urfave/cli/pull/1788)
- Fix nil HelpFlag panic (v2) by
[@&#8203;wxiaoguang](https://togithub.com/wxiaoguang) in
[https://github.com/urfave/cli/pull/1795](https://togithub.com/urfave/cli/pull/1795)
- Always get 0 for a nested int64 value in v2.25.7 by
[@&#8203;stephenfire](https://togithub.com/stephenfire) in
[https://github.com/urfave/cli/pull/1799](https://togithub.com/urfave/cli/pull/1799)
- Helper messages for documenting build process by
[@&#8203;abitrolly](https://togithub.com/abitrolly) in
[https://github.com/urfave/cli/pull/1800](https://togithub.com/urfave/cli/pull/1800)
- fix: check duplicated sub command name and alias by
[@&#8203;linrl3](https://togithub.com/linrl3) in
[https://github.com/urfave/cli/pull/1805](https://togithub.com/urfave/cli/pull/1805)
- Fix:(issue\_1689) Have consistent behavior for default text in man
and… by [@&#8203;dearchap](https://togithub.com/dearchap) in
[https://github.com/urfave/cli/pull/1825](https://togithub.com/urfave/cli/pull/1825)
- Fix linting issues by
[@&#8203;skelouse](https://togithub.com/skelouse) in
[https://github.com/urfave/cli/pull/1696](https://togithub.com/urfave/cli/pull/1696)

#### New Contributors

- [@&#8203;stephenfire](https://togithub.com/stephenfire) made their
first contribution in
[https://github.com/urfave/cli/pull/1799](https://togithub.com/urfave/cli/pull/1799)
- [@&#8203;linrl3](https://togithub.com/linrl3) made their first
contribution in
[https://github.com/urfave/cli/pull/1805](https://togithub.com/urfave/cli/pull/1805)

**Full Changelog**:
https://github.com/urfave/cli/compare/v2.25.7...v2.26.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <ndev@web.de>
2023-12-04 20:53:46 +01:00
qwerty287 8c6738e2bb
Unify date/time dependencies (#2891)
Remove all date/time-related dependencies from the ui except `dayjs` and
use `dayjs` for all tasks.

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2023-12-04 12:46:24 +01:00
qwerty287 6c9ff24ba6
Fix installation type (#2902)
`isomorphic-dompurify` should be installed as dev dependency.
2023-12-03 09:49:34 +01:00
Kaylyn Bogle bc95443853
Fix podman agent container in v2 (#2897)
Add additional string matching to determine when container is not found
or running when invoked via podman compatibility socket

Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2023-12-02 20:22:23 +01:00
renovate[bot] 621eed6205
Update module github.com/google/go-github/v56 to v57 (#2899) 2023-12-02 15:19:39 +01:00
qwerty287 1caccdc977
Sanitize plugin docs content (#2900) 2023-12-02 14:48:26 +01:00
renovate[bot] de5855b706
Update dependency marked to v11 (#2898) 2023-12-02 14:33:51 +01:00
renovate[bot] d51468c60c
Update dependency vite-svg-loader to v5 (#2837) 2023-12-02 08:16:09 +01:00
qwerty287 237b2257f5
Fix bitbucket org fetching (#2874)
closes #2793
2023-12-01 20:45:42 +01:00
renovate[bot] fb7d5ae395
Update golang (packages) (#2894)
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/antonmedv/expr](https://togithub.com/antonmedv/expr) |
require | patch | `v1.15.4` -> `v1.15.5` |
| golang.org/x/crypto | require | minor | `v0.15.0` -> `v0.16.0` |
| golang.org/x/net | require | minor | `v0.18.0` -> `v0.19.0` |
| golang.org/x/oauth2 | require | minor | `v0.14.0` -> `v0.15.0` |
| golang.org/x/term | require | minor | `v0.14.0` -> `v0.15.0` |

---

### Release Notes

<details>
<summary>antonmedv/expr (github.com/antonmedv/expr)</summary>

###
[`v1.15.5`](https://togithub.com/antonmedv/expr/releases/tag/v1.15.5)

[Compare
Source](https://togithub.com/antonmedv/expr/compare/v1.15.4...v1.15.5)

-   Added `ceil()`, `floor()` and `round()` function.
-   Fixed type checker for float arguments.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-01 12:43:41 +01:00
renovate[bot] 4613bb50be
Update web npm deps non-major (#2895)
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@iconify/json](https://iconify.design/icon-sets/)
([source](https://togithub.com/iconify/icon-sets)) | [`2.2.143` ->
`2.2.150`](https://renovatebot.com/diffs/npm/@iconify%2fjson/2.2.143/2.2.150)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify%2fjson/2.2.150?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify%2fjson/2.2.150?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify%2fjson/2.2.143/2.2.150?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify%2fjson/2.2.143/2.2.150?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/javascript-time-ago](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/javascript-time-ago)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`2.0.7` ->
`2.0.8`](https://renovatebot.com/diffs/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fjavascript-time-ago/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fjavascript-time-ago/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/lodash](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`4.14.201` ->
`4.14.202`](https://renovatebot.com/diffs/npm/@types%2flodash/4.14.201/4.14.202)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`20.9.2` ->
`20.10.1`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.2/20.10.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.9.2/20.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.9.2/20.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
| [`6.11.0` ->
`6.13.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
| [`6.11.0` ->
`6.13.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.11.0/6.13.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.11.0/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.11.0/6.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@vue/compiler-sfc](https://togithub.com/vuejs/core/tree/main/packages/compiler-sfc#readme)
([source](https://togithub.com/vuejs/core)) | [`3.3.8` ->
`3.3.9`](https://renovatebot.com/diffs/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vue%2fcompiler-sfc/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vue%2fcompiler-sfc/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [eslint-plugin-vue](https://eslint.vuejs.org)
([source](https://togithub.com/vuejs/eslint-plugin-vue)) | [`9.18.1` ->
`9.19.2`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.18.1/9.19.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-vue/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-vue/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-vue/9.18.1/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-vue/9.18.1/9.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [node-emoji](https://togithub.com/omnidan/node-emoji) | [`2.1.1` ->
`2.1.3`](https://renovatebot.com/diffs/npm/node-emoji/2.1.1/2.1.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [unplugin-icons](https://togithub.com/unplugin/unplugin-icons) |
[`^0.17.0` ->
`^0.18.0`](https://renovatebot.com/diffs/npm/unplugin-icons/0.17.4/0.18.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/unplugin-icons/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/unplugin-icons/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/unplugin-icons/0.17.4/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/unplugin-icons/0.17.4/0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme)
([source](https://togithub.com/vitejs/vite)) | [`5.0.0` ->
`5.0.4`](https://renovatebot.com/diffs/npm/vite/5.0.0/5.0.4) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.0.0/5.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.0.0/5.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vite-plugin-windicss](https://togithub.com/antfu/vite-plugin-windicss)
| [`1.9.1` ->
`1.9.2`](https://renovatebot.com/diffs/npm/vite-plugin-windicss/1.9.1/1.9.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vue](https://togithub.com/vuejs/core/tree/main/packages/vue#readme)
([source](https://togithub.com/vuejs/core)) | [`3.3.8` ->
`3.3.9`](https://renovatebot.com/diffs/npm/vue/3.3.8/3.3.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vue-i18n](https://togithub.com/intlify/vue-i18n-next/tree/master/packages/vue-i18n#readme)
([source](https://togithub.com/intlify/vue-i18n-next)) | [`9.7.0` ->
`9.8.0`](https://renovatebot.com/diffs/npm/vue-i18n/9.7.0/9.8.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vue-tsc](https://togithub.com/vuejs/language-tools) | [`1.8.22` ->
`1.8.24`](https://renovatebot.com/diffs/npm/vue-tsc/1.8.22/1.8.24) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue-tsc/1.8.24?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-tsc/1.8.24?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-tsc/1.8.22/1.8.24?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-tsc/1.8.22/1.8.24?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>iconify/icon-sets (@&#8203;iconify/json)</summary>

###
[`v2.2.150`](https://togithub.com/iconify/icon-sets/compare/2.2.149...2.2.150)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.149...2.2.150)

###
[`v2.2.149`](https://togithub.com/iconify/icon-sets/compare/2.2.148...2.2.149)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.148...2.2.149)

###
[`v2.2.148`](https://togithub.com/iconify/icon-sets/compare/2.2.147...2.2.148)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.147...2.2.148)

###
[`v2.2.147`](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

###
[`v2.2.146`](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

###
[`v2.2.145`](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

###
[`v2.2.144`](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v6.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6131-2023-11-28)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

##### Bug Fixes

- **eslint-plugin:** \[class-methods-use-this] detect a problematic case
for private/protected members if `ignoreClassesThatImplementAnInterface`
is set
([#&#8203;7705](https://togithub.com/typescript-eslint/typescript-eslint/issues/7705))
([155aa1f](155aa1f533))
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive with
computed member access and branded key type
([#&#8203;7706](https://togithub.com/typescript-eslint/typescript-eslint/issues/7706))
([f151b26](f151b26d21))
- **eslint-plugin:** \[switch-exhaustiveness-check] enum members with
new line or single quotes are not being fixed correctly
([#&#8203;7806](https://togithub.com/typescript-eslint/typescript-eslint/issues/7806))
([a034d0a](a034d0a385)),
closes
[#&#8203;7768](https://togithub.com/typescript-eslint/typescript-eslint/issues/7768)

##### Features

- \[member-ordering] add accessor support for member-ordering
([#&#8203;7927](https://togithub.com/typescript-eslint/typescript-eslint/issues/7927))
([3c8312d](3c8312d1e1))
- **eslint-plugin:** \[switch-exhaustiveness-check] add
requireDefaultForNonUnion option
([#&#8203;7880](https://togithub.com/typescript-eslint/typescript-eslint/issues/7880))
([4cfcd45](4cfcd451ef))

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v6.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6131-2023-11-28)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>vuejs/core (@&#8203;vue/compiler-sfc)</summary>

###
[`v3.3.9`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#339-2023-11-25)

[Compare
Source](https://togithub.com/vuejs/core/compare/v3.3.8...v3.3.9)

##### Bug Fixes

- **compiler-core:** avoid rewriting scope variables in inline for loops
([#&#8203;7245](https://togithub.com/vuejs/core/issues/7245))
([a2d810e](a2d810eb40)),
closes [#&#8203;7238](https://togithub.com/vuejs/core/issues/7238)
- **compiler-core:** fix `resolveParserPlugins` decorators check
([#&#8203;9566](https://togithub.com/vuejs/core/issues/9566))
([9d0eba9](9d0eba916f)),
closes [#&#8203;9560](https://togithub.com/vuejs/core/issues/9560)
- **compiler-sfc:** consistently escape type-only prop names
([#&#8203;8654](https://togithub.com/vuejs/core/issues/8654))
([3e08d24](3e08d246df)),
closes [#&#8203;8635](https://togithub.com/vuejs/core/issues/8635)
[#&#8203;8910](https://togithub.com/vuejs/core/issues/8910)
[vitejs/vite-plugin-vue#184](https://togithub.com/vitejs/vite-plugin-vue/issues/184)
- **compiler-sfc:** malformed filename on windows using
path.posix.join()
([#&#8203;9478](https://togithub.com/vuejs/core/issues/9478))
([f18a174](f18a174979)),
closes [#&#8203;8671](https://togithub.com/vuejs/core/issues/8671)
[#&#8203;9583](https://togithub.com/vuejs/core/issues/9583)
[#&#8203;9446](https://togithub.com/vuejs/core/issues/9446)
[#&#8203;9473](https://togithub.com/vuejs/core/issues/9473)
- **compiler-sfc:** support `:is` and `:where` selector in scoped css
rewrite ([#&#8203;8929](https://togithub.com/vuejs/core/issues/8929))
([3227e50](3227e50b32))
- **compiler-sfc:** support resolve extends interface for defineEmits
([#&#8203;8470](https://togithub.com/vuejs/core/issues/8470))
([9e1b74b](9e1b74bcd5)),
closes [#&#8203;8465](https://togithub.com/vuejs/core/issues/8465)
- **hmr/transition:** fix kept-alive component inside transition
disappearing after hmr
([#&#8203;7126](https://togithub.com/vuejs/core/issues/7126))
([d11e978](d11e978fc9)),
closes [#&#8203;7121](https://togithub.com/vuejs/core/issues/7121)
- **hydration:** force hydration for v-bind with .prop modifier
([364f319](364f319d21)),
closes [#&#8203;7490](https://togithub.com/vuejs/core/issues/7490)
- **hydration:** properly hydrate indeterminate prop
([34b5a5d](34b5a5da4a)),
closes [#&#8203;7476](https://togithub.com/vuejs/core/issues/7476)
- **reactivity:** clear method on readonly collections should return
undefined ([#&#8203;7316](https://togithub.com/vuejs/core/issues/7316))
([657476d](657476dcdb))
- **reactivity:** onCleanup also needs to be cleaned
([#&#8203;8655](https://togithub.com/vuejs/core/issues/8655))
([73fd810](73fd810eeb)),
closes [#&#8203;5151](https://togithub.com/vuejs/core/issues/5151)
[#&#8203;7695](https://togithub.com/vuejs/core/issues/7695)
- **ssr:** hydration `__vnode` missing for devtools
([#&#8203;9328](https://togithub.com/vuejs/core/issues/9328))
([5156ac5](5156ac5b38))
- **types:** allow falsy value types in `StyleValue`
([#&#8203;7954](https://togithub.com/vuejs/core/issues/7954))
([17aa92b](17aa92b79b)),
closes [#&#8203;7955](https://togithub.com/vuejs/core/issues/7955)
- **types:** defineCustomElement using defineComponent return type with
emits ([#&#8203;7937](https://togithub.com/vuejs/core/issues/7937))
([5d932a8](5d932a8e6d)),
closes [#&#8203;7782](https://togithub.com/vuejs/core/issues/7782)
- **types:** fix `unref` and `toValue` when input union type contains
ComputedRef
([#&#8203;8748](https://togithub.com/vuejs/core/issues/8748))
([176d476](176d476712)),
closes [#&#8203;8747](https://togithub.com/vuejs/core/issues/8747)
[#&#8203;8857](https://togithub.com/vuejs/core/issues/8857)
- **types:** fix instance type when props type is incompatible with
setup returned type
([#&#8203;7338](https://togithub.com/vuejs/core/issues/7338))
([0e1e8f9](0e1e8f919e)),
closes [#&#8203;5885](https://togithub.com/vuejs/core/issues/5885)
- **types:** fix shallowRef return type with union value type
([#&#8203;7853](https://togithub.com/vuejs/core/issues/7853))
([7c44800](7c448000b0)),
closes [#&#8203;7852](https://togithub.com/vuejs/core/issues/7852)
- **types:** more precise types for class bindings
([#&#8203;8012](https://togithub.com/vuejs/core/issues/8012))
([46e3374](46e33744c8))
- **types:** remove optional properties from defineProps return type
([#&#8203;6421](https://togithub.com/vuejs/core/issues/6421))
([94c049d](94c049d930)),
closes [#&#8203;6420](https://togithub.com/vuejs/core/issues/6420)
- **types:** return type of withDefaults should be readonly
([#&#8203;8601](https://togithub.com/vuejs/core/issues/8601))
([f15debc](f15debc01a))
- **types:** revert class type restrictions
([5d077c8](5d077c8754)),
closes [#&#8203;8012](https://togithub.com/vuejs/core/issues/8012)
- **types:** update jsx type definitions
([#&#8203;8607](https://togithub.com/vuejs/core/issues/8607))
([58e2a94](58e2a94871))
- **types:** widen ClassValue type
([2424013](2424013059))
- **v-model:** avoid overwriting number input with same value
([#&#8203;7004](https://togithub.com/vuejs/core/issues/7004))
([40f4b77](40f4b77bb5)),
closes [#&#8203;7003](https://togithub.com/vuejs/core/issues/7003)
- **v-model:** unnecessary value binding error should apply to dynamic
instead of static binding
([2859b65](2859b653c9)),
closes [#&#8203;3596](https://togithub.com/vuejs/core/issues/3596)

</details>

<details>
<summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary>

###
[`v9.19.2`](https://togithub.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.2)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2)

#### 🐛 Bug Fixes

-
[#&#8203;2336](https://togithub.com/vuejs/eslint-plugin-vue/issues/2336)
Fixed crash for TSFunctionType with `type-literal` option in
`vue/define-emits-declaration` rule

**Full Changelog**:
https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.1...v9.19.2

###
[`v9.19.1`](https://togithub.com/vuejs/eslint-plugin-vue/releases/tag/v9.19.1)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1)

#### 🐛 Bug Fixes

-
[#&#8203;2334](https://togithub.com/vuejs/eslint-plugin-vue/issues/2334)
Fixed broken config of `plugin:vue/vue3-strongly-recommended`

**Full Changelog**:
https://github.com/vuejs/eslint-plugin-vue/compare/v9.19.0...v9.19.1

###
[`v9.19.0`](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0)

[Compare
Source](https://togithub.com/vuejs/eslint-plugin-vue/compare/v9.18.1...v9.19.0)

</details>

<details>
<summary>omnidan/node-emoji (node-emoji)</summary>

###
[`v2.1.3`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#213-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.2...v2.1.3)

##### Bug Fixes

- pin skin-tone to ^2.0.0 and add renovate.json ignoreDeps
([dcd6c43](dcd6c43f26))

###
[`v2.1.2`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#212-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.1...v2.1.2)

##### Bug Fixes

- add back CJS support, with a test
([e2856d9](e2856d980d))

</details>

<details>
<summary>unplugin/unplugin-icons (unplugin-icons)</summary>

###
[`v0.18.0`](https://togithub.com/unplugin/unplugin-icons/releases/tag/v0.18.0)

[Compare
Source](https://togithub.com/unplugin/unplugin-icons/compare/v0.17.4...v0.18.0)

#####    🚨 Breaking Changes

- Include dual cjs/esm in package exports  -  by
[@&#8203;userquin](https://togithub.com/userquin) in
[https://github.com/unplugin/unplugin-icons/issues/330](https://togithub.com/unplugin/unplugin-icons/issues/330)
[<samp>(67642)</samp>](https://togithub.com/unplugin/unplugin-icons/commit/67642e2)

#####     [View changes on
GitHub](https://togithub.com/unplugin/unplugin-icons/compare/v0.17.4...v0.18.0)

</details>

<details>
<summary>vitejs/vite (vite)</summary>

###
[`v5.0.4`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small504-2023-11-29-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.0.3...v5.0.4)

- fix: bindCLIShortcuts to proper server
([#&#8203;15162](https://togithub.com/vitejs/vite/issues/15162))
([67ac572](https://togithub.com/vitejs/vite/commit/67ac572)), closes
[#&#8203;15162](https://togithub.com/vitejs/vite/issues/15162)
- fix: revert "fix: js fallback sourcemap content should be using
original content
([#&#8203;15135](https://togithub.com/vitejs/vite/issues/15135))"
([#&#8203;15178](https://togithub.com/vitejs/vite/issues/15178))
([d2a2493](https://togithub.com/vitejs/vite/commit/d2a2493)), closes
[#&#8203;15135](https://togithub.com/vitejs/vite/issues/15135)
[#&#8203;15178](https://togithub.com/vitejs/vite/issues/15178)
- fix(define): allow define process.env
([#&#8203;15173](https://togithub.com/vitejs/vite/issues/15173))
([ec401da](https://togithub.com/vitejs/vite/commit/ec401da)), closes
[#&#8203;15173](https://togithub.com/vitejs/vite/issues/15173)
- fix(resolve): respect order of browser in mainFields when resolving
([#&#8203;15137](https://togithub.com/vitejs/vite/issues/15137))
([4a111aa](https://togithub.com/vitejs/vite/commit/4a111aa)), closes
[#&#8203;15137](https://togithub.com/vitejs/vite/issues/15137)
- feat: preserve vite.middlewares connect instance after restarts
([#&#8203;15166](https://togithub.com/vitejs/vite/issues/15166))
([9474c4b](https://togithub.com/vitejs/vite/commit/9474c4b)), closes
[#&#8203;15166](https://togithub.com/vitejs/vite/issues/15166)
- refactor: align with Promise.withResolvers()
([#&#8203;15171](https://togithub.com/vitejs/vite/issues/15171))
([642f9bc](https://togithub.com/vitejs/vite/commit/642f9bc)), closes
[#&#8203;15171](https://togithub.com/vitejs/vite/issues/15171)

###
[`v5.0.3`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small503-2023-11-28-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.0.2...v5.0.3)

- fix: `generateCodeFrame` infinite loop
([#&#8203;15093](https://togithub.com/vitejs/vite/issues/15093))
([6619de7](https://togithub.com/vitejs/vite/commit/6619de7)), closes
[#&#8203;15093](https://togithub.com/vitejs/vite/issues/15093)
- fix: js fallback sourcemap content should be using original content
([#&#8203;15135](https://togithub.com/vitejs/vite/issues/15135))
([227d56d](https://togithub.com/vitejs/vite/commit/227d56d)), closes
[#&#8203;15135](https://togithub.com/vitejs/vite/issues/15135)
- fix(css): render correct asset url when CSS chunk name is nested
([#&#8203;15154](https://togithub.com/vitejs/vite/issues/15154))
([ef403c0](https://togithub.com/vitejs/vite/commit/ef403c0)), closes
[#&#8203;15154](https://togithub.com/vitejs/vite/issues/15154)
- fix(css): use non-nested chunk name if facadeModule is not CSS file
([#&#8203;15155](https://togithub.com/vitejs/vite/issues/15155))
([811e392](https://togithub.com/vitejs/vite/commit/811e392)), closes
[#&#8203;15155](https://togithub.com/vitejs/vite/issues/15155)
- fix(dev): bind plugin context functions
([#&#8203;14569](https://togithub.com/vitejs/vite/issues/14569))
([cb3243c](https://togithub.com/vitejs/vite/commit/cb3243c)), closes
[#&#8203;14569](https://togithub.com/vitejs/vite/issues/14569)
- chore(deps): update all non-major dependencies
([#&#8203;15145](https://togithub.com/vitejs/vite/issues/15145))
([7ff2c0a](https://togithub.com/vitejs/vite/commit/7ff2c0a)), closes
[#&#8203;15145](https://togithub.com/vitejs/vite/issues/15145)
- build: handle latest json-stable-stringify replacement
([#&#8203;15049](https://togithub.com/vitejs/vite/issues/15049))
([bcc4a61](https://togithub.com/vitejs/vite/commit/bcc4a61)), closes
[#&#8203;15049](https://togithub.com/vitejs/vite/issues/15049)

###
[`v5.0.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small502-2023-11-21-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.0.1...v5.0.2)

- fix: make htmlFallback more permissive
([#&#8203;15059](https://togithub.com/vitejs/vite/issues/15059))
([6fcceeb](https://togithub.com/vitejs/vite/commit/6fcceeb)), closes
[#&#8203;15059](https://togithub.com/vitejs/vite/issues/15059)

###
[`v5.0.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small501-2023-11-21-small)

- test: avoid read check when running as root
([#&#8203;14884](https://togithub.com/vitejs/vite/issues/14884))
([1d9516c](https://togithub.com/vitejs/vite/commit/1d9516c)), closes
[#&#8203;14884](https://togithub.com/vitejs/vite/issues/14884)
- perf(hmr): skip traversed modules when checking circular imports
([#&#8203;15034](https://togithub.com/vitejs/vite/issues/15034))
([41e437f](https://togithub.com/vitejs/vite/commit/41e437f)), closes
[#&#8203;15034](https://togithub.com/vitejs/vite/issues/15034)
- fix: run htmlFallbackMiddleware for no accept header requests
([#&#8203;15025](https://togithub.com/vitejs/vite/issues/15025))
([b93dfe3](https://togithub.com/vitejs/vite/commit/b93dfe3)), closes
[#&#8203;15025](https://togithub.com/vitejs/vite/issues/15025)
- fix: update type CSSModulesOptions interface
([#&#8203;14987](https://togithub.com/vitejs/vite/issues/14987))
([d0b2153](https://togithub.com/vitejs/vite/commit/d0b2153)), closes
[#&#8203;14987](https://togithub.com/vitejs/vite/issues/14987)
- fix(legacy): error in build with --watch and manifest enabled
([#&#8203;14450](https://togithub.com/vitejs/vite/issues/14450))
([b9ee620](https://togithub.com/vitejs/vite/commit/b9ee620)), closes
[#&#8203;14450](https://togithub.com/vitejs/vite/issues/14450)
- chore: add comment about crossorigin attribute for script module
([#&#8203;15040](https://togithub.com/vitejs/vite/issues/15040))
([03c371e](https://togithub.com/vitejs/vite/commit/03c371e)), closes
[#&#8203;15040](https://togithub.com/vitejs/vite/issues/15040)
- chore: cleanup v5 beta changelog
([#&#8203;14694](https://togithub.com/vitejs/vite/issues/14694))
([531d3cb](https://togithub.com/vitejs/vite/commit/531d3cb)), closes
[#&#8203;14694](https://togithub.com/vitejs/vite/issues/14694)

</details>

<details>
<summary>antfu/vite-plugin-windicss (vite-plugin-windicss)</summary>

###
[`v1.9.2`](https://togithub.com/windicss/vite-plugin-windicss/releases/tag/v1.9.2)

[Compare
Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

#####    🚀 Features

- Search for \*.config.mts as config file  -  by
[@&#8203;webstrand](https://togithub.com/webstrand) in
[https://github.com/windicss/vite-plugin-windicss/issues/317](https://togithub.com/windicss/vite-plugin-windicss/issues/317)
[<samp>(71b6d)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/71b6dd6)

#####    🐞 Bug Fixes

- **vite-plugin-windicss**: PeerDependencies with better compatibility
 -  by [@&#8203;markthree](https://togithub.com/markthree) in
[https://github.com/windicss/vite-plugin-windicss/issues/325](https://togithub.com/windicss/vite-plugin-windicss/issues/325)
[<samp>(1d537)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/1d5376e)

#####     [View changes on
GitHub](https://togithub.com/windicss/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

</details>

<details>
<summary>intlify/vue-i18n-next (vue-i18n)</summary>

###
[`v9.8.0`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v980-2023-11-28T010045Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.8.0)

<!-- Release notes generated using configuration in .github/release.yml
at v9.8.0 -->

#### What's Changed

##### 🌟 Features

- feat: more strictly return type locale detector by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1640](https://togithub.com/intlify/vue-i18n-next/pull/1640)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0

###
[`v9.7.1`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v971-2023-11-22T143624Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.7.1)

<!-- Release notes generated using configuration in .github/release.yml
at v9.7.1 -->

#### What's Changed

#####  Improvement Features

- fix: tweak `@intlify/core` conditional exports by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1639](https://togithub.com/intlify/vue-i18n-next/pull/1639)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1

</details>

<details>
<summary>vuejs/language-tools (vue-tsc)</summary>

###
[`v1.8.24`](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1824-20231129)

[Compare
Source](https://togithub.com/vuejs/language-tools/compare/v1.8.22...v1.8.24)

- refactor(component-type-helpers): vue 2 types now move to
`vue-component-type-helpers/vue2`
([#&#8203;3404](https://togithub.com/vuejs/language-tools/issues/3404))
- feat(language-core): expose `defineEmits`'s `arg` and `typeArg` in
`parseScriptSetupRanges`
([#&#8203;3710](https://togithub.com/vuejs/language-tools/issues/3710))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
- fix(language-core): `strictTemplates` fails to report unknown
components
([#&#8203;3539](https://togithub.com/vuejs/language-tools/issues/3539))
- fix(language-core): script syntax breaks if script options does not
have trailing comma
([#&#8203;3755](https://togithub.com/vuejs/language-tools/issues/3755))
- fix(language-core): script syntax breaks if options are enclosed in
parentheses
([#&#8203;3756](https://togithub.com/vuejs/language-tools/issues/3756))
- fix(language-core): allow using `as` with multiple `<script>` blocks
([#&#8203;3733](https://togithub.com/vuejs/language-tools/issues/3733))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
-   fix(language-core): component type narrowing not working in template
- fix(language-core): incremental insertion incorrect if input `<script
setup>` tag above `<script>` tag
([#&#8203;3743](https://togithub.com/vuejs/language-tools/issues/3743))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)
- fix(language-core): don't camelize attributes for plain elements
([#&#8203;3750](https://togithub.com/vuejs/language-tools/issues/3750))
- thanks [@&#8203;rchl](https://togithub.com/rchl)
- fix(vscode): syntax highlighting for `.prop` shorthand
([#&#8203;3729](https://togithub.com/vuejs/language-tools/issues/3729))
- thanks [@&#8203;so1ve](https://togithub.com/so1ve)

##### Volar.js 1.11.1 updates:

- fix: browser integration no longer requires node polyfill
([https://github.com/volarjs/volar.js/pull/70](https://togithub.com/volarjs/volar.js/pull/70))
- fix: document continuous change merge results are incorrect in
WebStorm
([https://github.com/volarjs/volar.js/pull/77](https://togithub.com/volarjs/volar.js/pull/77))
- thanks [@&#8203;browsnet](https://togithub.com/browsnet)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-01 07:36:04 +01:00
Gabor Pihaj 70487439d3
Add nix-attic plugin to the index (#2889)
This PR adds the nix-attic plugin to the index.

---------

Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2023-12-01 07:27:31 +01:00
qwerty287 2f963d70e7
Add linting for any (#2893)
Add gofmt rules to make sure `interface{}` is not used but only `any`.
2023-11-29 20:21:18 +01:00
qwerty287 2200998ca4
Only deploy docs on main (#2892) 2023-11-29 14:17:49 +01:00
qwerty287 00a9d96247
Fix vite deprecations (#2885)
I wasn't able to fully migrate to esmodules because eslint fails then.
Thus there's still a deprecation warning when running vite.
(https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated)
2023-11-29 13:40:51 +01:00
Robbie b6465751e8
Add usage with Tunnelmole to docs (#2881)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Anbraten <anton@ju60.de>
2023-11-28 10:56:15 +01:00
qwerty287 7bacbd5699
Migrate to Xormigrate (#2711)
Co-authored-by: Anbraten <anton@ju60.de>
2023-11-28 10:31:54 +01:00
renovate[bot] 8dd74acdee
Update web npm deps non-major (#2884)
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@iconify/json](https://iconify.design/icon-sets/)
([source](https://togithub.com/iconify/icon-sets)) | [`2.2.143` ->
`2.2.147`](https://renovatebot.com/diffs/npm/@iconify%2fjson/2.2.143/2.2.147)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify%2fjson/2.2.147?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify%2fjson/2.2.147?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify%2fjson/2.2.143/2.2.147?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify%2fjson/2.2.143/2.2.147?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/javascript-time-ago](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/javascript-time-ago)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`2.0.7` ->
`2.0.8`](https://renovatebot.com/diffs/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fjavascript-time-ago/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fjavascript-time-ago/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fjavascript-time-ago/2.0.7/2.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/lodash](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`4.14.201` ->
`4.14.202`](https://renovatebot.com/diffs/npm/@types%2flodash/4.14.201/4.14.202)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2flodash/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2flodash/4.14.201/4.14.202?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`20.9.2` ->
`20.10.0`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.2/20.10.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.9.2/20.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.9.2/20.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
| [`6.11.0` ->
`6.13.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.11.0/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
| [`6.11.0` ->
`6.13.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.11.0/6.13.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.11.0/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.11.0/6.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@vue/compiler-sfc](https://togithub.com/vuejs/core/tree/main/packages/compiler-sfc#readme)
([source](https://togithub.com/vuejs/core)) | [`3.3.8` ->
`3.3.9`](https://renovatebot.com/diffs/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vue%2fcompiler-sfc/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vue%2fcompiler-sfc/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vue%2fcompiler-sfc/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [node-emoji](https://togithub.com/omnidan/node-emoji) | [`2.1.1` ->
`2.1.3`](https://renovatebot.com/diffs/npm/node-emoji/2.1.1/2.1.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/node-emoji/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/node-emoji/2.1.1/2.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [typescript](https://www.typescriptlang.org/)
([source](https://togithub.com/Microsoft/TypeScript)) | [`5.2.2` ->
`5.3.2`](https://renovatebot.com/diffs/npm/typescript/5.2.2/5.3.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.2.2/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.2.2/5.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme)
([source](https://togithub.com/vitejs/vite)) | [`5.0.0` ->
`5.0.2`](https://renovatebot.com/diffs/npm/vite/5.0.0/5.0.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.0.0/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.0.0/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vite-plugin-windicss](https://togithub.com/antfu/vite-plugin-windicss)
| [`1.9.1` ->
`1.9.2`](https://renovatebot.com/diffs/npm/vite-plugin-windicss/1.9.1/1.9.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-windicss/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-windicss/1.9.1/1.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vue](https://togithub.com/vuejs/core/tree/main/packages/vue#readme)
([source](https://togithub.com/vuejs/core)) | [`3.3.8` ->
`3.3.9`](https://renovatebot.com/diffs/npm/vue/3.3.8/3.3.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue/3.3.8/3.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[vue-i18n](https://togithub.com/intlify/vue-i18n-next/tree/master/packages/vue-i18n#readme)
([source](https://togithub.com/intlify/vue-i18n-next)) | [`9.7.0` ->
`9.8.0`](https://renovatebot.com/diffs/npm/vue-i18n/9.7.0/9.8.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-i18n/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-i18n/9.7.0/9.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>iconify/icon-sets (@&#8203;iconify/json)</summary>

###
[`v2.2.147`](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.146...2.2.147)

###
[`v2.2.146`](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.145...2.2.146)

###
[`v2.2.145`](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.144...2.2.145)

###
[`v2.2.144`](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

[Compare
Source](https://togithub.com/iconify/icon-sets/compare/2.2.143...2.2.144)

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

##### Bug Fixes

- **eslint-plugin:** \[class-methods-use-this] detect a problematic case
for private/protected members if `ignoreClassesThatImplementAnInterface`
is set
([#&#8203;7705](https://togithub.com/typescript-eslint/typescript-eslint/issues/7705))
([155aa1f](155aa1f533))
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive with
computed member access and branded key type
([#&#8203;7706](https://togithub.com/typescript-eslint/typescript-eslint/issues/7706))
([f151b26](f151b26d21))
- **eslint-plugin:** \[switch-exhaustiveness-check] enum members with
new line or single quotes are not being fixed correctly
([#&#8203;7806](https://togithub.com/typescript-eslint/typescript-eslint/issues/7806))
([a034d0a](a034d0a385)),
closes
[#&#8203;7768](https://togithub.com/typescript-eslint/typescript-eslint/issues/7768)

##### Features

- \[member-ordering] add accessor support for member-ordering
([#&#8203;7927](https://togithub.com/typescript-eslint/typescript-eslint/issues/7927))
([3c8312d](3c8312d1e1))
- **eslint-plugin:** \[switch-exhaustiveness-check] add
requireDefaultForNonUnion option
([#&#8203;7880](https://togithub.com/typescript-eslint/typescript-eslint/issues/7880))
([4cfcd45](4cfcd451ef))

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v6.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6130-2023-11-27)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

###
[`v6.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6120-2023-11-20)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>vuejs/core (@&#8203;vue/compiler-sfc)</summary>

###
[`v3.3.9`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#339-2023-11-25)

[Compare
Source](https://togithub.com/vuejs/core/compare/v3.3.8...v3.3.9)

##### Bug Fixes

- **compiler-core:** avoid rewriting scope variables in inline for loops
([#&#8203;7245](https://togithub.com/vuejs/core/issues/7245))
([a2d810e](a2d810eb40)),
closes [#&#8203;7238](https://togithub.com/vuejs/core/issues/7238)
- **compiler-core:** fix `resolveParserPlugins` decorators check
([#&#8203;9566](https://togithub.com/vuejs/core/issues/9566))
([9d0eba9](9d0eba916f)),
closes [#&#8203;9560](https://togithub.com/vuejs/core/issues/9560)
- **compiler-sfc:** consistently escape type-only prop names
([#&#8203;8654](https://togithub.com/vuejs/core/issues/8654))
([3e08d24](3e08d246df)),
closes [#&#8203;8635](https://togithub.com/vuejs/core/issues/8635)
[#&#8203;8910](https://togithub.com/vuejs/core/issues/8910)
[vitejs/vite-plugin-vue#184](https://togithub.com/vitejs/vite-plugin-vue/issues/184)
- **compiler-sfc:** malformed filename on windows using
path.posix.join()
([#&#8203;9478](https://togithub.com/vuejs/core/issues/9478))
([f18a174](f18a174979)),
closes [#&#8203;8671](https://togithub.com/vuejs/core/issues/8671)
[#&#8203;9583](https://togithub.com/vuejs/core/issues/9583)
[#&#8203;9446](https://togithub.com/vuejs/core/issues/9446)
[#&#8203;9473](https://togithub.com/vuejs/core/issues/9473)
- **compiler-sfc:** support `:is` and `:where` selector in scoped css
rewrite ([#&#8203;8929](https://togithub.com/vuejs/core/issues/8929))
([3227e50](3227e50b32))
- **compiler-sfc:** support resolve extends interface for defineEmits
([#&#8203;8470](https://togithub.com/vuejs/core/issues/8470))
([9e1b74b](9e1b74bcd5)),
closes [#&#8203;8465](https://togithub.com/vuejs/core/issues/8465)
- **hmr/transition:** fix kept-alive component inside transition
disappearing after hmr
([#&#8203;7126](https://togithub.com/vuejs/core/issues/7126))
([d11e978](d11e978fc9)),
closes [#&#8203;7121](https://togithub.com/vuejs/core/issues/7121)
- **hydration:** force hydration for v-bind with .prop modifier
([364f319](364f319d21)),
closes [#&#8203;7490](https://togithub.com/vuejs/core/issues/7490)
- **hydration:** properly hydrate indeterminate prop
([34b5a5d](34b5a5da4a)),
closes [#&#8203;7476](https://togithub.com/vuejs/core/issues/7476)
- **reactivity:** clear method on readonly collections should return
undefined ([#&#8203;7316](https://togithub.com/vuejs/core/issues/7316))
([657476d](657476dcdb))
- **reactivity:** onCleanup also needs to be cleaned
([#&#8203;8655](https://togithub.com/vuejs/core/issues/8655))
([73fd810](73fd810eeb)),
closes [#&#8203;5151](https://togithub.com/vuejs/core/issues/5151)
[#&#8203;7695](https://togithub.com/vuejs/core/issues/7695)
- **ssr:** hydration `__vnode` missing for devtools
([#&#8203;9328](https://togithub.com/vuejs/core/issues/9328))
([5156ac5](5156ac5b38))
- **types:** allow falsy value types in `StyleValue`
([#&#8203;7954](https://togithub.com/vuejs/core/issues/7954))
([17aa92b](17aa92b79b)),
closes [#&#8203;7955](https://togithub.com/vuejs/core/issues/7955)
- **types:** defineCustomElement using defineComponent return type with
emits ([#&#8203;7937](https://togithub.com/vuejs/core/issues/7937))
([5d932a8](5d932a8e6d)),
closes [#&#8203;7782](https://togithub.com/vuejs/core/issues/7782)
- **types:** fix `unref` and `toValue` when input union type contains
ComputedRef
([#&#8203;8748](https://togithub.com/vuejs/core/issues/8748))
([176d476](176d476712)),
closes [#&#8203;8747](https://togithub.com/vuejs/core/issues/8747)
[#&#8203;8857](https://togithub.com/vuejs/core/issues/8857)
- **types:** fix instance type when props type is incompatible with
setup returned type
([#&#8203;7338](https://togithub.com/vuejs/core/issues/7338))
([0e1e8f9](0e1e8f919e)),
closes [#&#8203;5885](https://togithub.com/vuejs/core/issues/5885)
- **types:** fix shallowRef return type with union value type
([#&#8203;7853](https://togithub.com/vuejs/core/issues/7853))
([7c44800](7c448000b0)),
closes [#&#8203;7852](https://togithub.com/vuejs/core/issues/7852)
- **types:** more precise types for class bindings
([#&#8203;8012](https://togithub.com/vuejs/core/issues/8012))
([46e3374](46e33744c8))
- **types:** remove optional properties from defineProps return type
([#&#8203;6421](https://togithub.com/vuejs/core/issues/6421))
([94c049d](94c049d930)),
closes [#&#8203;6420](https://togithub.com/vuejs/core/issues/6420)
- **types:** return type of withDefaults should be readonly
([#&#8203;8601](https://togithub.com/vuejs/core/issues/8601))
([f15debc](f15debc01a))
- **types:** revert class type restrictions
([5d077c8](5d077c8754)),
closes [#&#8203;8012](https://togithub.com/vuejs/core/issues/8012)
- **types:** update jsx type definitions
([#&#8203;8607](https://togithub.com/vuejs/core/issues/8607))
([58e2a94](58e2a94871))
- **types:** widen ClassValue type
([2424013](2424013059))
- **v-model:** avoid overwriting number input with same value
([#&#8203;7004](https://togithub.com/vuejs/core/issues/7004))
([40f4b77](40f4b77bb5)),
closes [#&#8203;7003](https://togithub.com/vuejs/core/issues/7003)
- **v-model:** unnecessary value binding error should apply to dynamic
instead of static binding
([2859b65](2859b653c9)),
closes [#&#8203;3596](https://togithub.com/vuejs/core/issues/3596)

</details>

<details>
<summary>omnidan/node-emoji (node-emoji)</summary>

###
[`v2.1.3`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#213-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.2...v2.1.3)

##### Bug Fixes

- pin skin-tone to ^2.0.0 and add renovate.json ignoreDeps
([dcd6c43](dcd6c43f26))

###
[`v2.1.2`](https://togithub.com/omnidan/node-emoji/blob/HEAD/CHANGELOG.md#212-2023-11-20)

[Compare
Source](https://togithub.com/omnidan/node-emoji/compare/v2.1.1...v2.1.2)

##### Bug Fixes

- add back CJS support, with a test
([e2856d9](e2856d980d))

</details>

<details>
<summary>Microsoft/TypeScript (typescript)</summary>

###
[`v5.3.2`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.3.2):
TypeScript 5.3

[Compare
Source](https://togithub.com/Microsoft/TypeScript/compare/v5.2.2...v5.3.2)

For release notes, check out the [release
announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/).

For the complete list of fixed issues, check out the

- [fixed issues query for Typescript 5.3.0
(Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+).
- [fixed issues query for Typescript 5.3.1
(RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+).
- [fixed issues query for Typescript 5.3.2
(Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.2%22+is%3Aclosed+).

Downloads are available on:

- [NuGet
package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</details>

<details>
<summary>vitejs/vite (vite)</summary>

###
[`v5.0.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small502-2023-11-21-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.0.1...v5.0.2)

- fix: make htmlFallback more permissive
([#&#8203;15059](https://togithub.com/vitejs/vite/issues/15059))
([6fcceeb](https://togithub.com/vitejs/vite/commit/6fcceeb)), closes
[#&#8203;15059](https://togithub.com/vitejs/vite/issues/15059)

###
[`v5.0.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small501-2023-11-21-small)

- test: avoid read check when running as root
([#&#8203;14884](https://togithub.com/vitejs/vite/issues/14884))
([1d9516c](https://togithub.com/vitejs/vite/commit/1d9516c)), closes
[#&#8203;14884](https://togithub.com/vitejs/vite/issues/14884)
- perf(hmr): skip traversed modules when checking circular imports
([#&#8203;15034](https://togithub.com/vitejs/vite/issues/15034))
([41e437f](https://togithub.com/vitejs/vite/commit/41e437f)), closes
[#&#8203;15034](https://togithub.com/vitejs/vite/issues/15034)
- fix: run htmlFallbackMiddleware for no accept header requests
([#&#8203;15025](https://togithub.com/vitejs/vite/issues/15025))
([b93dfe3](https://togithub.com/vitejs/vite/commit/b93dfe3)), closes
[#&#8203;15025](https://togithub.com/vitejs/vite/issues/15025)
- fix: update type CSSModulesOptions interface
([#&#8203;14987](https://togithub.com/vitejs/vite/issues/14987))
([d0b2153](https://togithub.com/vitejs/vite/commit/d0b2153)), closes
[#&#8203;14987](https://togithub.com/vitejs/vite/issues/14987)
- fix(legacy): error in build with --watch and manifest enabled
([#&#8203;14450](https://togithub.com/vitejs/vite/issues/14450))
([b9ee620](https://togithub.com/vitejs/vite/commit/b9ee620)), closes
[#&#8203;14450](https://togithub.com/vitejs/vite/issues/14450)
- chore: add comment about crossorigin attribute for script module
([#&#8203;15040](https://togithub.com/vitejs/vite/issues/15040))
([03c371e](https://togithub.com/vitejs/vite/commit/03c371e)), closes
[#&#8203;15040](https://togithub.com/vitejs/vite/issues/15040)
- chore: cleanup v5 beta changelog
([#&#8203;14694](https://togithub.com/vitejs/vite/issues/14694))
([531d3cb](https://togithub.com/vitejs/vite/commit/531d3cb)), closes
[#&#8203;14694](https://togithub.com/vitejs/vite/issues/14694)

</details>

<details>
<summary>antfu/vite-plugin-windicss (vite-plugin-windicss)</summary>

###
[`v1.9.2`](https://togithub.com/windicss/vite-plugin-windicss/releases/tag/v1.9.2)

[Compare
Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

#####    🚀 Features

- Search for \*.config.mts as config file  -  by
[@&#8203;webstrand](https://togithub.com/webstrand) in
[https://github.com/windicss/vite-plugin-windicss/issues/317](https://togithub.com/windicss/vite-plugin-windicss/issues/317)
[<samp>(71b6d)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/71b6dd6)

#####    🐞 Bug Fixes

- **vite-plugin-windicss**: PeerDependencies with better compatibility
 -  by [@&#8203;markthree](https://togithub.com/markthree) in
[https://github.com/windicss/vite-plugin-windicss/issues/325](https://togithub.com/windicss/vite-plugin-windicss/issues/325)
[<samp>(1d537)</samp>](https://togithub.com/windicss/vite-plugin-windicss/commit/1d5376e)

#####     [View changes on
GitHub](https://togithub.com/windicss/vite-plugin-windicss/compare/v1.9.1...v1.9.2)

</details>

<details>
<summary>intlify/vue-i18n-next (vue-i18n)</summary>

###
[`v9.8.0`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v980-2023-11-28T010045Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.8.0)

<!-- Release notes generated using configuration in .github/release.yml
at v9.8.0 -->

#### What's Changed

##### 🌟 Features

- feat: more strictly return type locale detector by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1640](https://togithub.com/intlify/vue-i18n-next/pull/1640)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.1...v9.8.0

###
[`v9.7.1`](https://togithub.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v971-2023-11-22T143624Z)

[Compare
Source](https://togithub.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1)

This changelog is generated by [GitHub
Releases](https://togithub.com/intlify/vue-i18n-next/releases/tag/v9.7.1)

<!-- Release notes generated using configuration in .github/release.yml
at v9.7.1 -->

#### What's Changed

#####  Improvement Features

- fix: tweak `@intlify/core` conditional exports by
[@&#8203;kazupon](https://togithub.com/kazupon) in
[https://github.com/intlify/vue-i18n-next/pull/1639](https://togithub.com/intlify/vue-i18n-next/pull/1639)

**Full Changelog**:
https://github.com/intlify/vue-i18n-next/compare/v9.7.0...v9.7.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
2023-11-28 05:09:09 +01:00
renovate[bot] 8c4bef2847
Update docker.io/woodpeckerci/plugin-docker-buildx Docker tag to v2.2.1 (#2883)
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/woodpeckerci/plugin-docker-buildx](https://codeberg.org/woodpecker-plugins/docker-buildx.git)
| patch | `2.2.0` -> `2.2.1` |

---

### Release Notes

<details>
<summary>woodpecker-plugins/docker-buildx
(docker.io/woodpeckerci/plugin-docker-buildx)</summary>

###
[`v2.2.1`](https://codeberg.org/woodpecker-plugins/docker-buildx/releases/tag/v2.2.1)

[Compare
Source](https://codeberg.org/woodpecker-plugins/docker-buildx/compare/2.2.0...v2.2.1)

##### Fixes

- Add `git` to image
([#&#8203;109](https://togithub.com/woodpecker-plugins/docker-buildx/issues/109))
- Fix separator for tags_file in docs
([#&#8203;107](https://togithub.com/woodpecker-plugins/docker-buildx/issues/107))

##### Dependencies

- chore(deps): update docker/buildx-bin docker tag to v0.12.0
([#&#8203;111](https://togithub.com/woodpecker-plugins/docker-buildx/issues/111))
- chore(docker): update docker:24.0-dind docker digest to
[`1dfc375`](https://togithub.com/woodpecker-plugins/docker-buildx/commit/1dfc375)
([#&#8203;106](https://togithub.com/woodpecker-plugins/docker-buildx/issues/106))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge -
"before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-28 04:58:47 +01:00
Micash c58ebdc0d5
Improve code blocks in docs: fix dockerfile codeblock language (#2880) 2023-11-26 21:13:13 +01:00
qwerty287 849b02a433
Fix pipeline-related environment (#2876)
closes https://github.com/woodpecker-ci/woodpecker/issues/2672

pipeline model must be persisted first to have some fields like `Number`
and `ID`
2023-11-26 19:59:36 +01:00
Micash b31b3e9a86
Improve code blocks in docu (#2879) 2023-11-26 19:31:05 +01:00
qwerty287 26b77ed677
Add a blog post (#2877) 2023-11-26 17:19:29 +02:00
Dominic 18cef15da4
Add documentation on Kubernetes securityContext (#2822)
The new docs explain how to use the recently introduced kubernetes
backend option to set the security context for pipeline steps.

See #2550

---------

Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2023-11-26 08:50:12 +01:00
Thomas Anderson 3adb98b287
Simple security context options (Kubernetes) (#2550) 2023-11-26 08:46:06 +01:00
qwerty287 ffb3bd806c
Fix version check partially (#2871)
ref #2748 

- fix link to releases
- fix jq syntax
- support rc versions (separate json field)

---------

Co-authored-by: Anbraten <anton@ju60.de>
2023-11-26 08:02:02 +01:00
Michalis Zampetakis 981384b79a
Change PullRequest Index to ForgeRemoteID / string type (#2823)
Co-authored-by: Patrick Schratz <patrick.schratz@gmail.com>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
Co-authored-by: Anbraten <anton@ju60.de>
2023-11-26 00:52:52 +01:00
qwerty287 418acc5c98
Add default page to categories (#2869) 2023-11-25 14:01:42 +01:00
qwerty287 111a0b4ea5
Fix unregistering agents used with agent tokens (#2870)
from discussion on matrix

I'm not sure if this is the best way to fix this, but I don't really see
a different way.
2023-11-24 18:19:38 +01:00
Micash a6d651175d
Docs: Make Github docs same format as other forges (#2866)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2023-11-24 16:21:47 +01:00
woodpecker-bot 0fc428aa8e
🎉 Release 2.0.0 (#2805)
This PR was opened by the
[ready-release-go](https://github.com/woodpecker-ci/plugin-ready-release-go)
plugin. When you're ready to do a release, you can merge this
pull-request and a new release with version `2.0.0` will be created
automatically. If you're not ready to do a release yet, that's fine,
whenever you add more changes to `main` this pull-request will be
updated.

## Options

- [ ] Mark this version as a release candidate

##
[2.0.0](https://github.com/woodpecker-ci/woodpecker/releases/tag/2.0.0)
- 2023-11-23

### 💥 Breaking changes

- Rename `link` to `url`
[[#2812](https://github.com/woodpecker-ci/woodpecker/pull/2812)]
- Revert to singular CLI args
[[#2820](https://github.com/woodpecker-ci/woodpecker/pull/2820)]
- Use int64 for IDs in woodpecker client lib
[[#2703](https://github.com/woodpecker-ci/woodpecker/pull/2703)]
- Woodpecker-go: Use Feed instead of Activity
[[#2690](https://github.com/woodpecker-ci/woodpecker/pull/2690)]
- Do not sanitzie secrets with 3 or less chars
[[#2680](https://github.com/woodpecker-ci/woodpecker/pull/2680)]
- fix(deps): update docker to v24
[[#2675](https://github.com/woodpecker-ci/woodpecker/pull/2675)]
- Remove `WOODPECKER_DOCS` config
[[#2647](https://github.com/woodpecker-ci/woodpecker/pull/2647)]
- Remove plugin-only option from secrets
[[#2213](https://github.com/woodpecker-ci/woodpecker/pull/2213)]
- Remove deprecated API paths
[[#2639](https://github.com/woodpecker-ci/woodpecker/pull/2639)]
- Remove SSH backend
[[#2635](https://github.com/woodpecker-ci/woodpecker/pull/2635)]
- Remove deprecated `build` command
[[#2602](https://github.com/woodpecker-ci/woodpecker/pull/2602)]
- Deprecate "platform" filter in favour of "labels"
[[#2181](https://github.com/woodpecker-ci/woodpecker/pull/2181)]
- Remove useless "sync" option from RepoListOpts from the client lib
[[#2090](https://github.com/woodpecker-ci/woodpecker/pull/2090)]
- Drop deprecated built-in environment variables
[[#2048](https://github.com/woodpecker-ci/woodpecker/pull/2048)]

### 🔒 Security

- Never log tokens
[[#2466](https://github.com/woodpecker-ci/woodpecker/pull/2466)]
- Check permissions on repo lookup
[[#2357](https://github.com/woodpecker-ci/woodpecker/pull/2357)]
- Change token logging to trace level
[[#2247](https://github.com/woodpecker-ci/woodpecker/pull/2247)]
- Validate webhook before changing any data
[[#2221](https://github.com/woodpecker-ci/woodpecker/pull/2221)]

###  Features

- Add version and update notes
[[#2722](https://github.com/woodpecker-ci/woodpecker/pull/2722)]
- Add repos list for admins
[[#2347](https://github.com/woodpecker-ci/woodpecker/pull/2347)]
- Add org list
[[#2338](https://github.com/woodpecker-ci/woodpecker/pull/2338)]
- Add option to configure tolerations in kubernetes backend
[[#2249](https://github.com/woodpecker-ci/woodpecker/pull/2249)]
- Support user secrets
[[#2126](https://github.com/woodpecker-ci/woodpecker/pull/2126)]
- Add opt save global log output to file
[[#2115](https://github.com/woodpecker-ci/woodpecker/pull/2115)]
- Support bitbucket Dir() and support multi-workflows
[[#2045](https://github.com/woodpecker-ci/woodpecker/pull/2045)]
- Add ping command to server to allow container healthchecks
[[#2030](https://github.com/woodpecker-ci/woodpecker/pull/2030)]

### 📚 Documentation

- Add 2.0.0 post
[[#2864](https://github.com/woodpecker-ci/woodpecker/pull/2864)]
- Add extend env plugin
[[#2847](https://github.com/woodpecker-ci/woodpecker/pull/2847)]
- mark v1.0.x as unmaintained
[[#2818](https://github.com/woodpecker-ci/woodpecker/pull/2818)]
- Update docs npm deps non-major
[[#2799](https://github.com/woodpecker-ci/woodpecker/pull/2799)]
- Add docs about Gitea on same host and update docker-compose example
[[#2752](https://github.com/woodpecker-ci/woodpecker/pull/2752)]
- Update docusaurus plugin
[[#2804](https://github.com/woodpecker-ci/woodpecker/pull/2804)]
- Mark kubernetes backend as fully supported
[[#2756](https://github.com/woodpecker-ci/woodpecker/pull/2756)]
- Update docusaurus to v3
[[#2732](https://github.com/woodpecker-ci/woodpecker/pull/2732)]
- Fix the wrong link to the cron job document
[[#2740](https://github.com/woodpecker-ci/woodpecker/pull/2740)]
- Improve secrets documentation
[[#2707](https://github.com/woodpecker-ci/woodpecker/pull/2707)]
- Add woodpecker-lint tool
[[#2648](https://github.com/woodpecker-ci/woodpecker/pull/2648)]
- Add autoscaler docs
[[#2631](https://github.com/woodpecker-ci/woodpecker/pull/2631)]
- Rework setup docs
[[#2630](https://github.com/woodpecker-ci/woodpecker/pull/2630)]
- doc: improve prometheus docs
[[#2617](https://github.com/woodpecker-ci/woodpecker/pull/2617)]
- docs add nixos install instructions
[[#2616](https://github.com/woodpecker-ci/woodpecker/pull/2616)]
- Add prettier plugin
[[#2621](https://github.com/woodpecker-ci/woodpecker/pull/2621)]
- [doc] improve documentation WOODPECKER_SESSION_EXPIRES
[[#2603](https://github.com/woodpecker-ci/woodpecker/pull/2603)]
- Update documentation WRT to recent `$platform` changes
[[#2531](https://github.com/woodpecker-ci/woodpecker/pull/2531)]
- Add plugin "GitHub release"
[[#2592](https://github.com/woodpecker-ci/woodpecker/pull/2592)]
- Cleanup docs
[[#2478](https://github.com/woodpecker-ci/woodpecker/pull/2478)]
- Add plugin "Release helper"
[[#2584](https://github.com/woodpecker-ci/woodpecker/pull/2584)]
- Add plugin "Gitea Create Pull Request" to plugin index
[[#2581](https://github.com/woodpecker-ci/woodpecker/pull/2581)]
- Adjust github scopes and clarify documentation.
[[#2578](https://github.com/woodpecker-ci/woodpecker/pull/2578)]
- Remove redundant definition of webhook form docs
[[#2561](https://github.com/woodpecker-ci/woodpecker/pull/2561)]
- Add notes about CRI-O specific config
[[#2546](https://github.com/woodpecker-ci/woodpecker/pull/2546)]
- Fix incorrect yaml syntax for `ref` in docs
[[#2518](https://github.com/woodpecker-ci/woodpecker/pull/2518)]
- Local image documentation
[[#2521](https://github.com/woodpecker-ci/woodpecker/pull/2521)]
- Adds bitbucket tag support in docs
[[#2536](https://github.com/woodpecker-ci/woodpecker/pull/2536)]
- Fix docs duplicate WOODPECKER_HOST assignment
[[#2501](https://github.com/woodpecker-ci/woodpecker/pull/2501)]
- Update github auth install
[[#2499](https://github.com/woodpecker-ci/woodpecker/pull/2499)]
- Update GH app installation instructions
[[#2472](https://github.com/woodpecker-ci/woodpecker/pull/2472)]
- Add videos
[[#2465](https://github.com/woodpecker-ci/woodpecker/pull/2465)]
- docs: missing info for runs_on
[[#2457](https://github.com/woodpecker-ci/woodpecker/pull/2457)]
- Add hint about alternative pipeline skip syntax
[[#2443](https://github.com/woodpecker-ci/woodpecker/pull/2443)]
- Fix typo in GitLab docs
[[#2376](https://github.com/woodpecker-ci/woodpecker/pull/2376)]
- clarify setup with gitlab with RFC1918 nets and non standard TLDs
[[#2363](https://github.com/woodpecker-ci/woodpecker/pull/2363)]
- Clarify env var `CI` in docs
[[#2349](https://github.com/woodpecker-ci/woodpecker/pull/2349)]
- docs: yaml cheatsheet for advanced syntax
[[#2329](https://github.com/woodpecker-ci/woodpecker/pull/2329)]
- Improve explanation for globs in when:path
[[#2252](https://github.com/woodpecker-ci/woodpecker/pull/2252)]
- Fix usage description for backend-http-proxy flag
[[#2250](https://github.com/woodpecker-ci/woodpecker/pull/2250)]
- Restructure k8s documentation
[[#2193](https://github.com/woodpecker-ci/woodpecker/pull/2193)]
- Update list of "projects using Woodpecker"
[[#2196](https://github.com/woodpecker-ci/woodpecker/pull/2196)]
- Update 92-awesome.md
[[#2195](https://github.com/woodpecker-ci/woodpecker/pull/2195)]
- Better blog title/desc
[[#2182](https://github.com/woodpecker-ci/woodpecker/pull/2182)]
- Fix version in FAQ
[[#2101](https://github.com/woodpecker-ci/woodpecker/pull/2101)]
- Add blog posts/tutorials
[[#2095](https://github.com/woodpecker-ci/woodpecker/pull/2095)]
- update version docs about versioning
[[#2086](https://github.com/woodpecker-ci/woodpecker/pull/2086)]
- Fix client example
[[#2085](https://github.com/woodpecker-ci/woodpecker/pull/2085)]
- Update docs deps to address cves
[[#2080](https://github.com/woodpecker-ci/woodpecker/pull/2080)]
- fix: global registry docs
[[#2070](https://github.com/woodpecker-ci/woodpecker/pull/2070)]
- Improve bitbucket docs
[[#2066](https://github.com/woodpecker-ci/woodpecker/pull/2066)]
- update docs about versioning
[[#2043](https://github.com/woodpecker-ci/woodpecker/pull/2043)]
- Set v1.0 documents as default and mark v0.15 as unmaintained
[[#2034](https://github.com/woodpecker-ci/woodpecker/pull/2034)]

### 📈 Enhancement

- Cleanup plugins index
[[#2856](https://github.com/woodpecker-ci/woodpecker/pull/2856)]
- Bump default clone image version to 2.4.0
[[#2852](https://github.com/woodpecker-ci/woodpecker/pull/2852)]
- Signal to clients the hook and event routes where removed
[[#2826](https://github.com/woodpecker-ci/woodpecker/pull/2826)]
- Replace `interface{}` with `any`
[[#2807](https://github.com/woodpecker-ci/woodpecker/pull/2807)]
- Fix repo owner filter
[[#2808](https://github.com/woodpecker-ci/woodpecker/pull/2808)]
- Sort agents list by ID
[[#2795](https://github.com/woodpecker-ci/woodpecker/pull/2795)]
- Fix css loading order in head
[[#2785](https://github.com/woodpecker-ci/woodpecker/pull/2785)]
- Fix error color contrast in dark theme
[[#2778](https://github.com/woodpecker-ci/woodpecker/pull/2778)]
- Replace linter icons to match theme
[[#2765](https://github.com/woodpecker-ci/woodpecker/pull/2765)]
- Switch to go vanity urls
[[#2706](https://github.com/woodpecker-ci/woodpecker/pull/2706)]
- Add workflow version
[[#2476](https://github.com/woodpecker-ci/woodpecker/pull/2476)]
- UI enhancements/fixes
[[#2754](https://github.com/woodpecker-ci/woodpecker/pull/2754)]
- Fail on missing secrets
[[#2749](https://github.com/woodpecker-ci/woodpecker/pull/2749)]
- Add deprecation warnings
[[#2725](https://github.com/woodpecker-ci/woodpecker/pull/2725)]
- Enhance linter and errors
[[#1572](https://github.com/woodpecker-ci/woodpecker/pull/1572)]
- Option to change temp dir for local backend
[[#2702](https://github.com/woodpecker-ci/woodpecker/pull/2702)]
- Revert breaking pipeline changes
[[#2677](https://github.com/woodpecker-ci/woodpecker/pull/2677)]
- Add ports into pipeline backend step model
[[#2656](https://github.com/woodpecker-ci/woodpecker/pull/2656)]
- Unregister stateless agents from server on termination
[[#2606](https://github.com/woodpecker-ci/woodpecker/pull/2606)]
- Let the backend engine report the current platform
[[#2688](https://github.com/woodpecker-ci/woodpecker/pull/2688)]
- Showing the pending pipelines on top
[[#1488](https://github.com/woodpecker-ci/woodpecker/pull/1488)]
- Print local backend command logs
[[#2678](https://github.com/woodpecker-ci/woodpecker/pull/2678)]
- Report problems with listening to ports and exit
[[#2102](https://github.com/woodpecker-ci/woodpecker/pull/2102)]
- Use path.Join for server side path generation
[[#2689](https://github.com/woodpecker-ci/woodpecker/pull/2689)]
- Refactor UI dark/bright mode
[[#2590](https://github.com/woodpecker-ci/woodpecker/pull/2590)]
- Stop steps after they are done
[[#2681](https://github.com/woodpecker-ci/woodpecker/pull/2681)]
- Fix where syntax
[[#2676](https://github.com/woodpecker-ci/woodpecker/pull/2676)]
- Add "Repair all" button
[[#2642](https://github.com/woodpecker-ci/woodpecker/pull/2642)]
- Use pagination utils
[[#2633](https://github.com/woodpecker-ci/woodpecker/pull/2633)]
- Dynamic forge request size
[[#2622](https://github.com/woodpecker-ci/woodpecker/pull/2622)]
- Update to docker 23
[[#2577](https://github.com/woodpecker-ci/woodpecker/pull/2577)]
- Refactor/simplify pubsub
[[#2554](https://github.com/woodpecker-ci/woodpecker/pull/2554)]
- Refactor pipeline parsing and forge refreshing
[[#2527](https://github.com/woodpecker-ci/woodpecker/pull/2527)]
- Fix gitlab hooks and simplify config extension
[[#2537](https://github.com/woodpecker-ci/woodpecker/pull/2537)]
- Set home variable in local backend for windows
[[#2323](https://github.com/woodpecker-ci/woodpecker/pull/2323)]
- Some cleanups about host config
[[#2490](https://github.com/woodpecker-ci/woodpecker/pull/2490)]
- Fix usage of WOODPECKER_ROOT_PATH
[[#2485](https://github.com/woodpecker-ci/woodpecker/pull/2485)]
- Some UI enhancement
[[#2468](https://github.com/woodpecker-ci/woodpecker/pull/2468)]
- Harmonize pipeline status information and add a review link to the
approval
[[#2345](https://github.com/woodpecker-ci/woodpecker/pull/2345)]
- Add Renovate
[[#2360](https://github.com/woodpecker-ci/woodpecker/pull/2360)]
- Add option to render button as link
[[#2378](https://github.com/woodpecker-ci/woodpecker/pull/2378)]
- Close sidebar on outside clicks
[[#2325](https://github.com/woodpecker-ci/woodpecker/pull/2325)]
- Add release helper
[[#1976](https://github.com/woodpecker-ci/woodpecker/pull/1976)]
- Use API error helpers and improve response codes
[[#2366](https://github.com/woodpecker-ci/woodpecker/pull/2366)]
- Import packages only once
[[#2362](https://github.com/woodpecker-ci/woodpecker/pull/2362)]
- Execute `make generate` with new versions
[[#2365](https://github.com/woodpecker-ci/woodpecker/pull/2365)]
- Only show commit title
[[#2361](https://github.com/woodpecker-ci/woodpecker/pull/2361)]
- Truncate commit message in pipeline log view header
[[#2356](https://github.com/woodpecker-ci/woodpecker/pull/2356)]
- Increase header padding again
[[#2348](https://github.com/woodpecker-ci/woodpecker/pull/2348)]
- Use full width header on pipeline view and show repo name
[[#2327](https://github.com/woodpecker-ci/woodpecker/pull/2327)]
- Use html list for changed files list
[[#2346](https://github.com/woodpecker-ci/woodpecker/pull/2346)]
- Show that repo is disabled
[[#2340](https://github.com/woodpecker-ci/woodpecker/pull/2340)]
- Add spacing to pipeline feed spinner
[[#2326](https://github.com/woodpecker-ci/woodpecker/pull/2326)]
- Autodetect host platform in Makefile
[[#2322](https://github.com/woodpecker-ci/woodpecker/pull/2322)]
- Add "plugin" support to local backend
[[#2239](https://github.com/woodpecker-ci/woodpecker/pull/2239)]
- Rename grpc pipeline to workflow
[[#2173](https://github.com/woodpecker-ci/woodpecker/pull/2173)]
- Pass netrc data to external config service request
[[#2310](https://github.com/woodpecker-ci/woodpecker/pull/2310)]
- Create settings-panel vue component and use InputFields
[[#2177](https://github.com/woodpecker-ci/woodpecker/pull/2177)]
- Use browser-native tooltips
[[#2189](https://github.com/woodpecker-ci/woodpecker/pull/2189)]
- Improve agent rpc retry logic with exponential backoff
[[#2205](https://github.com/woodpecker-ci/woodpecker/pull/2205)]
- Skip settings proxy config with WithProxy if its empty
[[#2242](https://github.com/woodpecker-ci/woodpecker/pull/2242)]
- Move hook and events-stream routes to use `/api` prefix
[[#2212](https://github.com/woodpecker-ci/woodpecker/pull/2212)]
- Add SSH clone URL env var
[[#2198](https://github.com/woodpecker-ci/woodpecker/pull/2198)]
- Small improvements to mobile interface
[[#2202](https://github.com/woodpecker-ci/woodpecker/pull/2202)]
- Switch to upstream ttlcache
[[#2187](https://github.com/woodpecker-ci/woodpecker/pull/2187)]
- Convert EqualStringSlice to generic EqualSliceValues
[[#2179](https://github.com/woodpecker-ci/woodpecker/pull/2179)]
- Pass netrc to trusted clone images
[[#2163](https://github.com/woodpecker-ci/woodpecker/pull/2163)]
- Use Vue setup directive
[[#2165](https://github.com/woodpecker-ci/woodpecker/pull/2165)]
- Release file lock on USR1 signal
[[#2151](https://github.com/woodpecker-ci/woodpecker/pull/2151)]
- Use min/max width for pipeline step list
[[#2141](https://github.com/woodpecker-ci/woodpecker/pull/2141)]
- Add header to pipeline log and always show buttons
[[#2140](https://github.com/woodpecker-ci/woodpecker/pull/2140)]
- Use fix width for pipeline step list
[[#2138](https://github.com/woodpecker-ci/woodpecker/pull/2138)]
- Make sure we dont have hidden options for backend and pipeline
compiler
[[#2123](https://github.com/woodpecker-ci/woodpecker/pull/2123)]
- Enhance local backend
[[#2017](https://github.com/woodpecker-ci/woodpecker/pull/2017)]
- Don't show badge without information
[[#2130](https://github.com/woodpecker-ci/woodpecker/pull/2130)]
- CLI repo sync: Show `forge-remote-id`
[[#2103](https://github.com/woodpecker-ci/woodpecker/pull/2103)]
- Lazy-load TimeAgo locales
[[#2094](https://github.com/woodpecker-ci/woodpecker/pull/2094)]
- Improve user settings
[[#2087](https://github.com/woodpecker-ci/woodpecker/pull/2087)]
- Allow to disable swagger
[[#2093](https://github.com/woodpecker-ci/woodpecker/pull/2093)]
- Use consistent woodpecker color scheme
[[#2003](https://github.com/woodpecker-ci/woodpecker/pull/2003)]
- Change master to main
[[#2044](https://github.com/woodpecker-ci/woodpecker/pull/2044)]
- Remove default branch fallbacks
[[#2065](https://github.com/woodpecker-ci/woodpecker/pull/2065)]
- Remove fallback check for old sqlite file location
[[#2046](https://github.com/woodpecker-ci/woodpecker/pull/2046)]
- Include the function name in generic datastore errors
[[#2041](https://github.com/woodpecker-ci/woodpecker/pull/2041)]

### 🐛 Bug Fixes

- Fix plugin URLs
[[#2850](https://github.com/woodpecker-ci/woodpecker/pull/2850)]
- Fix env vars and add UI url
[[#2811](https://github.com/woodpecker-ci/woodpecker/pull/2811)]
- Fix paths for version check
[[#2816](https://github.com/woodpecker-ci/woodpecker/pull/2816)]
- Add `privileged` schema definition
[[#2777](https://github.com/woodpecker-ci/woodpecker/pull/2777)]
- Use unique label selector for pod label for kubernetes services
[[#2723](https://github.com/woodpecker-ci/woodpecker/pull/2723)]
- Some UI fixes
[[#2698](https://github.com/woodpecker-ci/woodpecker/pull/2698)]
- Fix active tab not updating on prop change
[[#2712](https://github.com/woodpecker-ci/woodpecker/pull/2712)]
- Unique status for matrix
[[#2695](https://github.com/woodpecker-ci/woodpecker/pull/2695)]
- Fix secret image filter regex
[[#2674](https://github.com/woodpecker-ci/woodpecker/pull/2674)]
- local backend ignore errors in commands inbetween
[[#2636](https://github.com/woodpecker-ci/woodpecker/pull/2636)]
- Do not print log level on CLI
[[#2638](https://github.com/woodpecker-ci/woodpecker/pull/2638)]
- Fix error when closing logs
[[#2637](https://github.com/woodpecker-ci/woodpecker/pull/2637)]
- Fix `CI_WORKSPACE` in local backend
[[#2627](https://github.com/woodpecker-ci/woodpecker/pull/2627)]
- Some mobile UI fixes
[[#2624](https://github.com/woodpecker-ci/woodpecker/pull/2624)]
- Fix secret priority
[[#2599](https://github.com/woodpecker-ci/woodpecker/pull/2599)]
- UI cleanups and improvements
[[#2548](https://github.com/woodpecker-ci/woodpecker/pull/2548)]
- Fix PR event trigger and list for bitbucket repos
[[#2539](https://github.com/woodpecker-ci/woodpecker/pull/2539)]
- Fix ccmenu endpoint
[[#2543](https://github.com/woodpecker-ci/woodpecker/pull/2543)]
- Trim last "/" from WOODPECKER_HOST config
[[#2538](https://github.com/woodpecker-ci/woodpecker/pull/2538)]
- Use correct mime type when no content is sent
[[#2515](https://github.com/woodpecker-ci/woodpecker/pull/2515)]
- Fix bitbucket branches pagination.
[[#2509](https://github.com/woodpecker-ci/woodpecker/pull/2509)]
- fix: change config.config_data column type to longblob in mysql
[[#2434](https://github.com/woodpecker-ci/woodpecker/pull/2434)]
- Fix: change tasks.task_data column type to longblob in mysql
[[#2418](https://github.com/woodpecker-ci/woodpecker/pull/2418)]
- Do not list archived repos for all forges
[[#2374](https://github.com/woodpecker-ci/woodpecker/pull/2374)]
- fix(server/api/repo): Fix repair webhook host
[[#2372](https://github.com/woodpecker-ci/woodpecker/pull/2372)]
- Delete repos/secrets on org deletion
[[#2367](https://github.com/woodpecker-ci/woodpecker/pull/2367)]
- Fix org fetching
[[#2343](https://github.com/woodpecker-ci/woodpecker/pull/2343)]
- Show correct event in pipeline step list
[[#2334](https://github.com/woodpecker-ci/woodpecker/pull/2334)]
- Add min height to mobile pipeline view and fix overflow
[[#2335](https://github.com/woodpecker-ci/woodpecker/pull/2335)]
- Fix grid column size in pipeline log view
[[#2336](https://github.com/woodpecker-ci/woodpecker/pull/2336)]
- Fix mobile login view
[[#2332](https://github.com/woodpecker-ci/woodpecker/pull/2332)]
- Fix button loading spinner when activating repos
[[#2333](https://github.com/woodpecker-ci/woodpecker/pull/2333)]
- make WOODPECKER_MIGRATIONS_ALLOW_LONG have an actuall effect
[[#2251](https://github.com/woodpecker-ci/woodpecker/pull/2251)]
- Docker build dont ignore ci env vars
[[#2238](https://github.com/woodpecker-ci/woodpecker/pull/2238)]
- Handle parsed hooks that should be ignored
[[#2243](https://github.com/woodpecker-ci/woodpecker/pull/2243)]
- Set correct version for release branch releases
[[#2227](https://github.com/woodpecker-ci/woodpecker/pull/2227)]
- Bump default git clone plugin
[[#2215](https://github.com/woodpecker-ci/woodpecker/pull/2215)]
- Show all steps
[[#2190](https://github.com/woodpecker-ci/woodpecker/pull/2190)]
- Fix pipeline config collapsing
[[#2166](https://github.com/woodpecker-ci/woodpecker/pull/2166)]
- Fix 'add-orgs' migration
[[#2117](https://github.com/woodpecker-ci/woodpecker/pull/2117)]
- docs: Environment Variable Seems to be `DOCKER_HOST`, not
`DOCKER_SOCK`
[[#2122](https://github.com/woodpecker-ci/woodpecker/pull/2122)]
- Fix swagger response code
[[#2119](https://github.com/woodpecker-ci/woodpecker/pull/2119)]
- Forge Github Org: Use `login` instead of `name`
[[#2104](https://github.com/woodpecker-ci/woodpecker/pull/2104)]
- client.go: Fix RepoPost path
[[#2091](https://github.com/woodpecker-ci/woodpecker/pull/2091)]
- Fix alt text contrast in code boxes
[[#2089](https://github.com/woodpecker-ci/woodpecker/pull/2089)]
- Fix WOODPECKER_GRPC_VERIFY being ignored
[[#2077](https://github.com/woodpecker-ci/woodpecker/pull/2077)]
- Handle case where there is no latest pipeline for GetBadge
[[#2042](https://github.com/woodpecker-ci/woodpecker/pull/2042)]

### Misc

- Update release-helper
[[#2863](https://github.com/woodpecker-ci/woodpecker/pull/2863)]
- Add repo owner test
[[#2857](https://github.com/woodpecker-ci/woodpecker/pull/2857)]
- Update woodpeckerci/plugin-ready-release-go Docker tag to v1.0.2
[[#2853](https://github.com/woodpecker-ci/woodpecker/pull/2853)]
- Update golang (packages)
[[#2839](https://github.com/woodpecker-ci/woodpecker/pull/2839)]
- Update dependency vite to v5
[[#2836](https://github.com/woodpecker-ci/woodpecker/pull/2836)]
- Lock file maintenance
[[#2840](https://github.com/woodpecker-ci/woodpecker/pull/2840)]
- Update postgres Docker tag to v16.1
[[#2842](https://github.com/woodpecker-ci/woodpecker/pull/2842)]
- Update docker.io/golang Docker tag to v1.21.4
[[#2828](https://github.com/woodpecker-ci/woodpecker/pull/2828)]
- Update docker.io/techknowlogick/xgo Docker tag to go-1.21.4
[[#2829](https://github.com/woodpecker-ci/woodpecker/pull/2829)]
- Update golang (packages)
[[#2815](https://github.com/woodpecker-ci/woodpecker/pull/2815)]
- Update dependency marked to v10
[[#2810](https://github.com/woodpecker-ci/woodpecker/pull/2810)]
- Update release-helper
[[#2801](https://github.com/woodpecker-ci/woodpecker/pull/2801)]
- Remove go versions from .golangci.yml
[[#2775](https://github.com/woodpecker-ci/woodpecker/pull/2775)]
- [pre-commit.ci] pre-commit autoupdate
[[#2767](https://github.com/woodpecker-ci/woodpecker/pull/2767)]
- Lock file maintenance
[[#2755](https://github.com/woodpecker-ci/woodpecker/pull/2755)]
- Update golang (packages)
[[#2742](https://github.com/woodpecker-ci/woodpecker/pull/2742)]
- Update woodpeckerci/plugin-ready-release-go Docker tag to v0.7.0
[[#2728](https://github.com/woodpecker-ci/woodpecker/pull/2728)]
- Add grafana dashobard to awesome
[[#2710](https://github.com/woodpecker-ci/woodpecker/pull/2710)]
- Pin alpine versions in Dockerfile
[[#2649](https://github.com/woodpecker-ci/woodpecker/pull/2649)]
- Use full qualifyer for images
[[#2692](https://github.com/woodpecker-ci/woodpecker/pull/2692)]
- chore(deps): lock file maintenance
[[#2673](https://github.com/woodpecker-ci/woodpecker/pull/2673)]
- fix(deps): update golang (packages)
[[#2671](https://github.com/woodpecker-ci/woodpecker/pull/2671)]
- Use `pre-commit`
[[#2650](https://github.com/woodpecker-ci/woodpecker/pull/2650)]
- fix(deps): update dependency fuse.js to v7
[[#2666](https://github.com/woodpecker-ci/woodpecker/pull/2666)]
- chore(deps): update dependency @types/node to v20
[[#2664](https://github.com/woodpecker-ci/woodpecker/pull/2664)]
- chore(deps): update woodpeckerci/plugin-docker-buildx docker tag to
v2.2.0 [[#2663](https://github.com/woodpecker-ci/woodpecker/pull/2663)]
- chore(deps): update mysql docker tag to v8.2.0
[[#2662](https://github.com/woodpecker-ci/woodpecker/pull/2662)]
- Add some tests
[[#2652](https://github.com/woodpecker-ci/woodpecker/pull/2652)]
- chore(deps): update docs npm deps non-major
[[#2660](https://github.com/woodpecker-ci/woodpecker/pull/2660)]
- chore(deps): update web npm deps non-major
[[#2661](https://github.com/woodpecker-ci/woodpecker/pull/2661)]
- Fix codecov plugin version
[[#2643](https://github.com/woodpecker-ci/woodpecker/pull/2643)]
- Add prettier
[[#2600](https://github.com/woodpecker-ci/woodpecker/pull/2600)]
- Do not run docker prepare steps
[[#2626](https://github.com/woodpecker-ci/woodpecker/pull/2626)]
- Fix docker workflow and only run if needed
[[#2625](https://github.com/woodpecker-ci/woodpecker/pull/2625)]
- fix(deps): update golang (packages)
[[#2614](https://github.com/woodpecker-ci/woodpecker/pull/2614)]
- chore(deps): lock file maintenance
[[#2620](https://github.com/woodpecker-ci/woodpecker/pull/2620)]
- chore(deps): update codeberg.org/woodpecker-plugins/trivy docker tag
to v1.0.1
[[#2618](https://github.com/woodpecker-ci/woodpecker/pull/2618)]
- chore(deps): update node.js to v21
[[#2615](https://github.com/woodpecker-ci/woodpecker/pull/2615)]
- Only publish PR images when label is set
[[#2608](https://github.com/woodpecker-ci/woodpecker/pull/2608)]
- chore(deps): lock file maintenance
[[#2595](https://github.com/woodpecker-ci/woodpecker/pull/2595)]
- chore(deps): update postgres docker tag to v16
[[#2588](https://github.com/woodpecker-ci/woodpecker/pull/2588)]
- Update renovate schedule & use central config repo
[[#2597](https://github.com/woodpecker-ci/woodpecker/pull/2597)]
- chore(deps): update woodpeckerci/plugin-surge-preview docker tag to
v1.2.2 [[#2593](https://github.com/woodpecker-ci/woodpecker/pull/2593)]
- Update README badge link
[[#2596](https://github.com/woodpecker-ci/woodpecker/pull/2596)]
- fix(deps): update golang (packages) to v23.0.7+incompatible
[[#2586](https://github.com/woodpecker-ci/woodpecker/pull/2586)]
- Fix missing web dist
[[#2580](https://github.com/woodpecker-ci/woodpecker/pull/2580)]
- Run tests on `main` branch
[[#2576](https://github.com/woodpecker-ci/woodpecker/pull/2576)]
- fix(deps): update module github.com/google/go-github/v55 to v56
[[#2573](https://github.com/woodpecker-ci/woodpecker/pull/2573)]
- Add plugin "NixOS Remote Builder" to plugin index
[[#2571](https://github.com/woodpecker-ci/woodpecker/pull/2571)]
- Fix renovate
[[#2569](https://github.com/woodpecker-ci/woodpecker/pull/2569)]
- renovate: add `golang` group
[[#2567](https://github.com/woodpecker-ci/woodpecker/pull/2567)]
- chore(deps): update golang docker tag to v1.21.3
[[#2564](https://github.com/woodpecker-ci/woodpecker/pull/2564)]
- chore(deps): update techknowlogick/xgo docker tag to go-1.21.3
[[#2565](https://github.com/woodpecker-ci/woodpecker/pull/2565)]
- fix(deps): update golang deps non-major
[[#2566](https://github.com/woodpecker-ci/woodpecker/pull/2566)]
- chore(deps): update mstruebing/editorconfig-checker docker tag to
v2.7.2 [[#2563](https://github.com/woodpecker-ci/woodpecker/pull/2563)]
- Bump to mysql 8
[[#2559](https://github.com/woodpecker-ci/woodpecker/pull/2559)]
- fix(deps): update module github.com/xanzy/go-gitlab to v0.93.1
[[#2560](https://github.com/woodpecker-ci/woodpecker/pull/2560)]
- Require Go 1.21
[[#2553](https://github.com/woodpecker-ci/woodpecker/pull/2553)]
- chore(deps): update techknowlogick/xgo docker tag to go-1.21.2
[[#2523](https://github.com/woodpecker-ci/woodpecker/pull/2523)]
- Update issue config
[[#2353](https://github.com/woodpecker-ci/woodpecker/pull/2353)]
- Add test for handling pipeline error
[[#2547](https://github.com/woodpecker-ci/woodpecker/pull/2547)]
- chore(deps): update golang docker tag to v1.21.2
[[#2532](https://github.com/woodpecker-ci/woodpecker/pull/2532)]
- fix(deps): update golang.org/x/exp digest to 7918f67
[[#2535](https://github.com/woodpecker-ci/woodpecker/pull/2535)]
- fix(deps): update golang deps non-major
[[#2533](https://github.com/woodpecker-ci/woodpecker/pull/2533)]
- fix(deps): update golang.org/x/exp digest to 3e424a5
[[#2530](https://github.com/woodpecker-ci/woodpecker/pull/2530)]
- Use golangci-lint to lint zerolog
[[#2524](https://github.com/woodpecker-ci/woodpecker/pull/2524)]
- Renovate config updates
[[#2519](https://github.com/woodpecker-ci/woodpecker/pull/2519)]
- fix(deps): update module github.com/docker/distribution to
v2.8.3+incompatible
[[#2517](https://github.com/woodpecker-ci/woodpecker/pull/2517)]
- fix(deps): update module github.com/melbahja/goph to v1.4.0
[[#2513](https://github.com/woodpecker-ci/woodpecker/pull/2513)]
- fix(deps): update golang deps non-major
[[#2500](https://github.com/woodpecker-ci/woodpecker/pull/2500)]
- chore(deps): lock file maintenance
[[#2497](https://github.com/woodpecker-ci/woodpecker/pull/2497)]
- Fix broken link to 3rd party plugin library
[[#2494](https://github.com/woodpecker-ci/woodpecker/pull/2494)]
- fix(deps): update golang deps non-major
[[#2486](https://github.com/woodpecker-ci/woodpecker/pull/2486)]
- chore(deps): lock file maintenance
[[#2469](https://github.com/woodpecker-ci/woodpecker/pull/2469)]
- Add devx lable to compose file PRs
[[#2467](https://github.com/woodpecker-ci/woodpecker/pull/2467)]
- chore(deps): update postgres docker tag to v16
[[#2463](https://github.com/woodpecker-ci/woodpecker/pull/2463)]
- Update gitea sdk
[[#2464](https://github.com/woodpecker-ci/woodpecker/pull/2464)]
- fix(deps): update golang deps non-major
[[#2462](https://github.com/woodpecker-ci/woodpecker/pull/2462)]
- fix(deps): update dependency ansi_up to v6
[[#2431](https://github.com/woodpecker-ci/woodpecker/pull/2431)]
- chore(deps): update web npm deps non-major
[[#2461](https://github.com/woodpecker-ci/woodpecker/pull/2461)]
- fix(deps): update module github.com/tevino/abool to v2
[[#2460](https://github.com/woodpecker-ci/woodpecker/pull/2460)]
- fix(deps): update module github.com/google/go-github/v39 to v55
[[#2456](https://github.com/woodpecker-ci/woodpecker/pull/2456)]
- fix(deps): update module github.com/golang-jwt/jwt/v4 to v5
[[#2449](https://github.com/woodpecker-ci/woodpecker/pull/2449)]
- fix(deps): update module github.com/golang-jwt/jwt/v4 to v5
[[#2447](https://github.com/woodpecker-ci/woodpecker/pull/2447)]
- chore(deps): update node.js to v20
[[#2422](https://github.com/woodpecker-ci/woodpecker/pull/2422)]
- Add renovate package rule to apply build label
[[#2440](https://github.com/woodpecker-ci/woodpecker/pull/2440)]
- fix(deps): update dependency prism-react-renderer to v2
[[#2436](https://github.com/woodpecker-ci/woodpecker/pull/2436)]
- fix(deps): update dependency node-emoji to v2
[[#2435](https://github.com/woodpecker-ci/woodpecker/pull/2435)]
- Add renovate package rule to apply dependencies label
[[#2438](https://github.com/woodpecker-ci/woodpecker/pull/2438)]
- fix(deps): update golang deps non-major
[[#2437](https://github.com/woodpecker-ci/woodpecker/pull/2437)]
- chore(deps): update postgres docker tag to v15
[[#2423](https://github.com/woodpecker-ci/woodpecker/pull/2423)]
- fix(deps): update dependency esbuild-loader to v4
[[#2433](https://github.com/woodpecker-ci/woodpecker/pull/2433)]
- fix(deps): update dependency clsx to v2
[[#2432](https://github.com/woodpecker-ci/woodpecker/pull/2432)]
- fix(deps): update dependency @vueuse/core to v10
[[#2430](https://github.com/woodpecker-ci/woodpecker/pull/2430)]
- fix(deps): update dependency @svgr/webpack to v8
[[#2429](https://github.com/woodpecker-ci/woodpecker/pull/2429)]
- fix(deps): update dependency @kyvg/vue3-notification to v3
[[#2427](https://github.com/woodpecker-ci/woodpecker/pull/2427)]
- fix(deps): update dependency @intlify/unplugin-vue-i18n to v1
[[#2426](https://github.com/woodpecker-ci/woodpecker/pull/2426)]
- chore(deps): update typescript-eslint monorepo to v6 (major)
[[#2425](https://github.com/woodpecker-ci/woodpecker/pull/2425)]
- chore(deps): update react monorepo to v18 (major)
[[#2424](https://github.com/woodpecker-ci/woodpecker/pull/2424)]
- chore(deps): update dependency prettier to v3
[[#2420](https://github.com/woodpecker-ci/woodpecker/pull/2420)]
- chore(deps): update dependency eslint-config-prettier to v9
[[#2415](https://github.com/woodpecker-ci/woodpecker/pull/2415)]
- chore(deps): update dependency @tsconfig/docusaurus to v2
[[#2410](https://github.com/woodpecker-ci/woodpecker/pull/2410)]
- chore(deps): update dependency typescript to v5
[[#2421](https://github.com/woodpecker-ci/woodpecker/pull/2421)]
- chore(deps): update dependency concurrently to v8
[[#2414](https://github.com/woodpecker-ci/woodpecker/pull/2414)]
- Add renovate deps groups
[[#2417](https://github.com/woodpecker-ci/woodpecker/pull/2417)]
- fix(deps): update module xorm.io/xorm to v1.3.3
[[#2393](https://github.com/woodpecker-ci/woodpecker/pull/2393)]
- chore(deps): update dependency marked to v9
[[#2419](https://github.com/woodpecker-ci/woodpecker/pull/2419)]
- chore(deps): update dependency @types/marked to v5
[[#2411](https://github.com/woodpecker-ci/woodpecker/pull/2411)]
- fix(deps): update module github.com/rs/zerolog to v1.30.0
[[#2404](https://github.com/woodpecker-ci/woodpecker/pull/2404)]
- fix(deps): update module github.com/jellydator/ttlcache/v3 to v3.1.0
[[#2402](https://github.com/woodpecker-ci/woodpecker/pull/2402)]
- fix(deps): update module github.com/xanzy/go-gitlab to v0.91.1
[[#2405](https://github.com/woodpecker-ci/woodpecker/pull/2405)]
- fix(deps): update module github.com/antonmedv/expr to v1.15.1
[[#2400](https://github.com/woodpecker-ci/woodpecker/pull/2400)]
- chore(deps): update dependency axios to v1
[[#2413](https://github.com/woodpecker-ci/woodpecker/pull/2413)]
- fix(deps): update module github.com/prometheus/client_golang to
v1.16.0 [[#2403](https://github.com/woodpecker-ci/woodpecker/pull/2403)]
- fix(deps): update module github.com/urfave/cli/v2 to v2.25.7
[[#2391](https://github.com/woodpecker-ci/woodpecker/pull/2391)]
- fix(deps): update module google.golang.org/protobuf to v1.31.0
[[#2409](https://github.com/woodpecker-ci/woodpecker/pull/2409)]
- fix(deps): update kubernetes packages to v0.28.1
[[#2399](https://github.com/woodpecker-ci/woodpecker/pull/2399)]
- fix(deps): update module github.com/swaggo/swag to v1.16.2
[[#2390](https://github.com/woodpecker-ci/woodpecker/pull/2390)]
- fix(deps): update dependency @easyops-cn/docusaurus-search-local to
^0.36.0 [[#2406](https://github.com/woodpecker-ci/woodpecker/pull/2406)]
- fix(deps): update module github.com/stretchr/testify to v1.8.4
[[#2389](https://github.com/woodpecker-ci/woodpecker/pull/2389)]
- fix(deps): update module github.com/caddyserver/certmagic to v0.19.2
[[#2401](https://github.com/woodpecker-ci/woodpecker/pull/2401)]
- chore(deps): update postgres docker tag to v12.16
[[#2397](https://github.com/woodpecker-ci/woodpecker/pull/2397)]
- fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.17
[[#2387](https://github.com/woodpecker-ci/woodpecker/pull/2387)]
- fix(deps): update module github.com/google/uuid to v1.3.1
[[#2386](https://github.com/woodpecker-ci/woodpecker/pull/2386)]
- chore(deps): update dependency unplugin-vue-components to ^0.25.0
[[#2395](https://github.com/woodpecker-ci/woodpecker/pull/2395)]
- fix(deps): update dependency @intlify/unplugin-vue-i18n to ^0.13.0
[[#2398](https://github.com/woodpecker-ci/woodpecker/pull/2398)]
- chore(deps): update dependency unplugin-icons to ^0.17.0
[[#2394](https://github.com/woodpecker-ci/woodpecker/pull/2394)]
- chore(deps): update golang docker tag
[[#2396](https://github.com/woodpecker-ci/woodpecker/pull/2396)]
- fix(deps): update module github.com/moby/moby to
v20.10.25+incompatible
[[#2388](https://github.com/woodpecker-ci/woodpecker/pull/2388)]
- fix(deps): update module github.com/docker/docker to
v20.10.25+incompatible
[[#2385](https://github.com/woodpecker-ci/woodpecker/pull/2385)]
- fix(deps): update module github.com/docker/cli to
v20.10.25+incompatible
[[#2384](https://github.com/woodpecker-ci/woodpecker/pull/2384)]
- fix(deps): update module github.com/alessio/shellescape to v1.4.2
[[#2381](https://github.com/woodpecker-ci/woodpecker/pull/2381)]
- fix(deps): update golang.org/x/exp digest to 9212866
[[#2380](https://github.com/woodpecker-ci/woodpecker/pull/2380)]
- Check for correct license header
[[#2137](https://github.com/woodpecker-ci/woodpecker/pull/2137)]
- Add TestCompilerCompile
[[#2183](https://github.com/woodpecker-ci/woodpecker/pull/2183)]
- Fix `docs` workflow
[[#2128](https://github.com/woodpecker-ci/woodpecker/pull/2128)]
- Add some tests for bitbucket forge
[[#2097](https://github.com/woodpecker-ci/woodpecker/pull/2097)]
- Publish releases and branch tags to quay.io too
[[#2069](https://github.com/woodpecker-ci/woodpecker/pull/2069)]
2023-11-23 17:28:08 +01:00
qwerty287 f05c1631d2
Add 2.0.0 post (#2864)
I can't add new files to #2782 so I opened a new PR.
I tried adding all reviews from there.

---------

Co-authored-by: Anbraten <anton@ju60.de>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Patrick Schratz <patrick.schratz@gmail.com>
2023-11-23 17:21:47 +01:00
qwerty287 948b4224c7
Add 2.x docs (#2865)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Anbraten <anton@ju60.de>
2023-11-23 17:00:54 +01:00
Anbraten 72611b1796
Update release-helper (#2863) 2023-11-23 10:04:07 +01:00
qwerty287 f2071e3999
Add repo owner test (#2857)
from #2855
2023-11-23 00:57:29 +01:00
Anbraten ac009d9b0b
Fix secret creation (#2862)
closes #2821
2023-11-22 19:53:59 +01:00