Skip to content

build(deps): bump aw-client from 14e7497 to b2ddb46#1329

Merged
ErikBjare merged 1 commit into
masterfrom
dependabot/submodules/aw-client-b2ddb46
Jul 1, 2026
Merged

build(deps): bump aw-client from 14e7497 to b2ddb46#1329
ErikBjare merged 1 commit into
masterfrom
dependabot/submodules/aw-client-b2ddb46

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps aw-client from 14e7497 to b2ddb46.

Commits

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-client](https://github.com/ActivityWatch/aw-client) from `14e7497` to `b2ddb46`.
- [Release notes](https://github.com/ActivityWatch/aw-client/releases)
- [Commits](ActivityWatch/aw-client@14e7497...b2ddb46)

---
updated-dependencies:
- dependency-name: aw-client
  dependency-version: b2ddb4634b7985d829c784059e824137ef2023c4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file submodules Pull requests that update Submodules code labels Jul 1, 2026
@greptile-apps

greptile-apps Bot commented Jul 1, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR bumps the aw-client git submodule from commit 14e7497 to b2ddb46, pulling in a single bug fix commit.

  • The upstream fix (fix(queue): warn before connect and create buckets immediately) addresses queue behavior in aw-client — it adds a warning before connecting and creates buckets immediately rather than deferring, which improves reliability of event queuing.
  • No application-level code in this repository is modified; only the submodule pointer in aw-client is updated.

Confidence Score: 5/5

Safe to merge — the change is a single submodule pointer update carrying one targeted upstream bug fix.

Only the aw-client submodule reference changes. The upstream commit is a focused queue fix that adds an early warning log and eagerly creates buckets on connect, reducing the chance of silently dropped events at startup. No application code in this repo is touched.

No files require special attention.

Important Files Changed

Filename Overview
aw-client Submodule pointer bumped from 14e7497 to b2ddb46; contains one upstream bug fix commit for queue connect/bucket creation behavior.

Sequence Diagram

%%{init: {'theme': 'neutral'}}%%
sequenceDiagram
    participant W as aw-watcher (client)
    participant Q as ActivityQueue
    participant S as aw-server

    Note over W,S: Before this bump (14e7497)
    W->>Q: enqueue events
    Q-->>S: connect (deferred, no warning)
    Q-->>S: create bucket (deferred)

    Note over W,S: After this bump (b2ddb46)
    W->>Q: enqueue events
    Q->>Q: warn if not yet connected
    Q->>S: connect immediately
    Q->>S: create bucket immediately
    Q->>S: send queued events
Loading
%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%%
sequenceDiagram
    participant W as aw-watcher (client)
    participant Q as ActivityQueue
    participant S as aw-server

    Note over W,S: Before this bump (14e7497)
    W->>Q: enqueue events
    Q-->>S: connect (deferred, no warning)
    Q-->>S: create bucket (deferred)

    Note over W,S: After this bump (b2ddb46)
    W->>Q: enqueue events
    Q->>Q: warn if not yet connected
    Q->>S: connect immediately
    Q->>S: create bucket immediately
    Q->>S: send queued events
Loading

Reviews (1): Last reviewed commit: "build(deps): bump aw-client from `14e749..." | Re-trigger Greptile

@ErikBjare
ErikBjare merged commit 2715937 into master Jul 1, 2026
16 checks passed
@dependabot
dependabot Bot deleted the dependabot/submodules/aw-client-b2ddb46 branch July 1, 2026 14:00
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