Ecosystem metrics

New Repos
5
New
Commits
755
down 19.6%
Releases
8
up 100.0%
Contributors
48
down 4.0%
Merges
15
down 68.1%

Repository Explorer

7011 commits in all time Jun 06, 2026 03:27 – Sep 04, 2026 03:27 UTC
Merge a59598ec20ea3d717f5c4ba3410d7a6d368f7247 into dd7be47db270b641b07a8abb0bb3995360a8e34f
Git Commit b1515d45 Branch pull/912/merge Document 1/1 ++ 1 --
Merge 732f2cd77e2d1484fb00da389b267741482d2c6c into dd7be47db270b641b07a8abb0bb3995360a8e34f
Git Commit 11a37522 Branch pull/913/merge Document 1/1 ++ 1 --
build(deps-dev): update @typescript-eslint/parser requirement
Updates the requirements on [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) to permit the latest version.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.69.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.69.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Git Commit 732f2cd7 Branch dependabot/npm_and_yarn/typescript-eslint/parser-tw-8.69.0 Document 1/1 ++ 1 --
build(deps-dev): update @typescript-eslint/eslint-plugin requirement
Updates the requirements on [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) to permit the latest version.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.69.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.69.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Git Commit a59598ec Branch dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-tw-8.69.0 Document 1/1 ++ 1 --
Merge de93cb088f6985eb2735b07bf527aecc6fb259a6 into 79b18a96a154f8effb58f933f5f0007235ee4cfe
Git Commit 67ecdd3b Branch pull/6724/merge Document 3/223 ++ 19 --
Update agreement/service.go
Co-authored-by: cce <51567+cce@users.noreply.github.com>
Git Commit de93cb08 Branch pull/6724/head Document 1/3 ++ 4 --
Merge d39215db80f726520ff4ac25000fcc54f982266c into 361d3066ffaca4241991cc6563403417bf562ecf
Git Commit 66eb2938 Branch pull/23/merge Document 1/4,208 ++ 3,553 --
chore(deps): lock file maintenance
Git Commit d39215db Branch renovate/lock-file-maintenance Document 1/4,208 ++ 3,553 --
Merge f9c1e9b3d95a0cd8ac27f32dc98a568035282dfb into 361d3066ffaca4241991cc6563403417bf562ecf
Git Commit 9450b9ce Branch pull/17/merge Document 4/3,364 ++ 1,955 --
fix(deps): update all non-major dependencies
Git Commit f9c1e9b3 Branch renovate/all-minor-patch Document 4/3,364 ++ 1,955 --
Merge eb24f38145ca89dc2f7317a579249fe9b3cf66ec into b0a3e71a91adfd1dfb97b5060d054618c2a147aa
Git Commit bc94ae17 Branch pull/66/merge Document 10/1,219 ++ 1,300 --
chore(deps): Update all non-major dependencies
Git Commit eb24f381 Branch renovate/all-non-major-dependencies Document 10/1,219 ++ 1,300 --
renovate[bot] use-wallet
Merge 561261daad0f1b815d15303a93dedcbed2d43e10 into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
Git Commit 486e9ef0 Branch pull/449/merge Document 1/1,272 ++ 1,232 --
renovate[bot] use-wallet
chore(deps): lock file maintenance
Git Commit 561261da Branch renovate/lock-file-maintenance Document 1/1,272 ++ 1,232 --
renovate[bot] use-wallet
Merge 1a4a97e39aeec6b7be2b57ba9a182ce6668bb0fe into 7861a68efdc034d4a01f5ba68f1acff97e28e8e6
Git Commit 26fdb859 Branch pull/454/merge Document 15/1,388 ++ 954 --
renovate[bot] use-wallet
chore(deps): update non-major dependencies
Git Commit 1a4a97e3 Branch renovate/non-major-dependencies Document 15/1,388 ++ 954 --
Stop the drift banner crashing a Windows console, and guard it
verify_deployment.py:276 printed a U+2194 inside the DRIFT branch. On a
cp1252 console that raises UnicodeEncodeError *after* the comparison has
run and correctly found the mismatch, so the process dies inside its own
failure report and exits 2 ("could not complete the check") instead of 1
("DRIFT").

The exit codes are a contract, stated in that file's own docstring: 0
match, 1 drift, 2 could not check. A reviewer who sees 2 concludes the
tooling failed, not that the deployment diverged. So this downgraded a
real finding to an inconclusive one -- silently, and only on the platform
the maintainer actually works on.

It survived this long because the line only executes when something is
wrong. No green run could ever reach it. That is exactly the shape of
defect this repo keeps finding: a path that is never exercised until it
matters.

Adds sdk/tests/test_reports_print_on_a_windows_console.py, which scans the
scripts a reviewer is told to run for characters cp1252 cannot encode on
print lines. Em dash and ellipsis are deliberately allowed -- they ARE in
cp1252 and are used throughout these reports; flagging them would make the
guard unusable and it would be deleted.

The guard was mutation-tested rather than trusted: reintroducing the U+2194
makes it fail, and it does not fire on plain ASCII or on em dash/ellipsis.
A scan that cannot fail would have been worth nothing here.

Suite: 145 passed, 5 skipped. verify_deployment.py still prints MATCH.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Git Commit 9b987a45 Branch fix/drift-banner-crashes-on-windows-consoles Document 2/85 ++ 1 --
Merge pull request #43 from brandonjsellam-Releone/fix/docs-match-what-the-tools-report
Close the TestNet contract drift: deploy app 770964251 from the committed artifact
Git Commit d5551728 Branch main Document 27/867 ++ 74 --
joe-p algokit-lora
Merge bf9217642d6c9b08ccc6ffa4eab7893f8da50675 into 746126278c85c16b1da5c8570e0e156aafb24de4
Git Commit dc49720a Branch pull/610/merge Document 1/3 ++ 1 --
joe-p algokit-lora
ci: use printf to avoid quote escape issues
Git Commit bf921764 Branch ci/printf Document 1/3 ++ 1 --
joe-p algokit-lora
fix: use utils 9.2.2 to work with Pera's PQ fee changes (#609)
See https://github.com/algorandfoundation/algokit-utils-ts/pull/612
Git Commit 74612627 Branch main Document 2/6 ++ 6 --
Ignore the artifacts scripts/verify_all.sh leaves in the repo root
README tells reviewers to run the hermetic verification, and running it
unpacks the pinned Falcon tarball to falcon-src/ and builds in place,
leaving codec.lib and libfalcondet1024.pdb behind. .gitignore covered
build/ but not these, so following the documented path left three
untracked files and a dirty `git status`.

Found by actually running the advertised command rather than assuming it
was clean. Full run: 4 axes PASS, exit 0 -- including Axis C re-signing
the committed goldens byte-identically from a ziglang build, which is a
different compiler from the MinGW gcc used elsewhere in this session.
Cross-compiler byte-identity is what FALCON_FPEMU=1 exists to guarantee,
now demonstrated rather than asserted.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Git Commit b1f9e669 Branch main Document 1/6 ++ 0 --
Merge 6e592d460db6e394a4d4b9c6b2de6885cc2d5257 into 79b18a96a154f8effb58f933f5f0007235ee4cfe
Git Commit b767e071 Branch pull/6724/merge Document 3/224 ++ 19 --