chore(deps): bump the non-breaking-changes group with 4 updates (#4451)

* chore(deps): bump the non-breaking-changes group with 4 updates

Bumps the non-breaking-changes group with 4 updates: [vue](https://github.com/vuejs/core), [rollup](https://github.com/rollup/rollup), [eslint](https://github.com/eslint/eslint) and [@vue/shared](https://github.com/vuejs/core/tree/HEAD/packages/shared).


Updates `vue` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.6...v3.5.7)

Updates `rollup` from 4.22.0 to 4.22.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.22.0...v4.22.2)

Updates `eslint` from 9.10.0 to 9.11.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.10.0...v9.11.0)

Updates `@vue/shared` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.7/packages/shared)

---
updated-dependencies:
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@vue/shared"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: update deps

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: vben <ann.vben@gmail.com>
pull/48/MERGE
dependabot[bot] 2024-09-21 10:46:38 +08:00 committed by GitHub
parent ace942e2df
commit 37645f08be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
21 changed files with 925 additions and 623 deletions

View File

@ -1,7 +1,7 @@
name: 🐞 Bug Report name: 🐞 Bug Report
description: Report an issue with Vben Admin to help us make it better. description: Report an issue with Vben Admin to help us make it better.
title: "Bug: " title: 'Bug: '
labels: ["bug: pending triage"] labels: ['bug: pending triage']
body: body:
- type: markdown - type: markdown

View File

@ -1,6 +1,6 @@
name: 📚 Documentation name: 📚 Documentation
description: Report an issue with Vben Admin Website to help us make it better. description: Report an issue with Vben Admin Website to help us make it better.
title: "Docs: " title: 'Docs: '
labels: [documentation] labels: [documentation]
body: body:
- type: markdown - type: markdown

View File

@ -1,7 +1,7 @@
name: ✨ New Feature Proposal name: ✨ New Feature Proposal
description: Propose a new feature to be added to Vben Admin description: Propose a new feature to be added to Vben Admin
title: "FEATURE: " title: 'FEATURE: '
labels: ["enhancement: pending triage"] labels: ['enhancement: pending triage']
body: body:
- type: markdown - type: markdown
attributes: attributes:

View File

@ -1,9 +1,9 @@
name: "Setup Node" name: 'Setup Node'
description: "Setup node and pnpm" description: 'Setup node and pnpm'
runs: runs:
using: "composite" using: 'composite'
steps: steps:
- name: Install pnpm - name: Install pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
@ -12,7 +12,7 @@ runs:
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version-file: .node-version node-version-file: .node-version
cache: "pnpm" cache: 'pnpm'
- name: Get pnpm store directory - name: Get pnpm store directory
shell: bash shell: bash

View File

@ -1,7 +1,7 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: npm - package-ecosystem: npm
directory: "/" directory: '/'
schedule: schedule:
interval: daily interval: daily
groups: groups:
@ -9,7 +9,7 @@ updates:
update-types: [minor, patch] update-types: [minor, patch]
- package-ecosystem: github-actions - package-ecosystem: github-actions
directory: "/" directory: '/'
schedule: schedule:
interval: weekly interval: weekly
groups: groups:

View File

@ -1,7 +1,7 @@
name-template: "v$RESOLVED_VERSION" name-template: 'v$RESOLVED_VERSION'
tag-template: "v$RESOLVED_VERSION" tag-template: 'v$RESOLVED_VERSION'
version-template: $MAJOR.$MINOR.$PATCH version-template: $MAJOR.$MINOR.$PATCH
change-template: "* $TITLE (#$NUMBER) @$AUTHOR" change-template: '* $TITLE (#$NUMBER) @$AUTHOR'
template: | template: |
# What's Changed # What's Changed
@ -10,52 +10,52 @@ template: |
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
categories: categories:
- title: "🚀 Features" - title: '🚀 Features'
labels: labels:
- "feature" - 'feature'
- title: "🐞 Bug Fixes" - title: '🐞 Bug Fixes'
labels: labels:
- "bug" - 'bug'
- title: "📈 Performance" - title: '📈 Performance'
labels: labels:
- "perf" - 'perf'
- "enhancement" - 'enhancement'
- title: 📝 Documentation - title: 📝 Documentation
labels: labels:
- "documentation" - 'documentation'
- title: 👻 Maintenance - title: 👻 Maintenance
labels: labels:
- "chore" - 'chore'
- "dependencies" - 'dependencies'
# collapse-after: 12 # collapse-after: 12
- title: 🚦 Tests - title: 🚦 Tests
labels: labels:
- "tests" - 'tests'
- title: "Breaking" - title: 'Breaking'
label: "breaking" label: 'breaking'
version-resolver: version-resolver:
major: major:
labels: labels:
- "major" - 'major'
- "breaking" - 'breaking'
minor: minor:
labels: labels:
- "minor" - 'minor'
patch: patch:
labels: labels:
- "feature" - 'feature'
- "patch" - 'patch'
- "bug" - 'bug'
- "maintenance" - 'maintenance'
- "docs" - 'docs'
- "dependencies" - 'dependencies'
- "security" - 'security'
exclude-labels: exclude-labels:
- "skip-changelog" - 'skip-changelog'
- "no-changelog" - 'no-changelog'
- "changelog" - 'changelog'
- "bump versions" - 'bump versions'
- "reverted" - 'reverted'
- "invalid" - 'invalid'

View File

@ -7,7 +7,7 @@ on:
- main - main
env: env:
HUSKY: "0" HUSKY: '0'
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} group: ${{ github.workflow }}-${{ github.event.pull_request.number }}

View File

@ -36,7 +36,7 @@ jobs:
uses: changesets/action@v1 uses: changesets/action@v1
with: with:
version: pnpm run version version: pnpm run version
commit: "chore: bump versions" commit: 'chore: bump versions'
title: "chore: bump versions" title: 'chore: bump versions'
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -5,7 +5,7 @@ on:
push: push:
branches: branches:
- main - main
- "releases/*" - 'releases/*'
permissions: permissions:
contents: read contents: read

View File

@ -9,15 +9,15 @@
# the `language` matrix defined below to confirm you have the correct set of # the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages. # supported CodeQL languages.
# #
name: "CodeQL" name: 'CodeQL'
on: on:
push: push:
branches: ["main"] branches: ['main']
pull_request: pull_request:
branches: ["main"] branches: ['main']
schedule: schedule:
- cron: "35 0 * * 0" - cron: '35 0 * * 0'
jobs: jobs:
analyze: analyze:
@ -90,4 +90,4 @@ jobs:
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v3
with: with:
category: "/language:${{matrix.language}}" category: '/language:${{matrix.language}}'

View File

@ -4,7 +4,7 @@ name: Issue Close Require
# 触发条件:每天零点 # 触发条件:每天零点
on: on:
schedule: schedule:
- cron: "0 0 * * *" - cron: '0 0 * * *'
permissions: permissions:
pull-requests: write pull-requests: write
@ -19,7 +19,7 @@ jobs:
- name: Close Inactive Issues - name: Close Inactive Issues
uses: actions-cool/issues-helper@v3 uses: actions-cool/issues-helper@v3
with: with:
actions: "close-issues" # 执行动作:关闭 Issues actions: 'close-issues' # 执行动作:关闭 Issues
token: ${{ secrets.GITHUB_TOKEN }} # GitHub Token用于认证 token: ${{ secrets.GITHUB_TOKEN }} # GitHub Token用于认证
labels: "needs reproduction" # 目标标签 labels: 'needs reproduction' # 目标标签
inactive-day: 3 # 未活动天数阈值 inactive-day: 3 # 未活动天数阈值

View File

@ -19,27 +19,27 @@ jobs:
if: github.event.label.name == 'enhancement' if: github.event.label.name == 'enhancement'
uses: actions-cool/issues-helper@v3 uses: actions-cool/issues-helper@v3
with: with:
actions: "remove-labels" actions: 'remove-labels'
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }} issue-number: ${{ github.event.issue.number }}
labels: "enhancement: pending triage" labels: 'enhancement: pending triage'
- name: remove bug pending - name: remove bug pending
if: github.event.label.name == 'bug' if: github.event.label.name == 'bug'
uses: actions-cool/issues-helper@v3 uses: actions-cool/issues-helper@v3
with: with:
actions: "remove-labels" actions: 'remove-labels'
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }} issue-number: ${{ github.event.issue.number }}
labels: "bug: pending triage" labels: 'bug: pending triage'
- name: needs reproduction - name: needs reproduction
if: github.event.label.name == 'needs reproduction' if: github.event.label.name == 'needs reproduction'
uses: actions-cool/issues-helper@v3 uses: actions-cool/issues-helper@v3
with: with:
actions: "create-comment, remove-labels" actions: 'create-comment, remove-labels'
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }} issue-number: ${{ github.event.issue.number }}
body: | body: |
Hello @${{ github.event.issue.user.login }}. Please provide the complete reproduction steps and code. Issues labeled by `needs reproduction` will be closed if no activities in 3 days. Hello @${{ github.event.issue.user.login }}. Please provide the complete reproduction steps and code. Issues labeled by `needs reproduction` will be closed if no activities in 3 days.
labels: "bug: pending triage" labels: 'bug: pending triage'

View File

@ -2,7 +2,7 @@ name: Lock Threads
on: on:
schedule: schedule:
- cron: "0 0 * * *" - cron: '0 0 * * *'
workflow_dispatch: workflow_dispatch:
permissions: permissions:
@ -16,8 +16,8 @@ jobs:
- uses: dessant/lock-threads@v5 - uses: dessant/lock-threads@v5
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
issue-inactive-days: "30" issue-inactive-days: '30'
issue-lock-reason: "" issue-lock-reason: ''
pr-inactive-days: "30" pr-inactive-days: '30'
pr-lock-reason: "" pr-lock-reason: ''
process-only: "issues, prs" process-only: 'issues, prs'

View File

@ -3,10 +3,10 @@ name: Create Release Tag
on: on:
push: push:
tags: tags:
- "v*.*.*" # Push events to matching v*, i.e. v1.0, v20.15.10 - 'v*.*.*' # Push events to matching v*, i.e. v1.0, v20.15.10
env: env:
HUSKY: "0" HUSKY: '0'
permissions: permissions:
pull-requests: write pull-requests: write

View File

@ -1,8 +1,8 @@
name: "Close stale issues" name: 'Close stale issues'
on: on:
schedule: schedule:
- cron: "0 1 * * *" - cron: '0 1 * * *'
jobs: jobs:
stale: stale:
@ -11,8 +11,8 @@ jobs:
- uses: actions/stale@v9 - uses: actions/stale@v9
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days" stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days'
stale-pr-message: "This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days" stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days'
exempt-issue-labels: "bug,enhancement" exempt-issue-labels: 'bug,enhancement'
days-before-stale: 60 days-before-stale: 60
days-before-close: 7 days-before-close: 7

View File

@ -10,16 +10,18 @@
免费QQ群人数上限200将会不定期清理。推荐加入QQ频道进行交流 免费QQ群人数上限200将会不定期清理。推荐加入QQ频道进行交流
:::
## 微信群 ## 微信群
作者主要通过微信群提供帮助,如果你有问题,可以通过以下方式加入微信群。
通过微信联系作者,注明加群来意:
::: tip ::: tip
因为微信群人数有限制,加微信群前,你可以通过[赞助](../sponsor/personal.md)任意金额,主动发送截图给作者,备注`加入微信群`即可。 因为微信群人数有限制,加微信群前,你可以通过[赞助](../sponsor/personal.md)任意金额,主动发送截图给作者,备注`加入微信群`即可。
::: :::
作者主要通过微信群提供帮助,如果你有问题,可以通过以下方式加入微信群。
通过微信联系作者,注明加群来意:
<img src="https://unpkg.com/@vbenjs/static-source@0.1.6/source/wechat.jpg" style="width: 300px;"/> <img src="https://unpkg.com/@vbenjs/static-source@0.1.6/source/wechat.jpg" style="width: 300px;"/>

View File

@ -8,12 +8,6 @@ export default {
singleQuote: false, singleQuote: false,
}, },
}, },
{
files: ['*.yaml', '*.yml'],
options: {
singleQuote: false,
},
},
], ],
plugins: ['prettier-plugin-tailwindcss'], plugins: ['prettier-plugin-tailwindcss'],
printWidth: 80, printWidth: 80,

View File

