Skip to content

deps(npm): bump the dev-dependencies group in /frontend with 5 updates#145

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/dev-dependencies-4d4c016084
Closed

deps(npm): bump the dev-dependencies group in /frontend with 5 updates#145
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/dev-dependencies-4d4c016084

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group in /frontend with 5 updates:

Package From To
@biomejs/biome 2.4.11 2.5.2
@testing-library/svelte 5.3.1 5.4.2
@vitest/coverage-v8 4.1.0 4.1.10
vite 8.0.16 8.1.3
vitest 4.1.0 4.1.10

Updates @biomejs/biome from 2.4.11 to 2.5.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.2

2.5.2

Patch Changes

  • #10595 f458028 Thanks @​pkallos! - Added the option ignoreBooleanCoercion to useNullishCoalescing. When enabled, Biome ignores || and ||= used inside a Boolean() call, where coalescing on falsy values is intentional.

  • #10798 4a32b63 Thanks @​pkallos! - Added the option ignorePrimitives to useNullishCoalescing. When enabled, Biome ignores ||, ||=, and ternary expressions whose non-nullish operands are all primitives the option opts out of. Use true to ignore all primitives, or an object selecting string, number, boolean, or bigint.

  • #10545 f3d4c00 Thanks @​Mokto! - Added the new nursery rule noSvelteUnnecessaryStateWrap, which reports unnecessary $state() wrapping of classes from svelte/reactivity that are already reactive.

    <script>
    import { SvelteMap } from "svelte/reactivity";
    const map = $state(new SvelteMap()); // redundant
    </script>
  • #10752 f62fb8b Thanks @​ematipico! - Fixed #10739. Now the rule useValidAutocomplete correctly flags the autoComplete attribute.

  • #10796 f1b3ab2 Thanks @​ematipico! - Fixed #10768. Improved the performance of the Biome Language Server by cancelling certain in-flight operations when there are fast updates.

  • #10719 aa649b5 Thanks @​minseong0324! - Fixed noMisleadingReturnType false positive on returns that use a widening type assertion: "a" as string is no longer reported as misleading. The rule now also reports a literal-pinning assertion such as false as false, matching the existing as const behavior.

    // No longer flagged (returns are `string`):
    function getValue(b: boolean): string {
      if (b) return "a" as string;
      return "b" as string;
    }
    // Now also reported, like as const (returns false):
    function isReady(): boolean {
    return false as false;
    }

  • #10678 8f073a7 Thanks @​PranavAchar01! - Fixed #7718: Biome now correctly parses CSS nesting selectors when & appears as a trailing sub-selector after a type selector, e.g. h1& { color: red; }.

  • #10756 5ec965a Thanks @​denbezrukov! - Fixed CSS formatter output for selector lists with allowWrongLineComments and // comments after a selector comma. Biome now keeps the selector before the line comment inline instead of breaking it across descendant combinators.

    -.powerPathNavigator
    -  .helm
    -  button.pressedButton, // pressed
    +.powerPathNavigator .helm button.pressedButton, // pressed
     .powerPathNavigator .helm button:active:not(.disabledButton) {
     }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.2

Patch Changes

  • #10595 f458028 Thanks @​pkallos! - Added the option ignoreBooleanCoercion to useNullishCoalescing. When enabled, Biome ignores || and ||= used inside a Boolean() call, where coalescing on falsy values is intentional.

  • #10798 4a32b63 Thanks @​pkallos! - Added the option ignorePrimitives to useNullishCoalescing. When enabled, Biome ignores ||, ||=, and ternary expressions whose non-nullish operands are all primitives the option opts out of. Use true to ignore all primitives, or an object selecting string, number, boolean, or bigint.

  • #10545 f3d4c00 Thanks @​Mokto! - Added the new nursery rule noSvelteUnnecessaryStateWrap, which reports unnecessary $state() wrapping of classes from svelte/reactivity that are already reactive.

    <script>
    import { SvelteMap } from "svelte/reactivity";
    const map = $state(new SvelteMap()); // redundant
    </script>
  • #10752 f62fb8b Thanks @​ematipico! - Fixed #10739. Now the rule useValidAutocomplete correctly flags the autoComplete attribute.

  • #10796 f1b3ab2 Thanks @​ematipico! - Fixed #10768. Improved the performance of the Biome Language Server by cancelling certain in-flight operations when there are fast updates.

  • #10719 aa649b5 Thanks @​minseong0324! - Fixed noMisleadingReturnType false positive on returns that use a widening type assertion: "a" as string is no longer reported as misleading. The rule now also reports a literal-pinning assertion such as false as false, matching the existing as const behavior.

    // No longer flagged (returns are `string`):
    function getValue(b: boolean): string {
      if (b) return "a" as string;
      return "b" as string;
    }
    // Now also reported, like as const (returns false):
    function isReady(): boolean {
    return false as false;
    }

  • #10678 8f073a7 Thanks @​PranavAchar01! - Fixed #7718: Biome now correctly parses CSS nesting selectors when & appears as a trailing sub-selector after a type selector, e.g. h1& { color: red; }.

  • #10756 5ec965a Thanks @​denbezrukov! - Fixed CSS formatter output for selector lists with allowWrongLineComments and // comments after a selector comma. Biome now keeps the selector before the line comment inline instead of breaking it across descendant combinators.

    -.powerPathNavigator
    -  .helm
    -  button.pressedButton, // pressed
    +.powerPathNavigator .helm button.pressedButton, // pressed
     .powerPathNavigator .helm button:active:not(.disabledButton) {
     }
  • #10757 6232fcd Thanks @​PranavAchar01! - Fixed #8269: the CSS parser now accepts Tailwind @variant and @utility names that start with a digit, such as the 2xl breakpoint.

... (truncated)

Commits

Updates @testing-library/svelte from 5.3.1 to 5.4.2

Release notes

Sourced from @​testing-library/svelte's releases.

@​testing-library/svelte@​5.4.2

@​testing-library/svelte 5.4.2 (2026-06-23)

Bug Fixes

  • core: separate runes and non-runes wrapper scaffold (#497) (514a9c5), closes #496

Dependencies

  • @​testing-library/svelte-core: upgraded to 1.1.3

@​testing-library/svelte@​5.4.1

@​testing-library/svelte 5.4.1 (2026-06-21)

Dependencies

  • @​testing-library/svelte-core: upgraded to 1.1.2

@​testing-library/svelte@​5.4.0

@​testing-library/svelte 5.4.0 (2026-06-20)

Features

Dependencies

  • @​testing-library/svelte-core: upgraded to 1.1.0
Commits
  • 514a9c5 fix(core): separate runes and non-runes wrapper scaffold (#497)
  • 959f8c5 feat: add wrapper option (#492)
  • bc9cab5 chore(deps-dev): bump the development group across 1 directory with 11 update...
  • See full diff in compare view

Updates @vitest/coverage-v8 from 4.1.0 to 4.1.10

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub

v4.1.7

   🐞 Bug Fixes

    View changes on GitHub

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

... (truncated)

Commits

Updates vite from 8.0.16 to 8.1.3

Release notes

Sourced from vite's releases.

v8.1.3

Please refer to CHANGELOG.md for details.

v8.1.2

Please refer to CHANGELOG.md for details.

v8.1.1

Please refer to CHANGELOG.md for details.

create-vite@8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0

Please refer to CHANGELOG.md for details.

v8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0-beta.0

Please refer to CHANGELOG.md for details.

v8.1.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.1.3 (2026-07-02)

Bug Fixes

8.1.2 (2026-06-30)

Bug Fixes

  • deps: revert es-module-lexer to 2.1.0 (#22827) (0d3bd7c)
  • restore, "fix: resolve pnpm .modules.yaml from workspace root instead of cwd (#22757)" (#22825) (efb98cc)
  • revert, "fix: escape ids with multiple null bytes (#22687)" (cccef55)
  • revert, "fix: resolve pnpm .modules.yaml from workspace root instead of cwd (#22757)" (cf97711)

8.1.1 (2026-06-30)

Features

  • update dynamic import warning to link to Vite docs (#22823) (62bd7af)

Bug Fixes

  • bundled-dev: avoid stack overflow on import.meta.hot.invalidate() (#22797) (709eb8e)
  • bundled-dev: serve assets emitted during HMR/lazy compile (#22745) (5876b2c)
  • bundledDev: skip plugin transform hooks for rolldown-lazy stub modules (#22778) (8f925e2)
  • css: preserve dollar signs in external @import urls with lightningcss (#22718) (9fa7ab4)
  • css: resolve tsconfig paths in CSS and Sass @​import (#22775) (ef0b891)
  • deps: update all non-major dependencies (#22734) (e635f49)
  • deps: update all non-major dependencies (#22804) (8837400)
  • deps: update rolldown-related dependencies (#22591) (2ce6677)
  • escape ids with multiple null bytes (#22687) (833fc30)
  • hide console window when running 'net use' on Windows (#22698) (92b63f2)
  • ignore bundled config temp dir (#22800) (043a810)
  • invert esbuild.jsxSideEffects when converting to oxc.jsx.pure (#22809) (33895ba)
  • optimize-deps: ignore ERR_CLOSED_SERVER in scanner (#22784) (085a0ab)
  • optimizer: scanner should resolve input from root (#22769) (9722b07)
  • resolve pnpm .modules.yaml from workspace root instead of cwd (#22757) (2531ac7)
  • return sourcemap field from some plugins that were lacking (#22782) (7e18bf8)
  • server: handle malformed URI in indexHtmlMiddleware (#22781) (84f5ccc)

Miscellaneous Chores

Code Refactoring

  • css: remove lightningcss null byte bug workaround (#22822) (2dafd3b)
  • use pre-defined environments variable to avoid duplicate Object.values calls (#22790) (1113acf)

... (truncated)

Commits
  • 578ffb8 release: v8.1.3
  • 7103c3a fix(deps): bump es-module-lexer to 2.3.0 (#22838)
  • 1534d36 fix(css): inject inlined CSS after the shebang line (#22717)
  • c4acd69 fix(ssr): correct stacktrace column position for first line (#22828)
  • 2c53054 fix: preload css for nested dynamic imports (#22759)
  • ba31193 release: v8.1.2
  • 0d3bd7c fix(deps): revert es-module-lexer to 2.1.0 (#22827)
  • efb98cc fix: restore, "fix: resolve pnpm .modules.yaml from workspace root instead of...
  • cf97711 fix: revert, "fix: resolve pnpm .modules.yaml from workspace root instead of ...
  • cccef55 fix: revert, "fix: escape ids with multiple null bytes (#22687)"
  • Additional commits viewable in compare view

Updates vitest from 4.1.0 to 4.1.10

Release notes

Sourced from vitest's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub

v4.1.7

   🐞 Bug Fixes

    View changes on GitHub

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

... (truncated)

Commits
  • db616d2 chore: release v4.1.10 (#10718)
  • bae52b5 fix(vm): fix external module resolve error with deps optimizer query for enco...
  • a7a61e7 chore: release v4.1.9 (#10598)
  • 934b0f5 fix(pool): prevent test run hang on worker crash (#10543) [backport to v4] (#...
  • 7fb2965 fix(browser): wait for orchestrator readiness before resolving browser sessio...
  • a518019 fix: fix importOriginal with optimizer and query import [backport to v4] (#...
  • e61f2dd chore: release v4.1.8
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • a09d472 chore: release v4.1.7
  • a8fd24c chore: release v4.1.6
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-dependencies group in /frontend with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.11` | `2.5.2` |
| [@testing-library/svelte](https://github.com/testing-library/svelte-testing-library/tree/HEAD/packages/svelte) | `5.3.1` | `5.4.2` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0` | `4.1.10` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.1.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.10` |


Updates `@biomejs/biome` from 2.4.11 to 2.5.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.2/packages/@biomejs/biome)

Updates `@testing-library/svelte` from 5.3.1 to 5.4.2
- [Release notes](https://github.com/testing-library/svelte-testing-library/releases)
- [Changelog](https://github.com/testing-library/svelte-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/svelte-testing-library/commits/@testing-library/svelte@5.4.2/packages/svelte)

Updates `@vitest/coverage-v8` from 4.1.0 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/coverage-v8)

Updates `vite` from 8.0.16 to 8.1.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.1.3/packages/vite)

Updates `vitest` from 4.1.0 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@testing-library/svelte"
  dependency-version: 5.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 8.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

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

dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: frontend. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 20, 2026
@github-actions

Copy link
Copy Markdown

🔍 Deadcode Analysis

Found potentially unused code (click to expand)
internal/auth/session.go:78:6: unreachable func: NewSessionManager
internal/database/sqlite_deferred_indexes.go:27:6: unreachable func: MaterializeDeferredSQLiteCustomFieldIndexes
internal/handlers/base.go:219:6: unreachable func: GetAccessibleWorkspaceKeys
internal/handlers/item_links.go:98:27: unreachable func: ItemLinkHandler.ensureLinkService
internal/handlers/item_links.go:113:27: unreachable func: ItemLinkHandler.resolveEntityScope
internal/handlers/item_links.go:118:27: unreachable func: ItemLinkHandler.endpointVisible
internal/handlers/item_links.go:123:27: unreachable func: ItemLinkHandler.filterLinksByAccess
internal/handlers/item_links.go:128:27: unreachable func: ItemLinkHandler.accessibleAssetSetIDSet
internal/handlers/item_links.go:136:27: unreachable func: ItemLinkHandler.canUserViewEntity
internal/handlers/jira_import_execution.go:88:29: unreachable func: JiraImportHandler.executeImportWithClient
internal/handlers/statuses.go:37:25: unreachable func: StatusHandler.validateStatusFields
internal/handlers/statuses.go:63:25: unreachable func: StatusHandler.GetAll
internal/handlers/statuses.go:75:25: unreachable func: StatusHandler.Get
internal/handlers/statuses.go:96:25: unreachable func: StatusHandler.Create
internal/handlers/statuses.go:143:25: unreachable func: StatusHandler.Update
internal/handlers/statuses.go:193:25: unreachable func: StatusHandler.Delete
internal/handlers/test_runs.go:401:26: unreachable func: TestRunHandler.GetBySet
internal/logbook/repository.go:762:22: unreachable func: Repository.IncrementRetrievalCount
internal/logbook/repository.go:818:22: unreachable func: Repository.DeleteAttachment
internal/plugins/manager.go:811:6: unreachable func: ReadPluginFile
internal/plugins/manager_common.go:45:6: unreachable func: WithTimeout
internal/plugins/manager_common.go:50:6: unreachable func: WithMemoryLimit
internal/plugins/manager_common.go:55:6: unreachable func: WithHTTPClient
internal/plugins/manager_common.go:60:6: unreachable func: WithSMTPSender
internal/plugins/manager_common.go:65:6: unreachable func: WithLogger
internal/plugins/router.go:166:18: unreachable func: Router.GetPluginRoutes
internal/plugins/webhook_host.go:128:6: unreachable func: GetPluginWebhookHandler
internal/portalwebauthn/storage.go:140:28: unreachable func: CredentialStore.LookupCustomerByCredentialID
internal/portalwebauthn/storage.go:237:28: unreachable func: CredentialStore.CountCustomerCredentials
internal/repository/active_timer_repository.go:223:33: unreachable func: ActiveTimerRepository.CreateWorklog
internal/repository/asset_report_repository.go:148:33: unreachable func: AssetReportRepository.GetItemTypeAndWorkspace
internal/repository/channel_repository.go:377:29: unreachable func: ChannelRepository.UpdateConfig
internal/repository/logbook_action_repository.go:238:35: unreachable func: LogbookActionRepository.GetNodesByActionID
internal/repository/logbook_action_repository.go:279:35: unreachable func: LogbookActionRepository.GetEdgesByActionID
internal/repository/logbook_action_repository.go:481:35: unreachable func: LogbookActionRepository.HasBucketPermission
internal/repository/request_type_repository.go:165:33: unreachable func: RequestTypeRepository.ItemTypeExists
internal/repository/runner_repository.go:233:28: unreachable func: RunnerRepository.RevokeStaleInstances
internal/repository/todoist_sync_repository.go:184:33: unreachable func: TodoistSyncRepository.GetLinkByTodoistID
internal/restapi/v1/middleware/ratelimit.go:89:24: unreachable func: RateLimiter.Stop
internal/scheduler/cfv_cleanup_scheduler.go:688:31: unreachable func: CFVCleanupScheduler.RunOnceForTests
internal/scm/pr_review_events.go:369:6: unreachable func: isNoRows
internal/server/server.go:2039:18: unreachable func: Server.BaseURL
internal/server/server.go:2053:18: unreachable func: Server.DB
internal/services/analytics_service.go:33:28: unreachable func: AnalyticsService.GetCollectionWorkspaceID
internal/services/analytics_service.go:107:28: unreachable func: AnalyticsService.GetAnalytics
internal/services/channel_service.go:323:26: unreachable func: ChannelService.UpdateConfig
internal/services/channel_service.go:337:26: unreachable func: ChannelService.Exists
internal/services/channel_service.go:361:26: unreachable func: ChannelService.AddManager
internal/services/customer_organisation_permission_service.go:50:49: unreachable func: CustomerOrganisationPermissionService.HasManagers
internal/services/history_service.go:100:27: unreachable func: HistoryService.Close
internal/services/history_service.go:109:27: unreachable func: HistoryService.FlushForTesting
internal/services/history_service.go:115:6: unreachable func: ResetHistoryServiceForTesting
internal/services/invitation_service.go:198:29: unreachable func: InvitationService.CleanupExpiredInvitations
internal/services/item_crud_service.go:46:27: unreachable func: ItemCRUDService.GetByIDBasic
internal/services/item_crud_service.go:52:27: unreachable func: ItemCRUDService.Exists
internal/services/item_crud_service.go:284:27: unreachable func: ItemCRUDService.GetDescendants
internal/services/item_crud_service.go:290:27: unreachable func: ItemCRUDService.GetAncestors
internal/services/item_crud_service.go:296:27: unreachable func: ItemCRUDService.GetRootItems
internal/services/item_crud_service.go:326:27: unreachable func: ItemCRUDService.SearchContext
internal/services/item_crud_service.go:340:27: unreachable func: ItemCRUDService.SearchWithFilters
internal/services/item_crud_service.go:432:27: unreachable func: ItemCRUDService.GetBacklogItems
internal/services/item_crud_service.go:597:27: unreachable func: ItemCRUDService.GetWithEffectiveProject
internal/services/item_link_orchestration.go:835:27: unreachable func: ItemLinkService.AccessibleWorkspaceIDs
internal/services/item_link_orchestration.go:852:27: unreachable func: ItemLinkService.AccessibleWorkspaceKeys
internal/services/item_link_orchestration.go:899:27: unreachable func: ItemLinkService.EndpointVisible
internal/services/item_link_orchestration.go:927:27: unreachable func: ItemLinkService.FilterLinksByAccess
internal/services/item_update_service.go:381:29: unreachable func: ItemUpdateService.RecordItemCreationHistory
internal/services/page_service.go:416:23: unreachable func: PageService.Archive
internal/services/page_service.go:688:23: unreachable func: PageService.ListTree
internal/services/page_service.go:745:23: unreachable func: PageService.ListDescendants
internal/services/permission_cache.go:56:6: unreachable func: DefaultPermissionCacheConfig
internal/services/portal_service.go:478:25: unreachable func: PortalService.GetCustomFieldsForRequestType
internal/services/request_type_field_validation.go:248:6: unreachable func: StoreCustomFieldValues
internal/services/request_type_field_validation.go:266:6: unreachable func: StoreVirtualFieldValues
internal/services/run_service.go:103:21: unreachable func: RunnerFunc.Run
internal/services/run_service.go:301:26: unreachable func: PostRunHookFunc.AfterRun
internal/services/user_deactivate.go:103:6: unreachable func: DeactivateOwnedAgentsAndTokens
internal/services/workspace_service.go:284:28: unreachable func: WorkspaceService.Exists
internal/services/write_batcher.go:103:6: unreachable func: NewWriteBatcher
internal/services/actiontemplates/registry.go:89:6: unreachable func: LoadError
internal/tui/components/chip/chip.go:130:6: unreachable func: LegacyStatus
internal/tui/core/nav.go:29:6: unreachable func: Replace
internal/tui/logo/logo.go:93:6: unreachable func: Small
internal/tui/styles/theme.go:133:6: unreachable func: WindshiftDark
internal/tui/styles/themes.go:44:6: unreachable func: Next
internal/utils/dialer.go:115:6: unreachable func: ParseCIDRList
internal/validation/item_field_validator.go:749:6: unreachable func: ConvertCustomFieldValuesToJSON
internal/validation/item_field_validator.go:767:30: unreachable func: ItemFieldValidator.ValidateCreateRequest
plugin-src/react-demo/backend/main.go:15:6: unreachable func: Init
plugin-src/react-demo/backend/main.go:20:6: unreachable func: HandleRequest

These functions may be unused. Consider removing them if they're no longer needed.

@github-actions

Copy link
Copy Markdown

Size Change: 0 B 🆕

Total Size: 0 B

compressed-size-action

@stefan-ernst
stefan-ernst deleted the dependabot/npm_and_yarn/frontend/dev-dependencies-4d4c016084 branch July 21, 2026 08:02
@dependabot @github

dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant