Johnny
ac4336b6c3
chore: refactor sheet components
2025-12-22 09:19:12 +08:00
Johnny
e62eebf906
chore: refactor tooltip usage and remove unused components
2025-12-22 08:53:54 +08:00
Johnny
ec5db24b2a
chore: remove custom style
...
- Deleted the custom_style field from WorkspaceProfile and WorkspaceSetting messages in workspace_service.proto.
- Updated the corresponding Go files and gRPC service implementations to reflect the removal of custom_style.
- Removed references to custom_style in the API documentation and Swagger definitions.
- Adjusted the workspace setting migration logic to exclude custom_style.
- Updated README files to remove mentions of custom_style.
- Bumped protoc-gen-go and protoc-gen-go-grpc versions in generated files.
2025-12-21 21:32:01 +08:00
Johnny
73d83de323
chore: refactor dialog components to simplify header structure
...
- Removed unnecessary button and icon from dialog headers in AboutDialog, ChangePasswordDialog, CreateAccessTokenDialog, CreateUserDialog, EditUserinfoDialog, and GenerateQRCodeDialog.
- Updated dialog titles to be more straightforward by directly displaying the title text.
- Simplified close button handling in ChangePasswordDialog, EditUserinfoDialog, and GenerateQRCodeDialog by directly using the onClose prop.
- Enhanced Dropdown component to manage its open state internally.
2025-12-21 21:22:10 +08:00
347532ff75
chore: bump actions/setup-node from 4 to 6 ( #491 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 4 to 6.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](https://github.com/actions/setup-node/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-18 18:06:31 +08:00
ffcb3344de
chore: bump actions/checkout from 4 to 6 ( #493 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-18 18:06:16 +08:00
c38b58618c
refactor: shadcn UI ( #496 )
...
* feat: add shadcn/ui base dependencies
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* feat: configure shadcn/ui setup
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* feat: add cn utility for class merging
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* feat: configure tailwind with shadcn theme and CSS variables
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* feat: add shadcn button component
* feat: add shadcn input component
* feat: add shadcn label component
* feat: add shadcn card component
* feat: add shadcn badge component
* feat: add shadcn separator component
* chore: update dependencies for separator component
* feat: add shadcn dialog component
* feat: add shadcn sheet component (drawer replacement)
* feat: add shadcn dropdown-menu component
* feat: add shadcn tooltip component
* feat: add shadcn checkbox component
* feat: add shadcn textarea component
* feat: add shadcn avatar component
* feat: add shadcn sonner component (toast replacement)
* refactor: migrate Dropdown to shadcn dropdown-menu
* refactor: migrate Alert to shadcn alert-dialog
* refactor: migrate ShortcutCard to shadcn components
* refactor: migrate CreateShortcutDrawer to shadcn sheet
* fix: correct import path in alert-dialog
* feat: add framer-motion for animations
* feat: add animated card with framer motion
* feat: improve typography with consistent styles
* chore: migrate MUI Joy components to shadcn/ui (partial)
- Migrated core app components (main.tsx, App.tsx, Root.tsx)
- Replaced CssVarsProvider with next-themes ThemeProvider
- Replaced useColorScheme with useTheme from next-themes
- Migrated all page components using Button, Input, Divider, Tooltip, Separator
- Migrated component files using simple components
- Migrated setting sections with Select, Switch, Textarea
- Added shadcn/ui components: alert, switch, select, radio-group
- Build tested and passing
Remaining: Dialog/Modal, Drawer/Sheet, RadioGroup components in 10 files
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* refactor: complete Task 26 - migrate remaining components from MUI Joy to shadcn/ui
Migrated 11 remaining files using MUI Joy components to shadcn/ui:
Dialog migrations (6 files):
- AboutDialog.tsx: Modal/ModalDialog → Dialog
- ChangePasswordDialog.tsx: Modal/ModalDialog → Dialog
- CreateAccessTokenDialog.tsx: Modal/ModalDialog → Dialog with RadioGroup
- CreateUserDialog.tsx: Modal/ModalDialog → Dialog with RadioGroup
- EditUserinfoDialog.tsx: Modal/ModalDialog → Dialog
- GenerateQRCodeDialog.tsx: Modal/ModalDialog → Dialog
Drawer migrations (2 files):
- CreateCollectionDrawer.tsx: Drawer → Sheet
- CreateIdentityProviderDrawer.tsx: Drawer → Sheet
Page migrations (2 files):
- SubscriptionSetting.tsx: Alert, Button, Divider, Link, Textarea → shadcn equivalents
- WorkspaceSetting.tsx: Alert, Button, Divider → shadcn equivalents
Component migrations (1 file):
- SubscriptionFAQ.tsx: Accordion/AccordionGroup → shadcn Accordion
All components now use shadcn/ui. No MUI Joy imports remain.
Build verified successfully.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* chore: remove MUI Joy and react-hot-toast dependencies
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* docs: add UI components guide
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* feat: complete migration from MUI Joy to shadcn/ui
- Migrated all UI components to shadcn/ui
- Implemented clean & minimal design aesthetic
- Added Framer Motion for subtle animations
- Improved typography and spacing consistency
- Enhanced dark mode with proper color palette
- Replaced react-hot-toast with sonner
- Removed MUI Joy dependencies
- Updated all forms, modals, and interactive components
- Added component documentation
This migration improves maintainability, reduces bundle size, and provides a more modern, polished UI.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
* chore: update
* chore: update
* chore: update
* refactor: complete shadcn/ui theme migration with semantic tokens
---------
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com >
Co-authored-by: Johnny <yourselfhosted@gmail.com >
2025-12-18 18:06:00 +08:00
Steven
0825e0bac0
chore: fix linters
2025-12-17 21:14:37 +08:00
Steven
8083411f3f
chore: update license validation
2025-12-17 21:03:49 +08:00
Steven
d5e7c50682
chore: tweak feature comments
2025-08-18 23:10:33 +08:00
260b451a5f
chore: bump golang.org/x/net from 0.40.0 to 0.42.0 ( #452 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.40.0 to 0.42.0.
- [Commits](https://github.com/golang/net/compare/v0.40.0...v0.42.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-version: 0.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-13 20:53:44 +08:00
93f4cad29d
chore: bump modernc.org/sqlite from 1.37.1 to 1.38.2 ( #450 )
...
Bumps [modernc.org/sqlite](https://gitlab.com/cznic/sqlite ) from 1.37.1 to 1.38.2.
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.37.1...v1.38.2 )
---
updated-dependencies:
- dependency-name: modernc.org/sqlite
dependency-version: 1.38.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 22:57:01 +08:00
Steven
dfddf26bda
chore: update frontend dependencies
2025-08-11 22:53:10 +08:00
115cd1f506
chore: bump eslint-plugin-prettier in /frontend/extension ( #455 )
...
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier ) from 5.4.1 to 5.5.3.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.4.1...v5.5.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
dependency-version: 5.5.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:29:29 +08:00
a8a2ee7771
chore: bump @types/chrome from 0.0.287 to 0.1.1 in /frontend/extension ( #454 )
...
Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome ) from 0.0.287 to 0.1.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome )
---
updated-dependencies:
- dependency-name: "@types/chrome"
dependency-version: 0.1.1
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:29:22 +08:00
b6eef341a0
chore: bump google.golang.org/grpc from 1.72.2 to 1.74.2 ( #453 )
...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go ) from 1.72.2 to 1.74.2.
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.72.2...v1.74.2 )
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-version: 1.74.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:29:16 +08:00
ac88e99c6f
chore: bump golang.org/x/mod from 0.24.0 to 0.26.0 ( #449 )
...
Bumps [golang.org/x/mod](https://github.com/golang/mod ) from 0.24.0 to 0.26.0.
- [Commits](https://github.com/golang/mod/compare/v0.24.0...v0.26.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/mod
dependency-version: 0.26.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:29:00 +08:00
cf3d8f4143
chore: bump @bufbuild/protobuf from 2.5.1 to 2.6.2 in /frontend/web ( #448 )
...
Bumps [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf ) from 2.5.1 to 2.6.2.
- [Release notes](https://github.com/bufbuild/protobuf-es/releases )
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.6.2/packages/protobuf )
---
updated-dependencies:
- dependency-name: "@bufbuild/protobuf"
dependency-version: 2.6.2
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:28:53 +08:00
63cb7421d8
chore: bump @emotion/styled from 11.14.0 to 11.14.1 in /frontend/web ( #443 )
...
Bumps [@emotion/styled](https://github.com/emotion-js/emotion ) from 11.14.0 to 11.14.1.
- [Release notes](https://github.com/emotion-js/emotion/releases )
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md )
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/styled@11.14.0...@emotion/styled@11.14.1 )
---
updated-dependencies:
- dependency-name: "@emotion/styled"
dependency-version: 11.14.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 21:28:38 +08:00
52c7e5ff85
chore: bump lucide-react from 0.486.0 to 0.536.0 in /frontend/extension ( #457 )
...
Bumps [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react ) from 0.486.0 to 0.536.0.
- [Release notes](https://github.com/lucide-icons/lucide/releases )
- [Commits](https://github.com/lucide-icons/lucide/commits/0.536.0/packages/lucide-react )
---
updated-dependencies:
- dependency-name: lucide-react
dependency-version: 0.536.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 18:00:41 +08:00
Johnny
fae37cbaf8
chore: migrator tests
2025-08-11 18:00:13 +08:00
johnnyjoy
6de77e1b40
chore: fix format
2025-06-11 20:56:48 +08:00
johnnyjoy
3c00c5adaa
refactor: add migrator tests
2025-06-11 20:49:26 +08:00
johnnyjoy
3490aad98e
chore: remove unused files
2025-06-11 20:22:11 +08:00
Johnny
32dd3daa08
chore: fix format
2025-06-09 23:12:23 +08:00
Johnny
d413729038
chore: remove seed data
2025-06-09 23:06:32 +08:00
Johnny
ba33336dc4
chore: upgrade dependencies
2025-06-02 09:45:26 +08:00
c542b43e57
chore: bump @trivago/prettier-plugin-sort-imports in /frontend/extension ( #404 )
...
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports ) from 4.3.0 to 5.2.2.
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases )
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md )
- [Commits](https://github.com/trivago/prettier-plugin-sort-imports/compare/v4.3.0...v5.2.2 )
---
updated-dependencies:
- dependency-name: "@trivago/prettier-plugin-sort-imports"
dependency-version: 5.2.2
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-13 09:47:07 +08:00
Johnny
981ab26b12
chore: bump dependencies
2025-05-12 19:19:26 +08:00
3ee1d5e560
chore: bump golang.org/x/net from 0.35.0 to 0.38.0 ( #413 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.35.0 to 0.38.0.
- [Commits](https://github.com/golang/net/compare/v0.35.0...v0.38.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-version: 0.38.0
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-12 10:10:38 +08:00
1446c73bc3
chore: bump vite from 5.4.10 to 5.4.19 in /frontend/web ( #412 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 5.4.10 to 5.4.19.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.19/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.19/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 5.4.19
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-12 10:10:29 +08:00
Johnny
41a55ff5dd
chore: shorten extension description
2025-05-09 20:00:39 +08:00
Johnny
b0b76dcc44
chore: bump extension version
2025-05-09 19:53:55 +08:00
johnnyjoy
de781c5acb
chore: update match urls for duckduckgo
2025-05-08 20:37:19 +08:00
johnnyjoy
891b414d5f
chore: fix dark mode
2025-05-07 22:04:53 +08:00
johnnyjoy
706990b63c
chore: buf generate
2025-05-07 21:43:42 +08:00
johnnyjoy
feb952f7ac
chore: update store tests
2025-05-07 21:12:22 +08:00
johnnyjoy
cb1413be2a
chore: update build script
2025-05-07 21:06:23 +08:00
ab133a94c3
chore: bump github.com/spf13/viper from 1.19.0 to 1.20.1 ( #401 )
...
Bumps [github.com/spf13/viper](https://github.com/spf13/viper ) from 1.19.0 to 1.20.1.
- [Release notes](https://github.com/spf13/viper/releases )
- [Commits](https://github.com/spf13/viper/compare/v1.19.0...v1.20.1 )
---
updated-dependencies:
- dependency-name: github.com/spf13/viper
dependency-version: 1.20.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 15:41:21 +08:00
10ae04a1ae
chore: bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 ( #400 )
...
Bumps [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt ) from 5.2.1 to 5.2.2.
- [Release notes](https://github.com/golang-jwt/jwt/releases )
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md )
- [Commits](https://github.com/golang-jwt/jwt/compare/v5.2.1...v5.2.2 )
---
updated-dependencies:
- dependency-name: github.com/golang-jwt/jwt/v5
dependency-version: 5.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 15:14:08 +08:00
f81e5f30aa
chore: bump github.com/spf13/cobra from 1.8.1 to 1.9.1 ( #399 )
...
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra ) from 1.8.1 to 1.9.1.
- [Release notes](https://github.com/spf13/cobra/releases )
- [Commits](https://github.com/spf13/cobra/compare/v1.8.1...v1.9.1 )
---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
dependency-version: 1.9.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 15:14:00 +08:00
1467468b49
chore: bump github.com/nyaruka/phonenumbers from 1.4.4 to 1.6.1 ( #398 )
...
Bumps [github.com/nyaruka/phonenumbers](https://github.com/nyaruka/phonenumbers ) from 1.4.4 to 1.6.1.
- [Release notes](https://github.com/nyaruka/phonenumbers/releases )
- [Changelog](https://github.com/nyaruka/phonenumbers/blob/main/CHANGELOG.md )
- [Commits](https://github.com/nyaruka/phonenumbers/compare/v1.4.4...v1.6.1 )
---
updated-dependencies:
- dependency-name: github.com/nyaruka/phonenumbers
dependency-version: 1.6.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 15:13:52 +08:00
0ebb9de024
chore: bump google.golang.org/protobuf from 1.36.5 to 1.36.6 ( #397 )
...
Bumps google.golang.org/protobuf from 1.36.5 to 1.36.6.
---
updated-dependencies:
- dependency-name: google.golang.org/protobuf
dependency-version: 1.36.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 15:13:43 +08:00
e87ea67256
chore: bump @emotion/react in /frontend/extension ( #403 )
...
Bumps [@emotion/react](https://github.com/emotion-js/emotion ) from 11.13.3 to 11.14.0.
- [Release notes](https://github.com/emotion-js/emotion/releases )
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md )
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.13.3...@emotion/react@11.14.0 )
---
updated-dependencies:
- dependency-name: "@emotion/react"
dependency-version: 11.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-06 17:22:08 +08:00
cca579d52c
chore: bump autoprefixer from 10.4.20 to 10.4.21 in /frontend/extension ( #402 )
...
Bumps [autoprefixer](https://github.com/postcss/autoprefixer ) from 10.4.20 to 10.4.21.
- [Release notes](https://github.com/postcss/autoprefixer/releases )
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.20...10.4.21 )
---
updated-dependencies:
- dependency-name: autoprefixer
dependency-version: 10.4.21
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-06 17:21:51 +08:00
6b9a5d20a3
chore: bump prettier from 3.4.2 to 3.5.3 in /frontend/extension ( #406 )
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.4.2 to 3.5.3.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.4.2...3.5.3 )
---
updated-dependencies:
- dependency-name: prettier
dependency-version: 3.5.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-06 17:18:28 +08:00
d79f8f065e
chore: bump prettier from 3.4.1 to 3.5.3 in /frontend/web ( #407 )
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.4.1 to 3.5.3.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.4.1...3.5.3 )
---
updated-dependencies:
- dependency-name: prettier
dependency-version: 3.5.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-06 17:18:20 +08:00
30971edf6a
chore: bump @bufbuild/protobuf from 2.2.2 to 2.2.5 in /frontend/web ( #408 )
...
Bumps [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf ) from 2.2.2 to 2.2.5.
- [Release notes](https://github.com/bufbuild/protobuf-es/releases )
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.2.5/packages/protobuf )
---
updated-dependencies:
- dependency-name: "@bufbuild/protobuf"
dependency-version: 2.2.5
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-06 17:18:07 +08:00
b7a34939dc
chore: bump react-i18next from 15.1.0 to 15.5.1 in /frontend/web ( #409 )
...
Bumps [react-i18next](https://github.com/i18next/react-i18next ) from 15.1.0 to 15.5.1.
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/react-i18next/compare/v15.1.0...v15.5.1 )
---
updated-dependencies:
- dependency-name: react-i18next
dependency-version: 15.5.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-04 14:48:10 +08:00
ac98d805ae
chore: bump react-use from 17.5.1 to 17.6.0 in /frontend/web ( #410 )
...
Bumps [react-use](https://github.com/streamich/react-use ) from 17.5.1 to 17.6.0.
- [Release notes](https://github.com/streamich/react-use/releases )
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md )
- [Commits](https://github.com/streamich/react-use/compare/v17.5.1...v17.6.0 )
---
updated-dependencies:
- dependency-name: react-use
dependency-version: 17.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-04 14:48:02 +08:00