Ecosystem metrics
- New Repos
- 17
- New
- Commits
- 903
- up 5.2%
- Releases
- 7
- up 75.0%
- Contributors
- 45
- down 13.5%
- Merges
- 32
- down 11.1%
Activity Overview
Commits and releases over time
- Commits
- Releases
- Authors
Repository Explorer
No repositories match that filter.
7045 commits in all time
Jun 04, 2026 23:30 – Sep 02, 2026 23:30 UTC
Merge e0ebfc316a9b7f21f14ed60ddac05eea20654c80 into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
34d7ec0d
pull/354/merge
1/1 ++ 1 --
chore: bump org.jlleitschuh.gradle.ktlint in /HaveAMagicalDay
Bumps org.jlleitschuh.gradle.ktlint from 13.1.0 to 14.2.0. --- updated-dependencies: - dependency-name: org.jlleitschuh.gradle.ktlint dependency-version: 14.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
e0ebfc31
dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0
1/1 ++ 1 --
Merge e5bee3526bcdd4cf1f0e51159ad9c2bb5d1a5f23 into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
7246b72a
pull/354/merge
1/1 ++ 1 --
chore: bump org.jlleitschuh.gradle.ktlint in /HaveAMagicalDay
Bumps org.jlleitschuh.gradle.ktlint from 13.1.0 to 14.2.0. --- updated-dependencies: - dependency-name: org.jlleitschuh.gradle.ktlint dependency-version: 14.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
e5bee352
dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0
1/1 ++ 1 --
Merge 857ef99b338a03522fd58fc8e76f3ff094dda7ab into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
69f81975
pull/312/merge
1/1 ++ 1 --
Merge bca308af41ed6b7c28f0a11cba9b91b7376a535c into 2535dcaf5bfdd85c66e8efa6451466d9cd740e04
19d35ad1
pull/354/merge
1/1 ++ 1 --
Merge 73ee2dcf49b5f3524503585761a923d200a3b313 into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
6f160e89
pull/449/merge
1/1,106 ++ 1,071 --
chore: bump org.jlleitschuh.gradle.ktlint in /HaveAMagicalDay
Bumps org.jlleitschuh.gradle.ktlint from 13.1.0 to 14.2.0. --- updated-dependencies: - dependency-name: org.jlleitschuh.gradle.ktlint dependency-version: 14.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
bca308af
dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0
1/1 ++ 1 --
chore(deps): lock file maintenance
73ee2dcf
renovate/lock-file-maintenance
1/1,106 ++ 1,071 --
Merge d9f3c6fa6601ad95f856ea212904ba70aab063af into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
b545e965
pull/450/merge
11/736 ++ 187 --
chore(deps): update wallet adapter packages
d9f3c6fa
renovate/wallet-adapter-packages
11/736 ++ 187 --
Merge e75511c6fc675de34ebb704ddd4b6cca8532fad8 into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
6b836728
pull/454/merge
15/1,388 ++ 954 --
chore(deps): update non-major dependencies
e75511c6
renovate/non-major-dependencies
15/1,388 ++ 954 --
Merge 8894186f0d3a8f3ec68b606e5ec475e3aa94bcf2 into b0a3e71a91adfd1dfb97b5060d054618c2a147aa
0d8b68cd
pull/66/merge
10/1,219 ++ 1,300 --
chore(deps): Update all non-major dependencies
8894186f
renovate/all-non-major-dependencies
10/1,219 ++ 1,300 --
2.2: propagate range conditions across join equalities in the planner hook
PostgreSQL derives equalities through equivalence classes but never
inequalities. For the indexer's transaction pages
FROM txn t JOIN block_header h ON t.round = h.round
WHERE t.round >= $1 ORDER BY t.round, t.intra LIMIT n
nothing tells the planner that h.round >= $1, so a plan that drives the
join from block_header scans that index from its first key and probes txn
for every round below $1. With an accurate n_distinct on round that plan
is the cheapest LIMIT plan on paper and the slowest one in practice
(6-12 s instead of 1-3 ms on a 3.7B-row table).
ineq_propagation.c adds, before planning, every column OP value condition
(OP one of <, <=, >=, >) to all columns joined to it with = of the same
type and operator family in the WHERE clause or an inner join. Only
conditions that hold for every output row are used and produced (nothing
at or below the nullable side of an outer join), so results never change.
The value side must be safe to evaluate twice; uncorrelated sub-selects
become a second init plan. GUC pg_algorand.propagate_inequalities.
Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BAkGJyPG5VRajhBwFRPiQ2
b386e114
main
10/909 ++ 4 --
feat(agent): /group — the atomic-swap receipt, compact rows on one poster
An indexer search by group id, final once visible: five enriched rows, the rest counted. The URL carries base64url (plain base64 accepted) — a raw group id's slash can't ride in a path segment. Claude-Session: https://claude.ai/code/session_01HSTYunMrd3nHfxWVNJGssA
8e42dff3
main
6/186 ++ 2 --
Merge 17518856a0c23126bfae87aef887ad1abd7133e4 into 0f211bf113f6199f1eaf28fa1f1ba2de3c0409b0
c5fef02e
pull/401/merge
12/314 ++ 46 --
0.8.8 + build on publish
0.8.7 shipped a stale dist: dist/ is gitignored and there was no prepublish build step, so npm published whatever build happened to be in the working directory (a Feb 11 build). The published 0.8.7 tarball is byte-identical to 0.8.6 apart from the version string, so the cache transaction sweeper from 393c571 never reached consumers. Add prepublishOnly so the package is always rebuilt from source before publishing, and bump to 0.8.8 (npm forbids republishing 0.8.7). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
a466d826
main
1/3 ++ 2 --
Merge b22b5aba0918d651293237dd21b6025ad7272003 into 2535dcaf5bfdd85c66e8efa6451466d9cd740e04
8c70ddd2
pull/369/merge
1/1 ++ 1 --
chore: bump androidx.navigation:navigation-compose in /DisneyScenicRides
Bumps androidx.navigation:navigation-compose from 2.9.8 to 2.10.0. --- updated-dependencies: - dependency-name: androidx.navigation:navigation-compose dependency-version: 2.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
b22b5aba
dependabot/gradle/DisneyScenicRides/androidx.navigation-navigation-compose-2.10.0
1/1 ++ 1 --
SuperChat functionality integrated
17518856
pull/401/head
12/314 ++ 46 --