Skip to content

build(deps): bump aw-qt from ac043b0 to 6fbb5f7#1233

Merged
ErikBjare merged 1 commit intomasterfrom
dependabot/submodules/aw-qt-6fbb5f7
Apr 7, 2026
Merged

build(deps): bump aw-qt from ac043b0 to 6fbb5f7#1233
ErikBjare merged 1 commit intomasterfrom
dependabot/submodules/aw-qt-6fbb5f7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps aw-qt from ac043b0 to 6fbb5f7.

Commits
  • 6fbb5f7 fix(manager): detect existing server on startup, avoid port conflict (#123)
  • 0cf66f3 fix(manager): skip ignored files early to suppress spurious warnings (#124)
  • See full diff 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [aw-qt](https://github.com/ActivityWatch/aw-qt) from `ac043b0` to `6fbb5f7`.
- [Commits](ActivityWatch/aw-qt@ac043b0...6fbb5f7)

---
updated-dependencies:
- dependency-name: aw-qt
  dependency-version: 6fbb5f77073b23ae54fe0de4fc9b18f1eb761ccc
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file submodules Pull requests that update Submodules code labels Apr 1, 2026
@greptile-apps
Copy link
Copy Markdown

greptile-apps bot commented Apr 1, 2026

Greptile Summary

This PR is a routine dependabot submodule bump of aw-qt from ac043b0 to 6fbb5f7, pulling in two targeted bug fixes.

  • Port conflict fix (6fbb5f7): On startup, the manager now checks whether an aw-server instance is already running on the target port and skips launching a new one if so, preventing conflicts when ActivityWatch is restarted without a clean shutdown.
  • Spurious warning suppression (0cf66f3): Ignored files are now filtered out early in the module-scanning logic, avoiding misleading warnings in the log output.

No logic changes are made in the parent activitywatch repository itself — only the submodule pointer is updated.

Confidence Score: 5/5

Safe to merge — trivial submodule bump with only bug fixes and no breaking changes.

The only change is a single-line submodule pointer update. Both upstream commits are clearly scoped bug fixes (port-conflict avoidance and warning suppression), with no API or behavioral regressions expected. No custom instructions are violated.

No files require special attention.

Important Files Changed

Filename Overview
aw-qt Git submodule pointer bumped from ac043b0 to 6fbb5f7, picking up two bug fixes: port-conflict detection on startup and early filtering of ignored files to suppress spurious warnings.

Sequence Diagram

sequenceDiagram
    participant aw-qt as aw-qt (manager)
    participant Server as aw-server

    Note over aw-qt: Startup (new: 6fbb5f7)
    aw-qt->>Server: Check if server already running on port?
    alt Server already running
        aw-qt-->>aw-qt: Skip launch (avoid port conflict)
    else No server running
        aw-qt->>Server: Start server
    end

    Note over aw-qt: File scanning (new: 6fbb5f7)
    aw-qt->>aw-qt: Scan for module files
    alt File in ignored list
        aw-qt-->>aw-qt: Skip early (no spurious warning)
    else File not ignored
        aw-qt->>aw-qt: Process file normally
    end
Loading

Reviews (1): Last reviewed commit: "build(deps): bump aw-qt from `ac043b0` t..." | Re-trigger Greptile

@ErikBjare ErikBjare merged commit 6211ad5 into master Apr 7, 2026
17 checks passed
@dependabot dependabot bot deleted the dependabot/submodules/aw-qt-6fbb5f7 branch April 7, 2026 13:37
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 submodules Pull requests that update Submodules code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant