[PR #1291] [MERGED] chore(deps): update all non-major dependencies #7014

Closed
opened 2026-03-01 17:15:18 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/0xJacky/nginx-ui/pull/1291
Author: @renovate[bot]
Created: 8/4/2025
Status: Merged
Merged: 8/9/2025
Merged by: @renovate[bot]

Base: devHead: renovate/all-minor-patch


📝 Commits (1)

  • f9bf55a chore(deps): update all non-major dependencies

📊 Changes

9 files changed (+716 additions, -599 deletions)

View changed files

📝 .github/workflows/build.yml (+1 -1)
📝 .github/workflows/weblate-pull.yml (+1 -1)
📝 .github/workflows/weblate-sync.yml (+1 -1)
📝 app/package.json (+8 -8)
📝 app/pnpm-lock.yaml (+657 -553)
📝 docs/package.json (+3 -3)
📝 docs/pnpm-lock.yaml (+17 -22)
📝 go.mod (+10 -10)
📝 go.sum (+18 -0)

📄 Description

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config ^5.1.0 -> ^5.2.0 age confidence devDependencies minor
@types/node (source) ^22.16.5 -> ^22.17.1 age confidence devDependencies minor
@uozi-admin/curd (source) ^4.6.0 -> ^4.7.2 age confidence dependencies minor
eslint (source) ^9.32.0 -> ^9.33.0 age confidence devDependencies minor
github.com/blevesearch/bleve/v2 v2.5.2 -> v2.5.3 age confidence require patch
github.com/casdoor/casdoor-go-sdk v1.12.0 -> v1.14.0 age confidence require minor
github.com/go-acme/lego/v4 v4.25.1 -> v4.25.2 age confidence require patch
github.com/uozi-tech/cosy v1.24.10 -> v1.25.1 age confidence require minor
go (source) 1.24.5 -> 1.24.6 age confidence golang patch
go ^1.24.5 -> ^1.24.6 age confidence uses-with patch
golang.org/x/crypto v0.40.0 -> v0.41.0 age confidence require minor
golang.org/x/net v0.42.0 -> v0.43.0 age confidence require minor
marked (source) ^16.1.1 -> ^16.1.2 age confidence dependencies patch
pnpm (source) 10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad -> 10.14.0 age confidence packageManager minor
python 3.13.5 -> 3.13.6 age confidence uses-with patch
typescript (source) 5.8.3 -> 5.9.2 age confidence devDependencies minor
unocss (source) ^66.3.3 -> ^66.4.2 age confidence dependencies minor
vite (source) 7.0.11 -> 7.1.0 age confidence devDependencies minor
vitepress (source) ^1.6.3 -> ^1.6.4 age confidence dependencies patch

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v5.2.0

Compare Source

   🚀 Features
    View changes on GitHub
uozi-tech/admin-kit (@​uozi-admin/curd)

v4.7.2

Compare Source

Patch Changes

v4.7.1

Compare Source

Patch Changes

v4.7.0

Compare Source

Minor Changes

v4.6.1

Compare Source

Patch Changes
  • 11c7b4d Thanks @​0xJacky! - fix(StdSelector): update preloadIds to use dynamic valueKey for API call
eslint/eslint (eslint)

v9.33.0

Compare Source

blevesearch/bleve (github.com/blevesearch/bleve/v2)

v2.5.3

Compare Source

Bug Fixes
Milestone
casdoor/casdoor-go-sdk (github.com/casdoor/casdoor-go-sdk)

v1.14.0

Compare Source

Features

v1.13.0

Compare Source

Features
go-acme/lego (github.com/go-acme/lego/v4)

v4.25.2

Compare Source

Changed
  • [cli,log] log when dynamic renew date not yet reached
Fixed
  • [cli] fix: remove wrong env var
  • [lib,cli] fix: enforce HTTPS to the ACME server
uozi-tech/cosy (github.com/uozi-tech/cosy)

v1.25.1

Compare Source

v1.25.0

Compare Source

golang/go (go)

v1.24.6

actions/go-versions (go)

v1.24.6: 1.24.6

Compare Source

Go 1.24.6

markedjs/marked (marked)

v16.1.2

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }
    

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.
actions/python-versions (python)

v3.13.6: 3.13.6

Compare Source

Python 3.13.6

microsoft/TypeScript (typescript)

v5.9.2

Compare Source

unocss/unocss (unocss)

v66.4.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v66.4.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v66.4.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vitejs/rolldown-vite (vite)

v7.1.0

Compare Source

