Skip to content

chore(deps): bump github.com/orchetect/menubarextraaccess from 1.2.2 to 1.3.0 in /apps/macos in the swift-deps group#3

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/swift/apps/macos/swift-deps-9d312ea49a
Open

chore(deps): bump github.com/orchetect/menubarextraaccess from 1.2.2 to 1.3.0 in /apps/macos in the swift-deps group#3
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/swift/apps/macos/swift-deps-9d312ea49a

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 5, 2026

Bumps the swift-deps group in /apps/macos with 1 update: github.com/orchetect/menubarextraaccess.

Updates github.com/orchetect/menubarextraaccess from 1.2.2 to 1.3.0

Release notes

Sourced from github.com/orchetect/menubarextraaccess's releases.

1.3.0

Improved

  • Improved reliability of status item discovery upon MenuBarExtra scene initialization

Changed

  • menuBarExtraAccess(...) scene modifier is now required to be the first modifier applied to a MenuBarExtra

Maintenance

  • Added Package manifest for Swift 6.2 toolchain with DebugLogging trait
  • Updated example projects
Commits
  • 33bb0e4 Updated GitHub CI
  • 041fdce Renamed CI Xcode scheme
  • 78e1216 Updated example projects
  • 8d8a246 menuBarExtraAccess() scene modifier is now required as first modifier appli...
  • 4ad6b50 Updated README
  • 0303ae6 Improved reliability of status item discovery upon MenuBarExtra scene initial...
  • aac5e3e Added Package manifest for Swift 6.2 toolchain with DebugLogging trait
  • 16df7fd Updated GitHub CI
  • b71b97a Updated GitHub CI
  • 61847fb Updated GitHub CI
  • Additional commits viewable in compare view

Dependabot compatibility score

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

Summary by cubic

Upgrade MenuBarExtraAccess to 1.3.0 in the macOS app to improve reliability of menu bar status item discovery. This version requires menuBarExtraAccess(...) to be the first modifier on MenuBarExtra.

  • Dependencies

    • Bump orchetect/MenuBarExtraAccess from 1.2.2 to 1.3.0.
  • Migration

    • Ensure menuBarExtraAccess(...) is applied first on all MenuBarExtra scenes.

Written for commit eb5b597. Summary will update on new commits.

Bumps the swift-deps group in /apps/macos with 1 update: [github.com/orchetect/menubarextraaccess](https://github.com/orchetect/MenuBarExtraAccess).


Updates `github.com/orchetect/menubarextraaccess` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/orchetect/MenuBarExtraAccess/releases)
- [Commits](orchetect/MenuBarExtraAccess@1.2.2...1.3.0)

---
updated-dependencies:
- dependency-name: github.com/orchetect/menubarextraaccess
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code labels Mar 5, 2026
Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 issue found across 2 files

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="apps/macos/Package.swift">

<violation number="1" location="apps/macos/Package.swift:18">
P2: Upgrading to MenuBarExtraAccess 1.3.0 introduces a modifier-order requirement that current `MenuBarExtra` usage violates (`menuBarExtraAccess` is not first), so this dependency bump can cause incorrect menu bar integration behavior until call sites are reordered.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

],
dependencies: [
.package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.2.2"),
.package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.3.0"),
Copy link

@cubic-dev-ai cubic-dev-ai bot Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Upgrading to MenuBarExtraAccess 1.3.0 introduces a modifier-order requirement that current MenuBarExtra usage violates (menuBarExtraAccess is not first), so this dependency bump can cause incorrect menu bar integration behavior until call sites are reordered.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/macos/Package.swift, line 18:

<comment>Upgrading to MenuBarExtraAccess 1.3.0 introduces a modifier-order requirement that current `MenuBarExtra` usage violates (`menuBarExtraAccess` is not first), so this dependency bump can cause incorrect menu bar integration behavior until call sites are reordered.</comment>

<file context>
@@ -15,7 +15,7 @@ let package = Package(
     ],
     dependencies: [
-        .package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.2.2"),
+        .package(url: "https://github.com/orchetect/MenuBarExtraAccess", exact: "1.3.0"),
         .package(url: "https://github.com/swiftlang/swift-subprocess.git", from: "0.1.0"),
         .package(url: "https://github.com/apple/swift-log.git", from: "1.8.0"),
</file context>
Fix with Cubic

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 swift_package_manager Pull requests that update swift_package_manager code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants