Skip to content

Add detekt - #46

Merged
mmathieum merged 3 commits into
masterfrom
mm/add_detekt
Jul 31, 2026
Merged

Add detekt#46
mmathieum merged 3 commits into
masterfrom
mm/add_detekt

Conversation

@mmathieum

Copy link
Copy Markdown
Member

@mmathieum mmathieum self-assigned this Jul 31, 2026
@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@mmathieum, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 13 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 2de4738e-26c2-466b-bf77-6026f42e718c

📥 Commits

Reviewing files that changed from the base of the PR and between d843349 and 3985ccb.

📒 Files selected for processing (5)
  • detekt-baseline.xml
  • src/main/java/org/mtransit/commons/SourceUtils.kt
  • src/main/java/org/mtransit/commons/gtfs/sql/CalendarDateSQL.kt
  • src/main/java/org/mtransit/commons/gtfs/sql/StopSQL.kt
  • src/main/java/org/mtransit/commons/gtfs/sql/TripSQL.kt

Comment @coderabbitai help to get the list of available commands.

@qodo-code-review

Copy link
Copy Markdown

PR Summary by Qodo

Add Detekt baseline and align code with Detekt rules

⚙️ Configuration changes 🕐 10-20 Minutes

Grey Divider

AI Description

• Introduce Detekt with a baseline to adopt static analysis incrementally.
• Suppress allowed stack-trace printing in shared JVM/Android utility methods.
• Reformat SQL builder code to satisfy style/lint constraints (line-length/formatting).
Diagram

graph TD
  CI["CI / local build"] --> Gradle["Gradle build"] --> Detekt["Detekt task"]
  Detekt --> Baseline[("detekt-baseline.xml")]
  Detekt --> Sources["Kotlin sources"]
Loading
High-Level Assessment

The following are alternative approaches to this PR:

1. Adopt Detekt with no baseline (fix all findings upfront)
  • ➕ Immediately enforces a clean static-analysis state
  • ➕ Avoids carrying long-term suppressions/baseline debt
  • ➖ Large up-front cleanup cost and noisy PR
  • ➖ Higher risk of mixing functional changes with lint-driven edits
2. Use KtLint (format-focused) + keep Detekt minimal
  • ➕ Simpler rule set; primarily formatting/consistency
  • ➕ Less configuration than full Detekt rule coverage
  • ➖ Does not cover many semantic/code-smell checks Detekt provides
  • ➖ May still require separate tooling for complexity/bug-prone patterns
3. Rely on Android Lint / Kotlin compiler checks only
  • ➕ No new toolchain/config to maintain
  • ➕ Already integrated into typical Android builds
  • ➖ Less coverage for Kotlin-specific style and complexity rules
  • ➖ Harder to standardize code-quality expectations across modules

Recommendation: The baseline-first Detekt rollout used here is the best tradeoff: it enables immediate CI enforcement for new issues while deferring legacy cleanup. The main follow-up should be a policy for steadily reducing baseline entries (e.g., per-module burn-down or 'touch it, fix it' rule).

Files changed (5) +82 / -4

Refactor (4) +8 / -4
SourceUtils.ktSuppress Detekt warning for stack-trace printing +2/-0

Suppress Detekt warning for stack-trace printing

• Adds @Suppress("PrintStackTrace") on the URL parsing/label helpers. The suppression documents that stack-trace printing is intentional for both JVM and Android usage.

src/main/java/org/mtransit/commons/SourceUtils.kt

CalendarDateSQL.ktAdjust SQL column definition argument style +1/-1

Adjust SQL column definition argument style

• Tweaks the SQLColumDef invocation to avoid the named-argument form for the primary key flag. This is a non-functional change intended to comply with style/lint expectations.

src/main/java/org/mtransit/commons/gtfs/sql/CalendarDateSQL.kt

StopSQL.ktReformat query builder joins for readability/line length +3/-2

Reformat query builder joins for readability/line length

• Cleans up minor indentation and breaks a long JOIN clause into chained append calls. This preserves generated SQL while aligning with formatting constraints.

src/main/java/org/mtransit/commons/gtfs/sql/StopSQL.kt

TripSQL.ktReformat service ID join to satisfy style rules +2/-1

Reformat service ID join to satisfy style rules

• Splits a long JOIN ... ON clause into multiple append calls. This keeps the query semantics identical while reducing line length and improving readability.

src/main/java/org/mtransit/commons/gtfs/sql/TripSQL.kt

Other (1) +74 / -0
detekt-baseline.xmlAdd Detekt baseline for existing findings +74/-0