Features
  • support files with more than 1000 lines by generateCodeFrame (#​20508) (e7d0b2a)
Bug Fixes
Miscellaneous Chores
  • update JSDoc of experimental.enableNativePlugin option (2008da5)
Code Refactoring
  • deprecate esbuild / optimizeDeps.esbuild options (#​355) (4dab15e)
Tests

v7.0.12

Compare Source

Features
Bug Fixes
Miscellaneous Chores
  • update rolldown-plugin-dts (2c4159e)
vuejs/vitepress (vitepress)

v1.6.4

Compare Source


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/0xJacky/nginx-ui/pull/1291 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 8/4/2025 **Status:** ✅ Merged **Merged:** 8/9/2025 **Merged by:** [@renovate[bot]](https://github.com/apps/renovate) **Base:** `dev` ← **Head:** `renovate/all-minor-patch` --- ### 📝 Commits (1) - [`f9bf55a`](https://github.com/0xJacky/nginx-ui/commit/f9bf55a5f9e8d9831c7991d4ce92936a30a7241e) chore(deps): update all non-major dependencies ### 📊 Changes **9 files changed** (+716 additions, -599 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+1 -1) 📝 `.github/workflows/weblate-pull.yml` (+1 -1) 📝 `.github/workflows/weblate-sync.yml` (+1 -1) 📝 `app/package.json` (+8 -8) 📝 `app/pnpm-lock.yaml` (+657 -553) 📝 `docs/package.json` (+3 -3) 📝 `docs/pnpm-lock.yaml` (+17 -22) 📝 `go.mod` (+10 -10) 📝 `go.sum` (+18 -0) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Confidence | Type | Update | |---|---|---|---|---|---| | [@antfu/eslint-config](https://redirect.github.com/antfu/eslint-config) | [`^5.1.0` -> `^5.2.0`](https://renovatebot.com/diffs/npm/@antfu%2feslint-config/5.1.0/5.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@antfu%2feslint-config/5.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@antfu%2feslint-config/5.1.0/5.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`^22.16.5` -> `^22.17.1`](https://renovatebot.com/diffs/npm/@types%2fnode/22.16.5/22.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.16.5/22.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | [@uozi-admin/curd](https://redirect.github.com/uozi-tech/admin-kit) ([source](https://redirect.github.com/uozi-tech/admin-kit/tree/HEAD/packages/curd)) | [`^4.6.0` -> `^4.7.2`](https://renovatebot.com/diffs/npm/@uozi-admin%2fcurd/4.6.0/4.7.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@uozi-admin%2fcurd/4.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@uozi-admin%2fcurd/4.6.0/4.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | | [eslint](https://eslint.org) ([source](https://redirect.github.com/eslint/eslint)) | [`^9.32.0` -> `^9.33.0`](https://renovatebot.com/diffs/npm/eslint/9.32.0/9.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/9.32.0/9.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | [github.com/blevesearch/bleve/v2](https://redirect.github.com/blevesearch/bleve) | `v2.5.2` -> `v2.5.3` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fblevesearch%2fbleve%2fv2/v2.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fblevesearch%2fbleve%2fv2/v2.5.2/v2.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/casdoor/casdoor-go-sdk](https://redirect.github.com/casdoor/casdoor-go-sdk) | `v1.12.0` -> `v1.14.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcasdoor%2fcasdoor-go-sdk/v1.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcasdoor%2fcasdoor-go-sdk/v1.12.0/v1.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/go-acme/lego/v4](https://redirect.github.com/go-acme/lego) | `v4.25.1` -> `v4.25.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-acme%2flego%2fv4/v4.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-acme%2flego%2fv4/v4.25.1/v4.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/uozi-tech/cosy](https://redirect.github.com/uozi-tech/cosy) | `v1.24.10` -> `v1.25.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fuozi-tech%2fcosy/v1.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fuozi-tech%2fcosy/v1.24.10/v1.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [go](https://go.dev/) ([source](https://redirect.github.com/golang/go)) | `1.24.5` -> `1.24.6` | [![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.24.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.24.5/1.24.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | golang | patch | | [go](https://redirect.github.com/actions/go-versions) | `^1.24.5` -> `^1.24.6` | [![age](https://developer.mend.io/api/mc/badges/age/github-releases/actions%2fgo-versions/1.24.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/actions%2fgo-versions/1.24.5/1.24.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | uses-with | patch | | golang.org/x/crypto | `v0.40.0` -> `v0.41.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fcrypto/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fcrypto/v0.40.0/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | golang.org/x/net | `v0.42.0` -> `v0.43.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.43.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.42.0/v0.43.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [marked](https://marked.js.org) ([source](https://redirect.github.com/markedjs/marked)) | [`^16.1.1` -> `^16.1.2`](https://renovatebot.com/diffs/npm/marked/16.1.1/16.1.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/marked/16.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/marked/16.1.1/16.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | [pnpm](https://pnpm.io) ([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm)) | [`10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad` -> `10.14.0`](https://renovatebot.com/diffs/npm/pnpm/10.13.1/10.14.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/10.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/10.13.1/10.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | packageManager | minor | | [python](https://redirect.github.com/actions/python-versions) | `3.13.5` -> `3.13.6` | [![age](https://developer.mend.io/api/mc/badges/age/github-releases/actions%2fpython-versions/3.13.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/actions%2fpython-versions/3.13.5/3.13.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | uses-with | patch | | [typescript](https://www.typescriptlang.org/) ([source](https://redirect.github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`](https://renovatebot.com/diffs/npm/typescript/5.8.3/5.9.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.8.3/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | [unocss](https://unocss.dev) ([source](https://redirect.github.com/unocss/unocss/tree/HEAD/packages-presets/unocss)) | [`^66.3.3` -> `^66.4.2`](https://renovatebot.com/diffs/npm/unocss/66.3.3/66.4.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/unocss/66.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/unocss/66.3.3/66.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | | [vite](https://vite.dev) ([source](https://redirect.github.com/vitejs/rolldown-vite/tree/HEAD/packages/vite)) | [`7.0.11` -> `7.1.0`](https://renovatebot.com/diffs/npm/vite/7.0.11/7.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/rolldown-vite/7.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/rolldown-vite/7.0.11/7.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | [vitepress](https://vitepress.dev/) ([source](https://redirect.github.com/vuejs/vitepress)) | [`^1.6.3` -> `^1.6.4`](https://renovatebot.com/diffs/npm/vitepress/1.6.3/1.6.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vitepress/1.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitepress/1.6.3/1.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | --- > [!WARNING] > Some dependencies could not be looked up. Check the warning logs for more information. --- ### Release Notes <details> <summary>antfu/eslint-config (@&#8203;antfu/eslint-config)</summary> ### [`v5.2.0`](https://redirect.github.com/antfu/eslint-config/releases/tag/v5.2.0) [Compare Source](https://redirect.github.com/antfu/eslint-config/compare/v5.1.0...v5.2.0) #####    🚀 Features - Update deps  -  by [@&#8203;antfu](https://redirect.github.com/antfu) [<samp>(ca1b4)</samp>](https://redirect.github.com/antfu/eslint-config/commit/ca1b4c9) #####     [View changes on GitHub](https://redirect.github.com/antfu/eslint-config/compare/v5.1.0...v5.2.0) </details> <details> <summary>uozi-tech/admin-kit (@&#8203;uozi-admin/curd)</summary> ### [`v4.7.2`](https://redirect.github.com/uozi-tech/admin-kit/blob/HEAD/packages/curd/CHANGELOG.md#472) [Compare Source](https://redirect.github.com/uozi-tech/admin-kit/compare/@uozi-admin/curd@4.7.1...@uozi-admin/curd@4.7.2) ##### Patch Changes - [`01790b9`](https://redirect.github.com/uozi-tech/admin-kit/commit/01790b95f4e561f68192c6a7503efa46f1bea3f1) Thanks [@&#8203;akinoccc](https://redirect.github.com/akinoccc)! - fix(curd): \[form] disable linkage on search mode ### [`v4.7.1`](https://redirect.github.com/uozi-tech/admin-kit/blob/HEAD/packages/curd/CHANGELOG.md#471) [Compare Source](https://redirect.github.com/uozi-tech/admin-kit/compare/@uozi-admin/curd@4.7.0...@uozi-admin/curd@4.7.1) ##### Patch Changes - [`d0a0d6e`](https://redirect.github.com/uozi-tech/admin-kit/commit/d0a0d6e6329828fe4de333a19d4850238ea73c42) Thanks [@&#8203;akinoccc](https://redirect.github.com/akinoccc)! - fix(curd): \[form] incorrect watcher for linkage deps ### [`v4.7.0`](https://redirect.github.com/uozi-tech/admin-kit/blob/HEAD/packages/curd/CHANGELOG.md#470) [Compare Source](https://redirect.github.com/uozi-tech/admin-kit/compare/@uozi-admin/curd@4.6.1...@uozi-admin/curd@4.7.0) ##### Minor Changes - [`2c7e084`](https://redirect.github.com/uozi-tech/admin-kit/commit/2c7e08454c145a1723c0cbd90433de498afb8fc1) Thanks [@&#8203;akinoccc](https://redirect.github.com/akinoccc)! - feat(curd): \[form] add linkage ### [`v4.6.1`](https://redirect.github.com/uozi-tech/admin-kit/blob/HEAD/packages/curd/CHANGELOG.md#461) [Compare Source](https://redirect.github.com/uozi-tech/admin-kit/compare/@uozi-admin/curd@4.6.0...@uozi-admin/curd@4.6.1) ##### Patch Changes - [`11c7b4d`](https://redirect.github.com/uozi-tech/admin-kit/commit/11c7b4debb9b590d36aaf479802fcde765728306) Thanks [@&#8203;0xJacky](https://redirect.github.com/0xJacky)! - fix(StdSelector): update preloadIds to use dynamic valueKey for API call </details> <details> <summary>eslint/eslint (eslint)</summary> ### [`v9.33.0`](https://redirect.github.com/eslint/eslint/compare/v9.32.0...a90d7c4fe5ef83054e29d21d7ffb442103429d03) [Compare Source](https://redirect.github.com/eslint/eslint/compare/v9.32.0...v9.33.0) </details> <details> <summary>blevesearch/bleve (github.com/blevesearch/bleve/v2)</summary> ### [`v2.5.3`](https://redirect.github.com/blevesearch/bleve/releases/tag/v2.5.3) [Compare Source](https://redirect.github.com/blevesearch/bleve/compare/v2.5.2...v2.5.3) ##### Bug Fixes - Address a performance regression in `GeoShape` queries introduced in `v2.5.1` and affects `v.2.5.2` as well. This is captured in [https://github.com/blevesearch/bleve/issues/2210](https://redirect.github.com/blevesearch/bleve/issues/2210). The fix [https://github.com/blevesearch/geo/pull/28](https://redirect.github.com/blevesearch/geo/pull/28) has been included with [https://github.com/blevesearch/bleve/pull/2214](https://redirect.github.com/blevesearch/bleve/pull/2214). ##### Milestone - [v2.5.3](https://redirect.github.com/blevesearch/bleve/milestone/30) </details> <details> <summary>casdoor/casdoor-go-sdk (github.com/casdoor/casdoor-go-sdk)</summary> ### [`v1.14.0`](https://redirect.github.com/casdoor/casdoor-go-sdk/releases/tag/v1.14.0) [Compare Source](https://redirect.github.com/casdoor/casdoor-go-sdk/compare/v1.13.0...v1.14.0) ##### Features - add DeleteResourceWithTag API ([#&#8203;165](https://redirect.github.com/casdoor/casdoor-go-sdk/issues/165)) ([322a33c](https://redirect.github.com/casdoor/casdoor-go-sdk/commit/322a33c989b12cb13667a2f2110dfd7e0c134dfa)) ### [`v1.13.0`](https://redirect.github.com/casdoor/casdoor-go-sdk/releases/tag/v1.13.0) [Compare Source](https://redirect.github.com/casdoor/casdoor-go-sdk/compare/v1.12.0...v1.13.0) ##### Features - support ParseJwtToken() with es256 and es512 ([#&#8203;164](https://redirect.github.com/casdoor/casdoor-go-sdk/issues/164)) ([6f56975](https://redirect.github.com/casdoor/casdoor-go-sdk/commit/6f5697525299e59cef1dc09405013950ae48a635)) </details> <details> <summary>go-acme/lego (github.com/go-acme/lego/v4)</summary> ### [`v4.25.2`](https://redirect.github.com/go-acme/lego/blob/HEAD/CHANGELOG.md#v4252-2025-08-06) [Compare Source](https://redirect.github.com/go-acme/lego/compare/v4.25.1...v4.25.2) ##### Changed - - **\[cli,log]** log when dynamic renew date not yet reached ##### Fixed - **\[cli]** fix: remove wrong env var - **\[lib,cli]** fix: enforce HTTPS to the ACME server </details> <details> <summary>uozi-tech/cosy (github.com/uozi-tech/cosy)</summary> ### [`v1.25.1`](https://redirect.github.com/uozi-tech/cosy/compare/v1.25.0...v1.25.1) [Compare Source](https://redirect.github.com/uozi-tech/cosy/compare/v1.25.0...v1.25.1) ### [`v1.25.0`](https://redirect.github.com/uozi-tech/cosy/compare/v1.24.10...v1.25.0) [Compare Source](https://redirect.github.com/uozi-tech/cosy/compare/v1.24.10...v1.25.0) </details> <details> <summary>golang/go (go)</summary> ### [`v1.24.6`](https://redirect.github.com/golang/go/compare/go1.24.5...go1.24.6) </details> <details> <summary>actions/go-versions (go)</summary> ### [`v1.24.6`](https://redirect.github.com/actions/go-versions/releases/tag/1.24.6-16792114823): 1.24.6 [Compare Source](https://redirect.github.com/actions/go-versions/compare/1.24.5-16210585985...1.24.6-16792114823) Go 1.24.6 </details> <details> <summary>markedjs/marked (marked)</summary> ### [`v16.1.2`](https://redirect.github.com/markedjs/marked/releases/tag/v16.1.2) [Compare Source](https://redirect.github.com/markedjs/marked/compare/v16.1.1...v16.1.2) ##### Bug Fixes - fix multiline list item adds extra newline to raw ([#&#8203;3735](https://redirect.github.com/markedjs/marked/issues/3735)) ([e76453e](https://redirect.github.com/markedjs/marked/commit/e76453e64e52cd264911994a81778fa1e486054f)) </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v10.14.0`](https://redirect.github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#10140) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v10.13.1...v10.14.0) ##### Minor Changes - **Added support for JavaScript runtime resolution** Declare Node.js, Deno, or Bun in [`devEngines.runtime`](https://redirect.github.com/openjs-foundation/package-metadata-interoperability-collab-space/issues/15) (inside `package.json`) and let pnpm download and pin it automatically. Usage example: ```json { "devEngines": { "runtime": { "name": "node", "version": "^24.4.0", "onFail": "download" (we only support the "download" value for now) } } } ``` How it works: 1. `pnpm install` resolves your specified range to the latest matching runtime version. 2. The exact version (and checksum) is saved in the lockfile. 3. Scripts use the local runtime, ensuring consistency across environments. Why this is better: 1. This new setting supports also Deno and Bun (vs. our Node-only settings `useNodeVersion` and `executionEnv.nodeVersion`) 2. Supports version ranges (not just a fixed version). 3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity. 4. It can be used on any workspace project (like `executionEnv.nodeVersion`). So, different projects in a workspace can use different runtimes. 5. For now `devEngines.runtime` setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer. Related PR: [#&#8203;9755](https://redirect.github.com/pnpm/pnpm/pull/9755). - Add `--cpu`, `--libc`, and `--os` to `pnpm install`, `pnpm add`, and `pnpm dlx` to customize `supportedArchitectures` via the CLI [#&#8203;7510](https://redirect.github.com/pnpm/pnpm/issues/7510). ##### Patch Changes - Fix a bug in which `pnpm add` downloads packages whose `libc` differ from `pnpm.supportedArchitectures.libc`. - The integrities of the downloaded Node.js artifacts are verified [#&#8203;9750](https://redirect.github.com/pnpm/pnpm/pull/9750). - Allow `dlx` to parse CLI flags and options between the `dlx` command and the command to run or between the `dlx` command and `--` [#&#8203;9719](https://redirect.github.com/pnpm/pnpm/issues/9719). - `pnpm install --prod` should removing hoisted dev dependencies [#&#8203;9782](https://redirect.github.com/pnpm/pnpm/issues/9782). - Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install. - Fix a bug causing `pnpm install` to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies. </details> <details> <summary>actions/python-versions (python)</summary> ### [`v3.13.6`](https://redirect.github.com/actions/python-versions/releases/tag/3.13.6-16792117939): 3.13.6 [Compare Source](https://redirect.github.com/actions/python-versions/compare/3.13.5-15601068749...3.13.6-16792117939) Python 3.13.6 </details> <details> <summary>microsoft/TypeScript (typescript)</summary> ### [`v5.9.2`](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...5be33469d551655d878876faa9e30aa3b49f8ee9) [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2) </details> <details> <summary>unocss/unocss (unocss)</summary> ### [`v66.4.2`](https://redirect.github.com/unocss/unocss/releases/tag/v66.4.2) [Compare Source](https://redirect.github.com/unocss/unocss/compare/v66.4.1...v66.4.2) #####    🚀 Features - Upgrade nuxt4  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4859](https://redirect.github.com/unocss/unocss/issues/4859) [<samp>(cb9de)</samp>](https://redirect.github.com/unocss/unocss/commit/cb9de48b9) - **eslint**: Enhance `unoFunctions` option with nested object expressions  -  by [@&#8203;julienbenac](https://redirect.github.com/julienbenac) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4852](https://redirect.github.com/unocss/unocss/issues/4852) [<samp>(b21e5)</samp>](https://redirect.github.com/unocss/unocss/commit/b21e53374) - **rule-utils**: Proper support for `nth-` selectors  -  by [@&#8203;zojize](https://redirect.github.com/zojize) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4857](https://redirect.github.com/unocss/unocss/issues/4857) [<samp>(61402)</samp>](https://redirect.github.com/unocss/unocss/commit/61402ca8b) #####    🐞 Bug Fixes - **preset-wind4**: Support `bg-gradient-`  -  by [@&#8203;YunYouJun](https://redirect.github.com/YunYouJun) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4848](https://redirect.github.com/unocss/unocss/issues/4848) [<samp>(4241e)</samp>](https://redirect.github.com/unocss/unocss/commit/4241ec739) - **transformer-attributify-jsx**: Correct default import for [@&#8203;babel/traverse](https://redirect.github.com/babel/traverse)  -  by [@&#8203;zhiyuanzmj](https://redirect.github.com/zhiyuanzmj) in [https://github.com/unocss/unocss/issues/4863](https://redirect.github.com/unocss/unocss/issues/4863) [<samp>(645ae)</samp>](https://redirect.github.com/unocss/unocss/commit/645aea86d) - **vscode, autocomplete**: Pre-sense template errors  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) and **Copilot** in [https://github.com/unocss/unocss/issues/4862](https://redirect.github.com/unocss/unocss/issues/4862) [<samp>(3b777)</samp>](https://redirect.github.com/unocss/unocss/commit/3b777ad08) #####    🏎 Performance - Optimize dynamic/static import conflicts  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4858](https://redirect.github.com/unocss/unocss/issues/4858) [<samp>(26870)</samp>](https://redirect.github.com/unocss/unocss/commit/26870b107) - Use `crypto.hash` when available  -  by [@&#8203;Jungzl](https://redirect.github.com/Jungzl) in [https://github.com/unocss/unocss/issues/4860](https://redirect.github.com/unocss/unocss/issues/4860) [<samp>(7fc36)</samp>](https://redirect.github.com/unocss/unocss/commit/7fc36d97a) #####     [View changes on GitHub](https://redirect.github.com/unocss/unocss/compare/v66.4.1...v66.4.2) ### [`v66.4.1`](https://redirect.github.com/unocss/unocss/releases/tag/v66.4.1) [Compare Source](https://redirect.github.com/unocss/unocss/compare/v66.4.0...v66.4.1) #####    🐞 Bug Fixes - **ci**: Increase Node.js memory limit for macOS runner to resolve build out of memory error  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4855](https://redirect.github.com/unocss/unocss/issues/4855) [<samp>(fb9c8)</samp>](https://redirect.github.com/unocss/unocss/commit/fb9c839ce) - **vite**: Disable transform cache for importers of uno.css  -  by [@&#8203;GauBen](https://redirect.github.com/GauBen) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4737](https://redirect.github.com/unocss/unocss/issues/4737) [<samp>(6ec5b)</samp>](https://redirect.github.com/unocss/unocss/commit/6ec5bcfb2) #####     [View changes on GitHub](https://redirect.github.com/unocss/unocss/compare/v66.4.0...v66.4.1) ### [`v66.4.0`](https://redirect.github.com/unocss/unocss/releases/tag/v66.4.0) [Compare Source](https://redirect.github.com/unocss/unocss/compare/v66.3.3...v66.4.0) #####    🚨 Breaking Changes - **transformer-attributify-jsx**: Use babel plugin instead of regex plugin  -  by [@&#8203;zhiyuanzmj](https://redirect.github.com/zhiyuanzmj) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4807](https://redirect.github.com/unocss/unocss/issues/4807) [<samp>(46680)</samp>](https://redirect.github.com/unocss/unocss/commit/466803a4e) #####    🚀 Features - **eslint**: Support sort in function calls like clsx  -  by [@&#8203;magicdawn](https://redirect.github.com/magicdawn) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4801](https://redirect.github.com/unocss/unocss/issues/4801) [<samp>(ccbbd)</samp>](https://redirect.github.com/unocss/unocss/commit/ccbbdefbd) - **nuxt**: Introduce `wind3`,`wind4`, delete `uno` and `wind`  -  by [@&#8203;9romise](https://redirect.github.com/9romise) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4833](https://redirect.github.com/unocss/unocss/issues/4833) [<samp>(e8559)</samp>](https://redirect.github.com/unocss/unocss/commit/e8559801d) - **preset-web-fonts**: Use customFetch in fontsource getPreflight()  -  by [@&#8203;Menci](https://redirect.github.com/Menci) in [https://github.com/unocss/unocss/issues/4820](https://redirect.github.com/unocss/unocss/issues/4820) [<samp>(49fde)</samp>](https://redirect.github.com/unocss/unocss/commit/49fde92ba) - **preset-wind4**: Update reset css in preset-wind4  -  by [@&#8203;micaiguai](https://redirect.github.com/micaiguai) in [https://github.com/unocss/unocss/issues/4847](https://redirect.github.com/unocss/unocss/issues/4847) [<samp>(f502c)</samp>](https://redirect.github.com/unocss/unocss/commit/f502c84f9) #####    🐞 Bug Fixes - Run prepare  -  by [@&#8203;9romise](https://redirect.github.com/9romise) in [https://github.com/unocss/unocss/issues/4834](https://redirect.github.com/unocss/unocss/issues/4834) [<samp>(84b4b)</samp>](https://redirect.github.com/unocss/unocss/commit/84b4b61d9) - **eslint**: - Fix unexpected sorting caused by asynchronous processing  -  by [@&#8203;Kanade-Lu](https://redirect.github.com/Kanade-Lu) and **furina-lu** in [https://github.com/unocss/unocss/issues/4824](https://redirect.github.com/unocss/unocss/issues/4824) [<samp>(16740)</samp>](https://redirect.github.com/unocss/unocss/commit/1674093f5) - **playground**: - Mock `BABEL_TYPES_8_BREAKING` variable to resolve use babel in browser env  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) [<samp>(b6769)</samp>](https://redirect.github.com/unocss/unocss/commit/b6769960e) - **preset-tagify**: - Preset tagify match regexp edge case  -  by [@&#8203;btea](https://redirect.github.com/btea) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4838](https://redirect.github.com/unocss/unocss/issues/4838) [<samp>(11608)</samp>](https://redirect.github.com/unocss/unocss/commit/116086fd0) - **preset-typography**: - Compatible with preset-wind4 close `preset-typography` compatibility with `preset-wind4` on theme variable [#&#8203;4815](https://redirect.github.com/unocss/unocss/issues/4815)  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4815](https://redirect.github.com/unocss/unocss/issues/4815) [<samp>(b4375)</samp>](https://redirect.github.com/unocss/unocss/commit/b4375c52c) - **preset-wind4**: - Skip `properties` layer in important postprocessor  -  by [@&#8203;Jungzl](https://redirect.github.com/Jungzl) in [https://github.com/unocss/unocss/issues/4827](https://redirect.github.com/unocss/unocss/issues/4827) [<samp>(bd60d)</samp>](https://redirect.github.com/unocss/unocss/commit/bd60d8b0d) - Gap rule handles theme spacing values correctly  -  by [@&#8203;lzl0304](https://redirect.github.com/lzl0304) and [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4817](https://redirect.github.com/unocss/unocss/issues/4817) [<samp>(8d88d)</samp>](https://redirect.github.com/unocss/unocss/commit/8d88da8f7) - **sort-rules**: - Prevent generate extra space  -  by [@&#8203;magicdawn](https://redirect.github.com/magicdawn) in [https://github.com/unocss/unocss/issues/4839](https://redirect.github.com/unocss/unocss/issues/4839) [<samp>(11837)</samp>](https://redirect.github.com/unocss/unocss/commit/118379ff3) - **svelte-scoped**: - Create uno generator uniformly  -  by [@&#8203;fehnomenal](https://redirect.github.com/fehnomenal) in [https://github.com/unocss/unocss/issues/4794](https://redirect.github.com/unocss/unocss/issues/4794) [<samp>(88d3f)</samp>](https://redirect.github.com/unocss/unocss/commit/88d3fd22c) - **transformer-compile-class**: - Remove not rigorous sort  -  by [@&#8203;zyyv](https://redirect.github.com/zyyv) in [https://github.com/unocss/unocss/issues/4845](https://redirect.github.com/unocss/unocss/issues/4845) [<samp>(092c7)</samp>](https://redirect.github.com/unocss/unocss/commit/092c7cbba) #####     [View changes on GitHub](https://redirect.github.com/unocss/unocss/compare/v66.3.3...v66.4.0) </details> <details> <summary>vitejs/rolldown-vite (vite)</summary> ### [`v7.1.0`](https://redirect.github.com/vitejs/rolldown-vite/blob/HEAD/packages/vite/CHANGELOG.md#710-2025-08-07) [Compare Source](https://redirect.github.com/vitejs/rolldown-vite/compare/v7.0.12...v7.1.0) ##### Features - support files with more than 1000 lines by `generateCodeFrame` ([#&#8203;20508](https://redirect.github.com/vitejs/rolldown-vite/issues/20508)) ([e7d0b2a](https://redirect.github.com/vitejs/rolldown-vite/commit/e7d0b2afa56840dabbbad10015dc04083caaf248)) ##### Bug Fixes - **css:** avoid warnings for `image-set` containing `__VITE_ASSET__` ([#&#8203;20520](https://redirect.github.com/vitejs/rolldown-vite/issues/20520)) ([f1a2635](https://redirect.github.com/vitejs/rolldown-vite/commit/f1a2635e6977a3eda681bec036f64f07686dad0d)) - **css:** empty CSS entry points should generate CSS files, not JS files ([#&#8203;20518](https://redirect.github.com/vitejs/rolldown-vite/issues/20518)) ([bac9f3e](https://redirect.github.com/vitejs/rolldown-vite/commit/bac9f3ecf84ae5c5add6ef224ae057508247f89e)) - **dev:** denied request stalled when requested concurrently ([#&#8203;20503](https://redirect.github.com/vitejs/rolldown-vite/issues/20503)) ([64a52e7](https://redirect.github.com/vitejs/rolldown-vite/commit/64a52e70d9250b16aa81ce2df27c23fe56907257)) - **manifest:** initialize `entryCssAssetFileNames` as an empty Set ([#&#8203;20542](https://redirect.github.com/vitejs/rolldown-vite/issues/20542)) ([6a46cda](https://redirect.github.com/vitejs/rolldown-vite/commit/6a46cdac5dece70296d1179640958deeeb2e6c19)) - skip prepareOutDirPlugin in workers ([#&#8203;20556](https://redirect.github.com/vitejs/rolldown-vite/issues/20556)) ([97d5111](https://redirect.github.com/vitejs/rolldown-vite/commit/97d5111645a395dae48b16b110bc76c1ee8956c8)) ##### Miscellaneous Chores - update JSDoc of `experimental.enableNativePlugin` option ([2008da5](https://redirect.github.com/vitejs/rolldown-vite/commit/2008da53895a9925e7bc3220c603378f429b4942)) ##### Code Refactoring - deprecate esbuild / optimizeDeps.esbuild options ([#&#8203;355](https://redirect.github.com/vitejs/rolldown-vite/issues/355)) ([4dab15e](https://redirect.github.com/vitejs/rolldown-vite/commit/4dab15e92bd312be4b3b237dd999b4a5bf4c4537)) ##### Tests - detect ts support via `process.features` ([#&#8203;20544](https://redirect.github.com/vitejs/rolldown-vite/issues/20544)) ([856d3f0](https://redirect.github.com/vitejs/rolldown-vite/commit/856d3f06e6889979f630c8453fa385f01d8adaba)) - fix unimportant errors in test-unit ([#&#8203;20545](https://redirect.github.com/vitejs/rolldown-vite/issues/20545)) ([1f23554](https://redirect.github.com/vitejs/rolldown-vite/commit/1f235545b14a51d41b19a49da4a7e3a8e8eb5d10)) ### [`v7.0.12`](https://redirect.github.com/vitejs/rolldown-vite/blob/HEAD/packages/vite/CHANGELOG.md#small-7012-2025-07-30-small) [Compare Source](https://redirect.github.com/vitejs/rolldown-vite/compare/v7.0.11...v7.0.12) ##### Features - bump rolldown ([#&#8203;344](https://redirect.github.com/vitejs/rolldown-vite/issues/344)) ([56f94c7](https://redirect.github.com/vitejs/rolldown-vite/commit/56f94c7c1c1a23188f3ac41925b3bd7e52240c2d)) - **native-plugin:** output warn / debug logs from resolver ([#&#8203;343](https://redirect.github.com/vitejs/rolldown-vite/issues/343)) ([2ea6194](https://redirect.github.com/vitejs/rolldown-vite/commit/2ea61943c4a1934d3268ef5c42655a98c54b7130)) ##### Bug Fixes - reset viteMetadata in watch mode ([#&#8203;342](https://redirect.github.com/vitejs/rolldown-vite/issues/342)) ([e2bb54e](https://redirect.github.com/vitejs/rolldown-vite/commit/e2bb54e794947c45e2a438c2df187e953ac5916c)) ##### Miscellaneous Chores - update rolldown-plugin-dts ([2c4159e](https://redirect.github.com/vitejs/rolldown-vite/commit/2c4159e516d63fd8f180b507fc2c561fbb3ee52e)) </details> <details> <summary>vuejs/vitepress (vitepress)</summary> ### [`v1.6.4`](https://redirect.github.com/vuejs/vitepress/compare/v1.6.3...v1.6.4) [Compare Source](https://redirect.github.com/vuejs/vitepress/compare/v1.6.3...v1.6.4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/0xJacky/nginx-ui). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTEuMSIsInRhcmdldEJyYW5jaCI6ImRldiIsImxhYmVscyI6W119--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 17:15:18 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-ui#7014
No description provided.