@ -95,10 +95,10 @@
"vue-tsc": "catalog:" "vue-tsc": "catalog:"
}, },
"engines": { "engines": {
"node": ">=20", "node": ">=20.10.0",
"pnpm": ">=9.5.0" "pnpm": ">=9.5.0"
}, },
"packageManager": "pnpm@9.10.0", "packageManager": "pnpm@9.11.0",
"pnpm": { "pnpm": {
"peerDependencyRules": { "peerDependencyRules": {
"allowedVersions": { "allowedVersions": {
@ -109,7 +109,7 @@
"@ctrl/tinycolor": "4.1.0", "@ctrl/tinycolor": "4.1.0",
"clsx": "2.1.1", "clsx": "2.1.1",
"pinia": "2.2.2", "pinia": "2.2.2",
"vue": "3.5.6" "vue": "3.5.7"
}, },
"neverBuiltDependencies": [ "neverBuiltDependencies": [
"canvas", "canvas",

File diff suppressed because it is too large Load Diff

View File

@ -13,51 +13,51 @@ packages:
- docs - docs
- playground - playground
catalog: catalog:
"@changesets/changelog-github": ^0.5.0 '@changesets/changelog-github': ^0.5.0
"@changesets/cli": ^2.27.8 '@changesets/cli': ^2.27.8
"@changesets/git": ^3.0.1 '@changesets/git': ^3.0.1
"@clack/prompts": ^0.7.0 '@clack/prompts': ^0.7.0
"@commitlint/cli": ^19.5.0 '@commitlint/cli': ^19.5.0
"@commitlint/config-conventional": ^19.5.0 '@commitlint/config-conventional': ^19.5.0
"@ctrl/tinycolor": ^4.1.0 '@ctrl/tinycolor': ^4.1.0
"@eslint/js": ^9.10.0 '@eslint/js': ^9.11.0
"@iconify/json": ^2.2.250 '@iconify/json': ^2.2.251
"@iconify/tailwind": ^1.1.3 '@iconify/tailwind': ^1.1.3
"@iconify/vue": ^4.1.2 '@iconify/vue': ^4.1.2
"@intlify/core-base": ^10.0.1 '@intlify/core-base': ^10.0.1
"@intlify/unplugin-vue-i18n": ^5.0.0 '@intlify/unplugin-vue-i18n': ^5.0.0
"@jspm/generator": ^2.3.1 '@jspm/generator': ^2.3.1
"@manypkg/get-packages": ^2.2.2 '@manypkg/get-packages': ^2.2.2
"@nolebase/vitepress-plugin-git-changelog": ^2.5.0 '@nolebase/vitepress-plugin-git-changelog': ^2.5.0
"@radix-icons/vue": ^1.0.0 '@radix-icons/vue': ^1.0.0
"@stylistic/stylelint-plugin": ^3.0.1 '@stylistic/stylelint-plugin': ^3.0.1
"@tailwindcss/nesting": 0.0.0-insiders.565cd3e '@tailwindcss/nesting': 0.0.0-insiders.565cd3e
"@tailwindcss/typography": ^0.5.15 '@tailwindcss/typography': ^0.5.15
"@tanstack/vue-query": ^5.56.2 '@tanstack/vue-query': ^5.56.2
"@tanstack/vue-store": ^0.5.5 '@tanstack/vue-store': ^0.5.5
"@types/archiver": ^6.0.2 '@types/archiver': ^6.0.2
"@types/chalk": ^2.2.0 '@types/chalk': ^2.2.0
"@types/eslint": ^9.6.1 '@types/eslint': ^9.6.1
"@types/html-minifier-terser": ^7.0.2 '@types/html-minifier-terser': ^7.0.2
"@types/jsdom": ^21.1.7 '@types/jsdom': ^21.1.7
"@types/jsonwebtoken": ^9.0.7 '@types/jsonwebtoken': ^9.0.7
"@types/lodash.clonedeep": ^4.5.9 '@types/lodash.clonedeep': ^4.5.9
"@types/node": ^22.5.5 '@types/node': ^22.5.5
"@types/nprogress": ^0.2.3 '@types/nprogress': ^0.2.3
"@types/postcss-import": ^14.0.3 '@types/postcss-import': ^14.0.3
"@types/qrcode": ^1.5.5 '@types/qrcode': ^1.5.5
"@types/sortablejs": ^1.15.8 '@types/sortablejs': ^1.15.8
"@typescript-eslint/eslint-plugin": ^8.6.0 '@typescript-eslint/eslint-plugin': ^8.6.0
"@typescript-eslint/parser": ^8.6.0 '@typescript-eslint/parser': ^8.6.0
"@vee-validate/zod": ^4.13.2 '@vee-validate/zod': ^4.13.2
"@vite-pwa/vitepress": ^0.5.3 '@vite-pwa/vitepress': ^0.5.3
"@vitejs/plugin-vue": ^5.1.4 '@vitejs/plugin-vue': ^5.1.4
"@vitejs/plugin-vue-jsx": ^4.0.1 '@vitejs/plugin-vue-jsx': ^4.0.1
"@vue/reactivity": ^3.5.6 '@vue/reactivity': ^3.5.7
"@vue/shared": ^3.5.6 '@vue/shared': ^3.5.7
"@vue/test-utils": ^2.4.6 '@vue/test-utils': ^2.4.6
"@vueuse/core": ^11.1.0 '@vueuse/core': ^11.1.0
"@vueuse/integrations": ^11.1.0 '@vueuse/integrations': ^11.1.0
ant-design-vue: ^4.2.5 ant-design-vue: ^4.2.5
archiver: ^7.0.1 archiver: ^7.0.1
autoprefixer: ^10.4.20 autoprefixer: ^10.4.20
@ -82,7 +82,7 @@ catalog:
dotenv: ^16.4.5 dotenv: ^16.4.5
echarts: ^5.5.1 echarts: ^5.5.1
element-plus: ^2.8.3 element-plus: ^2.8.3
eslint: ^9.10.0 eslint: ^9.11.0
eslint-config-turbo: ^2.1.2 eslint-config-turbo: ^2.1.2
eslint-plugin-command: ^0.2.5 eslint-plugin-command: ^0.2.5
eslint-plugin-eslint-comments: ^3.2.0 eslint-plugin-eslint-comments: ^3.2.0
@ -111,7 +111,7 @@ catalog:
jsonwebtoken: ^9.0.2 jsonwebtoken: ^9.0.2
lint-staged: ^15.2.10 lint-staged: ^15.2.10
lodash.clonedeep: ^4.5.0 lodash.clonedeep: ^4.5.0
lucide-vue-next: ^0.441.0 lucide-vue-next: ^0.445.0
medium-zoom: ^1.1.0 medium-zoom: ^1.1.0
naive-ui: ^2.39.0 naive-ui: ^2.39.0
nanoid: ^5.0.7 nanoid: ^5.0.7
@ -134,9 +134,9 @@ catalog:
radix-vue: ^1.9.6 radix-vue: ^1.9.6
resolve.exports: ^2.0.2 resolve.exports: ^2.0.2
rimraf: ^6.0.1 rimraf: ^6.0.1
rollup: ^4.22.0 rollup: ^4.22.2
rollup-plugin-visualizer: ^5.12.0 rollup-plugin-visualizer: ^5.12.0
sass: ^1.79.1 sass: ^1.79.3
sortablejs: ^1.15.3 sortablejs: ^1.15.3
stylelint: ^16.9.0 stylelint: ^16.9.0
stylelint-config-recess-order: ^5.1.0 stylelint-config-recess-order: ^5.1.0
@ -156,7 +156,7 @@ catalog:
unbuild: ^2.0.0 unbuild: ^2.0.0
unplugin-element-plus: ^0.8.0 unplugin-element-plus: ^0.8.0
vee-validate: ^4.13.2 vee-validate: ^4.13.2
vite: ^5.4.6 vite: ^5.4.7
vite-plugin-compression: ^0.5.1 vite-plugin-compression: ^0.5.1
vite-plugin-dts: 4.2.1 vite-plugin-dts: 4.2.1
vite-plugin-html: ^3.2.2 vite-plugin-html: ^3.2.2
@ -166,7 +166,7 @@ catalog:
vitepress: ^1.3.4 vitepress: ^1.3.4
vitepress-plugin-group-icons: ^1.2.4 vitepress-plugin-group-icons: ^1.2.4
vitest: ^2.1.1 vitest: ^2.1.1
vue: ^3.5.6 vue: ^3.5.7
vue-eslint-parser: ^9.4.3 vue-eslint-parser: ^9.4.3
vue-i18n: ^10.0.1 vue-i18n: ^10.0.1
vue-router: ^4.4.5 vue-router: ^4.4.5

View File

@ -2,5 +2,5 @@
--- ---
version: 1.0.0 version: 1.0.0
codeOwners: codeOwners:
- "0xB33cc732DFc15Cd39eF50Fb165c876E24417E48f" - '0xB33cc732DFc15Cd39eF50Fb165c876E24417E48f'
quorum: 1 quorum: 1