Add Detekt baseline for existing findings

• Introduces a Detekt baseline containing the current set of known issues. This allows enabling Detekt without forcing immediate cleanup of all pre-existing violations.

detekt-baseline.xml

@qodo-code-review

Copy link
Copy Markdown

Code Review by Qodo

🐞 Bugs (0) 📘 Rule violations (0) 📎 Requirement gaps (0)

Grey Divider

Great, no issues found!

Qodo reviewed your code and found no material issues that require review

Grey Divider

To customize comments, go to the Qodo configuration screen, or learn more in the docs.

Qodo Logo

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟢 Ready to approve

Changes are low-risk and primarily Detekt enablement/formatting, with only a minor readability follow-up noted.

This review doesn't count toward merge requirements. Sign up for the private preview to control whether Copilot approvals count.

Pull request overview

Adds Detekt static analysis support to the commons-java Kotlin codebase by introducing a baseline file and making small, targeted code adjustments/suppressions to reduce (or document) existing findings. This aligns with the effort tracked in mtransit-for-android issue #226.

Changes:

  • Added a detekt-baseline.xml to capture current Detekt findings as a starting point.
  • Added @Suppress("PrintStackTrace") on SourceUtils.getSourceLabel(...) overloads for cross-platform (JVM/Android) usage.
  • Reformatted a couple of SQL query builders (JOIN formatting) and adjusted one SQLColumDef invocation.
File summaries
File Description
src/main/java/org/mtransit/commons/SourceUtils.kt Adds Detekt suppression for printStackTrace() usage in URL label parsing.
src/main/java/org/mtransit/commons/gtfs/sql/TripSQL.kt Splits a long JOIN line into a chained append for readability/linting.
src/main/java/org/mtransit/commons/gtfs/sql/StopSQL.kt Minor indentation fix and splits a long JOIN line into chained append.
src/main/java/org/mtransit/commons/gtfs/sql/CalendarDateSQL.kt Tweaks SQLColumDef call style (primaryKey/foreignKey arguments).
detekt-baseline.xml Introduces Detekt baseline to track existing issues.
Review details
  • Files reviewed: 5/5 changed files
  • Comments generated: 1
  • Review effort level: Lite

We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.

Comment thread src/main/java/org/mtransit/commons/gtfs/sql/CalendarDateSQL.kt Outdated
@mmathieum
mmathieum merged commit ccd7885 into master Jul 31, 2026
5 checks passed
@mmathieum
mmathieum deleted the mm/add_detekt branch July 31, 2026 22:56
montransit added a commit to mtransitapps/mtransit-for-android that referenced this pull request Jul 31, 2026
…parser':

