Skip to content

build(deps): bump aw-core from 0462e12 to 2859a09#1315

Merged
ErikBjare merged 1 commit into
masterfrom
dependabot/submodules/aw-core-2859a09
Jun 2, 2026
Merged

build(deps): bump aw-core from 0462e12 to 2859a09#1315
ErikBjare merged 1 commit into
masterfrom
dependabot/submodules/aw-core-2859a09

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Bumps aw-core from 0462e12 to 2859a09.

Commits
  • 2859a09 fix: use UTC-aware datetime for bucket.created and event.timestamp defaults (...
  • 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-core](https://github.com/ActivityWatch/aw-core) from `0462e12` to `2859a09`.
- [Commits](ActivityWatch/aw-core@0462e12...2859a09)

---
updated-dependencies:
- dependency-name: aw-core
  dependency-version: 2859a09c099c9d14517458989e19f1d6da5060ec
  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 Jun 2, 2026
@greptile-apps
Copy link
Copy Markdown
Contributor

greptile-apps Bot commented Jun 2, 2026

Greptile Summary

This PR bumps the aw-core git submodule by one commit, which fixes a timezone correctness issue where bucket.created and event.timestamp default values were produced as naive (timezone-unaware) datetimes instead of UTC-aware ones.

  • Datetime fix: The upstream fix ensures default timestamps carry UTC timezone info, preventing silent timezone-comparison bugs that could arise when naive and aware datetimes are mixed at the API or storage layer.

Confidence Score: 5/5

Safe to merge — the only change is a one-commit submodule bump that corrects naive datetime defaults to UTC-aware ones.

The update is a single upstream bug fix that replaces naive datetime defaults with UTC-aware equivalents, removing a class of potential timezone-comparison errors. The change is additive and backward-compatible; any code already passing explicit timestamps is unaffected.

No files require special attention.

Important Files Changed

Filename Overview
aw-core Submodule pointer bumped from 0462e12 to 2859a09; the single included commit fixes UTC-aware datetime defaults for bucket.created and event.timestamp, replacing naive datetime usage with timezone-aware alternatives.

Sequence Diagram

sequenceDiagram
    participant Client
    participant aw-server
    participant aw-core

    Client->>aw-server: Create bucket / log event
    aw-server->>aw-core: "Bucket(created=default) / Event(timestamp=default)"
    Note over aw-core: Before: datetime.now() — naive (no tz)<br/>After: datetime.now(tz=timezone.utc) — UTC-aware
    aw-core-->>aw-server: Returns object with UTC-aware timestamp
    aw-server-->>Client: Stored with correct timezone info
Loading

Reviews (1): Last reviewed commit: "build(deps): bump aw-core from `0462e12`..." | Re-trigger Greptile

@ErikBjare ErikBjare merged commit a7ea099 into master Jun 2, 2026
13 checks passed
@dependabot dependabot Bot deleted the dependabot/submodules/aw-core-2859a09 branch June 2, 2026 15:36
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