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%

Repository Explorer

7045 commits in all time Jun 04, 2026 23:30 – Sep 02, 2026 23:30 UTC
Merge e0ebfc316a9b7f21f14ed60ddac05eea20654c80 into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
Git Commit 34d7ec0d Branch pull/354/merge Document 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>
Git Commit e0ebfc31 Branch dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0 Document 1/1 ++ 1 --
Merge e5bee3526bcdd4cf1f0e51159ad9c2bb5d1a5f23 into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
Git Commit 7246b72a Branch pull/354/merge Document 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>
Git Commit e5bee352 Branch dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0 Document 1/1 ++ 1 --
Merge 857ef99b338a03522fd58fc8e76f3ff094dda7ab into 1c776883d36db87bb6c3b25c8f0f1ebd855e0520
Git Commit 69f81975 Branch pull/312/merge Document 1/1 ++ 1 --
Merge bca308af41ed6b7c28f0a11cba9b91b7376a535c into 2535dcaf5bfdd85c66e8efa6451466d9cd740e04
Git Commit 19d35ad1 Branch pull/354/merge Document 1/1 ++ 1 --
renovate[bot] use-wallet
Merge 73ee2dcf49b5f3524503585761a923d200a3b313 into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
Git Commit 6f160e89 Branch pull/449/merge Document 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>
Git Commit bca308af Branch dependabot/gradle/HaveAMagicalDay/org.jlleitschuh.gradle.ktlint-14.2.0 Document 1/1 ++ 1 --
renovate[bot] use-wallet
chore(deps): lock file maintenance
Git Commit 73ee2dcf Branch renovate/lock-file-maintenance Document 1/1,106 ++ 1,071 --
renovate[bot] use-wallet
Merge d9f3c6fa6601ad95f856ea212904ba70aab063af into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
Git Commit b545e965 Branch pull/450/merge Document 11/736 ++ 187 --
renovate[bot] use-wallet
chore(deps): update wallet adapter packages
Git Commit d9f3c6fa Branch renovate/wallet-adapter-packages Document 11/736 ++ 187 --
renovate[bot] use-wallet
Merge e75511c6fc675de34ebb704ddd4b6cca8532fad8 into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
Git Commit 6b836728 Branch pull/454/merge Document 15/1,388 ++ 954 --
renovate[bot] use-wallet
chore(deps): update non-major dependencies
Git Commit e75511c6 Branch renovate/non-major-dependencies Document 15/1,388 ++ 954 --
Merge 8894186f0d3a8f3ec68b606e5ec475e3aa94bcf2 into b0a3e71a91adfd1dfb97b5060d054618c2a147aa
Git Commit 0d8b68cd Branch pull/66/merge Document 10/1,219 ++ 1,300 --
chore(deps): Update all non-major dependencies
Git Commit 8894186f Branch renovate/all-non-major-dependencies Document 10/1,219 ++ 1,300 --
ipaleka frontend
Added forfeit destination from the chain and interface state function to the Dust Sweep
Git Commit d8b693b6 Branch v1_0_0 Document 3/17 ++ 2 --
urtho pg_algorand
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
Git Commit b386e114 Branch main Document 10/909 ++ 4 --
gabrielkuettel vibekit
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
Git Commit 8e42dff3 Branch main Document 6/186 ++ 2 --
Merge 17518856a0c23126bfae87aef887ad1abd7133e4 into 0f211bf113f6199f1eaf28fa1f1ba2de3c0409b0
Git Commit c5fef02e Branch pull/401/merge Document 12/314 ++ 46 --
Charles algostack
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>
Git Commit a466d826 Branch main Document 1/3 ++ 2 --
Merge b22b5aba0918d651293237dd21b6025ad7272003 into 2535dcaf5bfdd85c66e8efa6451466d9cd740e04
Git Commit 8c70ddd2 Branch pull/369/merge Document 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>
Git Commit b22b5aba Branch dependabot/gradle/DisneyScenicRides/androidx.navigation-navigation-compose-2.10.0 Document 1/1 ++ 1 --