- commons: Add `detekt` mtransitapps/commons#836
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-st-hyacinthe-transport-collectif-bus-android that referenced this pull request Aug 1, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-moose-jaw-transit-bus-android that referenced this pull request Aug 1, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-ottawa-oc-transpo-bus-android that referenced this pull request Aug 1, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-mrc-nicolet-yamaska-bili-bus-android that referenced this pull request Aug 1, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-ottawa-oc-transpo-train-android that referenced this pull request Aug 1, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-quebec-a-velo-bike-android that referenced this pull request Aug 4, 2026
- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
montransit added a commit to mtransitapps/ca-vancouver-mobi-bike-android that referenced this pull request Aug 4, 2026
- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
montransit added a commit to mtransitapps/ca-merritt-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-south-okanagan-similkameen-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-pierre-de-saurel-stc-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/us-clark-county-c-tran-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-prince-george-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-west-kootenay-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-chambly-richelieu-carignan-citcrc-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons: `libs.versions.toml` > add links to changelogs in comments
- commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832
- commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831
- commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830
- commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829
- commons: Update maps dependencies mtransitapps/commons#826
- commons: Update Kotlin from `2.3.21` to `2.4.10` mtransitapps/commons#827
- commons: Update Hilt from `2.59.2` to `2.60.1` mtransitapps/commons#828
- commons: Update Protobuf from `4.34.1` to `4.35.1` mtransitapps/commons#825
- commons: Update OkHttp from `5.3.2` to `5.4.0` mtransitapps/commons#824
- commons: Update Glide version from `5.0.7` to `5.0.9` mtransitapps/commons#823
- commons: Bump org.xerial:sqlite-jdbc from 3.53.0.0 to 3.53.2.0 mtransitapps/commons#822
- commons: Build(deps): Bump android-gradlePlugin from 9.3.0 to 9.3.1 mtransitapps/commons#821
- commons: Use `git update-index --skip-worktree` to hide locally changed "key" files mtransitapps/commons#820
- commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.2.1 to 1.3.0 mtransitapps/commons#819
- commons: Target SDK `36` (Android 16) before Aug 31, 2026 mtransitapps/commons#817
- commons: Create `.aiexclude` to manage AI file exclusions mtransitapps/commons#816
- commons: Allow `download()` user-agent override via `MT_DOWNLOAD_USER_AGENT` mtransitapps/commons#815
- commons: Build(deps): Bump android-gradlePlugin from 9.2.1 to 9.3.0 mtransitapps/commons#814
- commons: Fix `mt-record-screenshots.yml` #810
- commons: Switch latest APK fetch to `gh release download` and pick first APK artifact mtransitapps/commons#810
- commons: Build(deps): Bump com.google.ads.mediation:facebook from 6.21.0.3 to 6.21.0.4 in the ads group across 1 directory mtransitapps/commons#813
- commons: Build(deps): Bump com.google.firebase:firebase-bom from 34.15.0 to 34.16.0 in the gms group across 1 directory mtransitapps/commons#812
- commons: Build(deps): Bump com.google.devtools.ksp from 2.3.9 to 2.3.10 in the kotlin-ksp-compose group across 1 directory mtransitapps/commons#811
- commons: Gradle 9.4+ > enable parallel sync
- commons: Skip GitHub release creation when existing release is already latest mtransitapps/commons#809
- commons: runall.sh > print current directory on failure
- commons: Build(deps): Bump com.google.android.libraries.places:places from 5.2.0 to 5.3.0 mtransitapps/commons#808
- commons: Improve GTFS input logging with optional CSV-aware previews after archive preparation mtransitapps/commons#805
- commons: Try fixing download timeout issue #Brandon mtransitapps/commons#806
- commons: Add conditional retry for flaky GTFS download step in mt-download-data workflow mtransitapps/commons#807
- commons: Update README Twitter link to x.com
- commons: Build(deps): Bump androidx.sqlite:sqlite-ktx from 2.6.2 to 2.7.0 in the androidx group across 1 directory mtransitapps/commons#799
- commons: Build(deps): Bump gradle-wrapper from 9.6.0 to 9.6.1 in /shared mtransitapps/commons#803
- commons: Build(deps): Bump com.gradle.develocity from 4.4.3 to 4.5.0 in /shared mtransitapps/commons#802
- commons: Build(deps): Bump com.google.android.gms:play-services-location from 21.3.0 to 21.4.0 in the gms group across 1 directory mtransitapps/commons#800
- commons: Build(deps): Bump the ads group across 1 directory with 2 updates mtransitapps/commons#801
- commons: Build(deps): Bump mtransitapps/gh-actions from 1.2.1 to 1.3.0 in /shared-overwrite/.github/workflows mtransitapps/commons#798
- commons: Download & prepare GTFS > better error handling mtransitapps/commons#797
- commons: Update workflow paths for mt-store-listing-push
- commons: Generated Store listing full/short desc > compat w/ NextBus
- commons: Fix "archive" script > compat with space in headers "service_id, monday, ..." mtransitapps/commons#796
- commons: Build(deps): Bump the ads group across 1 directory with 2 updates mtransitapps/commons#794
- commons: Build(deps): Bump gradle-wrapper from 9.5.1 to 9.6.0 in /shared mtransitapps/commons#795
- commons: Build(deps): Bump the gh-actions group across 2 directories with 1 update mtransitapps/commons#793
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184
- commons-android: Add configuration for auto review in coderabbit
- commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android
- commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added
- commons-android: tests++
- commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181
- commons-android: GTFS-RT Trip Update schedule status > fix wrong 1 min `validity` mtransitapps/commons-android#180
- commons-android: GTFS-RT > Trip Updates > try to fix wrong stop sequence when trip stop passed once & keep all cancelled trips/stops mtransitapps/commons-android#178
- commons-android: Update SSL cert mtransitapps/commons-android#177
- commons-android: GTFS-RT > Trip Updates > handle wrong stop sequence w/o loosing all data mtransitapps/commons-android#176
- commons-android: GTFS-RT Trip Update > fix same stop matching mtransitapps/commons-android#175
- commons-android: suppress
- commons-android: GTFS-RT > Trip filtering > allow ignore `direction_id` when `trip_id` is provided mtransitapps/commons-android#172
- commons-android: Status > `hasData` != `!noData` ('no data' means loaded w/o data) mtransitapps/commons-android#173
- commons-android: #isAndroidApp cleanup
- commons-android: cleanup
- commons-android: Filter `inFocus` cleanup & POI status `validity` (& `useful`) mtransitapps/commons-android#166
- commons-android: Delete `TimeExt.kt` mtransitapps/commons-android#169
- commons-android: Handle Twitter/X ISO-8601 millisecond timestamps in legacy date parsing mtransitapps/commons-android#167
- commons-android: Update GTFS Real-Time proto mtransitapps/commons-android#168
- commons-android: Code cleanup from other PR mtransitapps/commons-android#165
- commons-android: `ProviderContract.Filter` > shared filter params mtransitapps/commons-android#164
- commons-android: `ServiceUpdates` mtransitapps/commons-android#162
- commons-android: Fix spread operator usage in getText function mtransitapps/commons-android#163
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- commons-java: Add initial configuration for coderabbit reviews
- commons-java: Source labels > ignore "gtfsapi" #TransLink
- commons-java: String utils > "and" -> "&" always (tests)
- commons-java: String utils > "and" -> "&" always
- commons-java: Add build-time `MT_DEBUG_DEFAULT` support for `Constants.DEBUG` mtransitapps/commons-java#45
- commons-java: Replace `(?U)` (no compat /w Android) with Unicode Property Classes like `\p{L}`.
- commons-java: CRASH fix created 5 hours ago in 478717d
- commons-java: regex scratch++
- commons-java: String cleaner > compat w/ `Les É/Î / Abc`
- commons-java: String cleaner > compat w/ `Les / Abc`
- commons-java: Regex scratch > + expected result
- commons-java: cleanup
- commons-java: Support for custom LC UC words min
montransit added a commit to mtransitapps/ca-prince-albert-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
- parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
montransit added a commit to mtransitapps/ca-fort-st-john-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-prince-rupert-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-sorel-varennes-citsv-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-brampton-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons: `libs.versions.toml` > add links to changelogs in comments
- commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832
- commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831
- commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830
- commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829
- commons: Update maps dependencies mtransitapps/commons#826
- commons: Update Kotlin from `2.3.21` to `2.4.10` mtransitapps/commons#827
- commons: Update Hilt from `2.59.2` to `2.60.1` mtransitapps/commons#828
- commons: Update Protobuf from `4.34.1` to `4.35.1` mtransitapps/commons#825
- commons: Update OkHttp from `5.3.2` to `5.4.0` mtransitapps/commons#824
- commons: Update Glide version from `5.0.7` to `5.0.9` mtransitapps/commons#823
- commons: Bump org.xerial:sqlite-jdbc from 3.53.0.0 to 3.53.2.0 mtransitapps/commons#822
- commons: Build(deps): Bump android-gradlePlugin from 9.3.0 to 9.3.1 mtransitapps/commons#821
- commons: Use `git update-index --skip-worktree` to hide locally changed "key" files mtransitapps/commons#820
- commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.2.1 to 1.3.0 mtransitapps/commons#819
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184
- commons-android: Add configuration for auto review in coderabbit
- commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android
- commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added
- commons-android: tests++
- commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181
- commons-android: GTFS-RT Trip Update schedule status > fix wrong 1 min `validity` mtransitapps/commons-android#180
- commons-android: GTFS-RT > Trip Updates > try to fix wrong stop sequence when trip stop passed once & keep all cancelled trips/stops mtransitapps/commons-android#178
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- commons-java: Add initial configuration for coderabbit reviews
- commons-java: Source labels > ignore "gtfsapi" #TransLink
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
- parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
- parser: Add .coderabbit.yaml configuration file
- parser: Auto enable direction splitter when `trips.txt` doesn't have `direction_id` column mtransitapps/parser#82
- parser: `JSON` > `use_route_long_name_for_route_short_name` > use RSN cleaners
montransit added a commit to mtransitapps/fr-ariege-lio-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-vancouver-translink-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
- parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
montransit added a commit to mtransitapps/ca-vernon-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-longueuil-rtl-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
- parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
montransit added a commit to mtransitapps/ca-fredericton-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-banff-roam-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-smithers-district-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-edmonton-ets-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
montransit added a commit to mtransitapps/ca-gatineau-sto-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-mount-waddington-regional-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-100-mile-house-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-lethbridge-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons: `libs.versions.toml` > add links to changelogs in comments
- commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832
- commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831
- commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830
- commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829
- commons: Update maps dependencies mtransitapps/commons#826
- commons: Update Kotlin from `2.3.21` to `2.4.10` mtransitapps/commons#827
- commons: Update Hilt from `2.59.2` to `2.60.1` mtransitapps/commons#828
- commons: Update Protobuf from `4.34.1` to `4.35.1` mtransitapps/commons#825
- commons: Update OkHttp from `5.3.2` to `5.4.0` mtransitapps/commons#824
- commons: Update Glide version from `5.0.7` to `5.0.9` mtransitapps/commons#823
- commons: Bump org.xerial:sqlite-jdbc from 3.53.0.0 to 3.53.2.0 mtransitapps/commons#822
- commons: Build(deps): Bump android-gradlePlugin from 9.3.0 to 9.3.1 mtransitapps/commons#821
- commons: Use `git update-index --skip-worktree` to hide locally changed "key" files mtransitapps/commons#820
- commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.2.1 to 1.3.0 mtransitapps/commons#819
- commons: Target SDK `36` (Android 16) before Aug 31, 2026 mtransitapps/commons#817
- commons: Create `.aiexclude` to manage AI file exclusions mtransitapps/commons#816
- commons: Allow `download()` user-agent override via `MT_DOWNLOAD_USER_AGENT` mtransitapps/commons#815
- commons: Build(deps): Bump android-gradlePlugin from 9.2.1 to 9.3.0 mtransitapps/commons#814
- commons: Fix `mt-record-screenshots.yml` #810
- commons: Switch latest APK fetch to `gh release download` and pick first APK artifact mtransitapps/commons#810
- commons: Build(deps): Bump com.google.ads.mediation:facebook from 6.21.0.3 to 6.21.0.4 in the ads group across 1 directory mtransitapps/commons#813
- commons: Build(deps): Bump com.google.firebase:firebase-bom from 34.15.0 to 34.16.0 in the gms group across 1 directory mtransitapps/commons#812
- commons: Build(deps): Bump com.google.devtools.ksp from 2.3.9 to 2.3.10 in the kotlin-ksp-compose group across 1 directory mtransitapps/commons#811
- commons: Gradle 9.4+ > enable parallel sync
- commons: Skip GitHub release creation when existing release is already latest mtransitapps/commons#809
- commons: runall.sh > print current directory on failure
- commons: Build(deps): Bump com.google.android.libraries.places:places from 5.2.0 to 5.3.0 mtransitapps/commons#808
- commons: Improve GTFS input logging with optional CSV-aware previews after archive preparation mtransitapps/commons#805
- commons: Try fixing download timeout issue #Brandon mtransitapps/commons#806
- commons: Add conditional retry for flaky GTFS download step in mt-download-data workflow mtransitapps/commons#807
- commons: Update README Twitter link to x.com
- commons: Build(deps): Bump androidx.sqlite:sqlite-ktx from 2.6.2 to 2.7.0 in the androidx group across 1 directory mtransitapps/commons#799
- commons: Build(deps): Bump gradle-wrapper from 9.6.0 to 9.6.1 in /shared mtransitapps/commons#803
- commons: Build(deps): Bump com.gradle.develocity from 4.4.3 to 4.5.0 in /shared mtransitapps/commons#802
- commons: Build(deps): Bump com.google.android.gms:play-services-location from 21.3.0 to 21.4.0 in the gms group across 1 directory mtransitapps/commons#800
- commons: Build(deps): Bump the ads group across 1 directory with 2 updates mtransitapps/commons#801
- commons: Build(deps): Bump mtransitapps/gh-actions from 1.2.1 to 1.3.0 in /shared-overwrite/.github/workflows mtransitapps/commons#798
- commons: Download & prepare GTFS > better error handling mtransitapps/commons#797
- commons: Update workflow paths for mt-store-listing-push
- commons: Generated Store listing full/short desc > compat w/ NextBus
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184
- commons-android: Add configuration for auto review in coderabbit
- commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android
- commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added
- commons-android: tests++
- commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181
- commons-android: GTFS-RT Trip Update schedule status > fix wrong 1 min `validity` mtransitapps/commons-android#180
- commons-android: GTFS-RT > Trip Updates > try to fix wrong stop sequence when trip stop passed once & keep all cancelled trips/stops mtransitapps/commons-android#178
- commons-android: Update SSL cert mtransitapps/commons-android#177
- commons-android: GTFS-RT > Trip Updates > handle wrong stop sequence w/o loosing all data mtransitapps/commons-android#176
- commons-android: GTFS-RT Trip Update > fix same stop matching mtransitapps/commons-android#175
- commons-android: suppress
- commons-android: GTFS-RT > Trip filtering > allow ignore `direction_id` when `trip_id` is provided mtransitapps/commons-android#172
- commons-android: Status > `hasData` != `!noData` ('no data' means loaded w/o data) mtransitapps/commons-android#173
- commons-android: #isAndroidApp cleanup
- commons-android: cleanup
- commons-android: Filter `inFocus` cleanup & POI status `validity` (& `useful`) mtransitapps/commons-android#166
- commons-android: Delete `TimeExt.kt` mtransitapps/commons-android#169
- commons-android: Handle Twitter/X ISO-8601 millisecond timestamps in legacy date parsing mtransitapps/commons-android#167
- commons-android: Update GTFS Real-Time proto mtransitapps/commons-android#168
- commons-android: Code cleanup from other PR mtransitapps/commons-android#165
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- commons-java: Add initial configuration for coderabbit reviews
- commons-java: Source labels > ignore "gtfsapi" #TransLink
- commons-java: String utils > "and" -> "&" always (tests)
- commons-java: String utils > "and" -> "&" always
- commons-java: Add build-time `MT_DEBUG_DEFAULT` support for `Constants.DEBUG` mtransitapps/commons-java#45
- commons-java: Replace `(?U)` (no compat /w Android) with Unicode Property Classes like `\p{L}`.
- commons-java: CRASH fix created 5 hours ago in 478717d
- commons-java: regex scratch++
- commons-java: String cleaner > compat w/ `Les É/Î / Abc`
- commons-java: String cleaner > compat w/ `Les / Abc`
- commons-java: Regex scratch > + expected result
- commons-java: cleanup
- commons-java: Support for custom LC UC words min
montransit added a commit to mtransitapps/ca-toronto-share-bike-android that referenced this pull request Aug 4, 2026
- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
montransit added a commit to mtransitapps/ca-central-fraser-valley-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-strathcona-county-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons: `libs.versions.toml` > add links to changelogs in comments
- commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832
- commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831
- commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830
- commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184
- commons-android: Add configuration for auto review in coderabbit
- commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android
- commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added
- commons-android: tests++
- commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- commons-java: Add initial configuration for coderabbit reviews
- commons-java: Source labels > ignore "gtfsapi" #TransLink
- parser: Add `detekt` mtransitapps/parser#84
- parser: Add initial .pr_agent.toml configuration file
- parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
- parser: Add .coderabbit.yaml configuration file
montransit added a commit to mtransitapps/ca-quebec-traversiers-ferry-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-yellowknife-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-drummondville-transport-en-commun-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons: `libs.versions.toml` > add links to changelogs in comments
- commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832
- commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831
- commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830
- commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829
- commons: Update maps dependencies mtransitapps/commons#826
- commons: Update Kotlin from `2.3.21` to `2.4.10` mtransitapps/commons#827
- commons: Update Hilt from `2.59.2` to `2.60.1` mtransitapps/commons#828
- commons: Update Protobuf from `4.34.1` to `4.35.1` mtransitapps/commons#825
- commons: Update OkHttp from `5.3.2` to `5.4.0` mtransitapps/commons#824
- commons: Update Glide version from `5.0.7` to `5.0.9` mtransitapps/commons#823
- commons: Bump org.xerial:sqlite-jdbc from 3.53.0.0 to 3.53.2.0 mtransitapps/commons#822
- commons: Build(deps): Bump android-gradlePlugin from 9.3.0 to 9.3.1 mtransitapps/commons#821
- commons: Use `git update-index --skip-worktree` to hide locally changed "key" files mtransitapps/commons#820
- commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.2.1 to 1.3.0 mtransitapps/commons#819
- commons: Target SDK `36` (Android 16) before Aug 31, 2026 mtransitapps/commons#817
- commons: Create `.aiexclude` to manage AI file exclusions mtransitapps/commons#816
- commons: Allow `download()` user-agent override via `MT_DOWNLOAD_USER_AGENT` mtransitapps/commons#815
- commons: Build(deps): Bump android-gradlePlugin from 9.2.1 to 9.3.0 mtransitapps/commons#814
- commons: Fix `mt-record-screenshots.yml` #810
- commons: Switch latest APK fetch to `gh release download` and pick first APK artifact mtransitapps/commons#810
- commons: Build(deps): Bump com.google.ads.mediation:facebook from 6.21.0.3 to 6.21.0.4 in the ads group across 1 directory mtransitapps/commons#813
- commons: Build(deps): Bump com.google.firebase:firebase-bom from 34.15.0 to 34.16.0 in the gms group across 1 directory mtransitapps/commons#812
- commons: Build(deps): Bump com.google.devtools.ksp from 2.3.9 to 2.3.10 in the kotlin-ksp-compose group across 1 directory mtransitapps/commons#811
- commons: Gradle 9.4+ > enable parallel sync
- commons: Skip GitHub release creation when existing release is already latest mtransitapps/commons#809
- commons: runall.sh > print current directory on failure
- commons: Build(deps): Bump com.google.android.libraries.places:places from 5.2.0 to 5.3.0 mtransitapps/commons#808
- commons: Improve GTFS input logging with optional CSV-aware previews after archive preparation mtransitapps/commons#805
- commons: Try fixing download timeout issue #Brandon mtransitapps/commons#806
- commons: Add conditional retry for flaky GTFS download step in mt-download-data workflow mtransitapps/commons#807
- commons: Update README Twitter link to x.com
- commons: Build(deps): Bump androidx.sqlite:sqlite-ktx from 2.6.2 to 2.7.0 in the androidx group across 1 directory mtransitapps/commons#799
- commons: Build(deps): Bump gradle-wrapper from 9.6.0 to 9.6.1 in /shared mtransitapps/commons#803
- commons: Build(deps): Bump com.gradle.develocity from 4.4.3 to 4.5.0 in /shared mtransitapps/commons#802
- commons: Build(deps): Bump com.google.android.gms:play-services-location from 21.3.0 to 21.4.0 in the gms group across 1 directory mtransitapps/commons#800
- commons: Build(deps): Bump the ads group across 1 directory with 2 updates mtransitapps/commons#801
- commons: Build(deps): Bump mtransitapps/gh-actions from 1.2.1 to 1.3.0 in /shared-overwrite/.github/workflows mtransitapps/commons#798
- commons: Download & prepare GTFS > better error handling mtransitapps/commons#797
- commons: Update workflow paths for mt-store-listing-push
- commons: Generated Store listing full/short desc > compat w/ NextBus
- commons: Fix "archive" script > compat with space in headers "service_id, monday, ..." mtransitapps/commons#796
- commons: Build(deps): Bump the ads group across 1 directory with 2 updates mtransitapps/commons#794
- commons: Build(deps): Bump gradle-wrapper from 9.5.1 to 9.6.0 in /shared mtransitapps/commons#795
- commons: Build(deps): Bump the gh-actions group across 2 directories with 1 update mtransitapps/commons#793
- commons: Build(deps): Bump com.android.billingclient:billing-ktx from 9.0.0 to 9.1.0 in the play group across 1 directory mtransitapps/commons#792
- commons: Build(deps): Bump the androidx group across 1 directory with 4 updates mtransitapps/commons#786
- commons: Add lint custom rules URLs in TOML
- commons: Android 17 initial support: compile with SDK `37` & build tools `37.0.0` mtransitapps/commons#791
- commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.1.1 to 1.2.1 mtransitapps/commons#789
- commons: fix featured graphic cities max length with "…"
- commons: Build(deps): Bump the gms group across 1 directory with 2 updates mtransitapps/commons#787
- commons: Build(deps): Bump com.google.gms.google-services from 4.4.4 to 4.5.0 mtransitapps/commons#788
- commons: Build(deps): Bump com.gradle.develocity from 4.4.2 to 4.4.3 in /shared mtransitapps/commons#790
- commons: Auto-delete `.github/ISSUE_TEMPLATE/module-setup.md` mtransitapps/commons#785
- commons: Auto-delete `.github/ISSUE_TEMPLATE/module-setup.md` (part 2)
- commons: Auto-delete `.github/ISSUE_TEMPLATE/module-setup.md` mtransitapps/commons#783 mtransitapps/commons#784
- commons: CI: `mt-sync-code-data.yml` > allow commit code change on PRs mtransitapps/commons#782
- commons: Only skip mt-download-data on PR when archive exists mtransitapps/commons#781
- commons: Build(deps): Bump com.google.firebase:firebase-bom from 34.14.0 to 34.14.1 in the gms group across 1 directory mtransitapps/commons#780
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184
- commons-android: Add configuration for auto review in coderabbit
- commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android
- commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added
- commons-android: tests++
- commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181
- commons-android: GTFS-RT Trip Update schedule status > fix wrong 1 min `validity` mtransitapps/commons-android#180
- commons-android: GTFS-RT > Trip Updates > try to fix wrong stop sequence when trip stop passed once & keep all cancelled trips/stops mtransitapps/commons-android#178
- commons-android: Update SSL cert mtransitapps/commons-android#177
- commons-android: GTFS-RT > Trip Updates > handle wrong stop sequence w/o loosing all data mtransitapps/commons-android#176
- commons-android: GTFS-RT Trip Update > fix same stop matching mtransitapps/commons-android#175
- commons-android: suppress
- commons-android: GTFS-RT > Trip filtering > allow ignore `direction_id` when `trip_id` is provided mtransitapps/commons-android#172
- commons-android: Status > `hasData` != `!noData` ('no data' means loaded w/o data) mtransitapps/commons-android#173
- commons-android: #isAndroidApp cleanup
- commons-android: cleanup
- commons-android: Filter `inFocus` cleanup & POI status `validity` (& `useful`) mtransitapps/commons-android#166
- commons-android: Delete `TimeExt.kt` mtransitapps/commons-android#169
- commons-android: Handle Twitter/X ISO-8601 millisecond timestamps in legacy date parsing mtransitapps/commons-android#167
- commons-android: Update GTFS Real-Time proto mtransitapps/commons-android#168
- commons-android: Code cleanup from other PR mtransitapps/commons-android#165
- commons-android: `ProviderContract.Filter` > shared filter params mtransitapps/commons-android#164
- commons-android: `ServiceUpdates` mtransitapps/commons-android#162
- commons-android: Fix spread operator usage in getText function mtransitapps/commons-android#163
- commons-android: Add AndroidX Fragment dependency (GPS basement+Play AppUpdate) mtransitapps/commons-android#160
- commons-android: Update SSL cert mtransitapps/commons-android#159
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
- commons-java: Add initial configuration for coderabbit reviews
- commons-java: Source labels > ignore "gtfsapi" #TransLink
- commons-java: String utils > "and" -> "&" always (tests)
- commons-java: String utils > "and" -> "&" always
- commons-java: Add build-time `MT_DEBUG_DEFAULT` support for `Constants.DEBUG` mtransitapps/commons-java#45
- commons-java: Replace `(?U)` (no compat /w Android) with Unicode Property Classes like `\p{L}`.
- commons-java: CRASH fix created 5 hours ago in 478717d
- commons-java: regex scratch++
- commons-java: String cleaner > compat w/ `Les É/Î / Abc`
- commons-java: String cleaner > compat w/ `Les / Abc`
- commons-java: Regex scratch > + expected result
- commons-java: cleanup
- commons-java: Support for custom LC UC words min
montransit added a commit to mtransitapps/ca-quebec-plumobile-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-victoria-regional-transit-system-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-ashcroft-cache-creek-clinton-regional-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-clearwater-regional-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/fr-pyrenees-orientales-lio-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-montreal-bixi-bike-android that referenced this pull request Aug 4, 2026
- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons: Add initial .pr_agent.toml configuration file
- commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833
- commons: Google--
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191
- commons-android: Add initial .pr_agent.toml configuration file
- commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189
- commons-android: Fix Weird Capitalization mtransitapps/commons-android#187
- commons-android: Google--
- commons-android: Fix assert from #185
- commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185
- commons-java: Add `detekt` mtransitapps/commons-java#46
- commons-java: Add initial .pr_agent.toml configuration file
- commons-java: fix `assert` -> `assertEquals`
montransit added a commit to mtransitapps/ca-kitimat-stikine-region-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
montransit added a commit to mtransitapps/ca-williams-lake-transit-bus-android that referenced this pull request Aug 4, 2026
…parser':

- commons: `download()` > remove `Accept: application/zip` for ZIP files (revert #834)
- commons: Add `detekt` mtransitapps/commons#836
- commons: `mt-download.yml` > omit `--ref` on default branch to avoid `mt-sync-code-data.yml` starting with the wrong hash mtransitapps/commons#835
- commons: `download()` > `Accept: application/zip` for ZIP files mtransitapps/commons#834
- commons-android: GTFS-RT > Trip Updates > never ignore CANCELLED trips because too much into the future mtransitapps/commons-android#194
- commons-android: `Schedule` > + `hasRealTimeOrCancelled`
- commons-android: Add `detekt` mtransitapps/commons-android#193
- commons-android: GTFS-RT > ignore trip updates too much into the future... mtransitapps/commons-android#192
- commons-java: Add `detekt` mtransitapps/commons-java#46
- parser: Add `detekt` mtransitapps/parser#84
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants