12 hours ago
piko

v0.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/andydunstall/piko/compare/v0.8.1...v0.9.0

17 hours ago
redis

9.17.3

🐛 Bug Fixes

  • Connection Pool: Fixed zombie wantConn elements accumulation in wantConnQueue that could cause resource leaks in high concurrency scenarios with dial failures (#3680) by @cyningsun
  • Stream Commands: Fixed XADD and XTRIM commands to use exact threshold (=) when Approx is false, ensuring precise stream trimming behavior (#3684) by @ndyakov
  • Connection Pool: Added ConnMaxLifetimeJitter configuration to distribute connection expiration times and prevent the thundering herd problem when many connections expire simultaneously (#3666) by @cyningsun
  • Client Options: Added DialerRetries and DialerRetryTimeout fields to ClusterOptions, RingOptions, and FailoverOptions to allow configuring connection retry behavior for cluster, ring, and sentinel clients (#3686) by @naveenchander30

Contributors

We'd like to thank all the contributors who worked on this release!

@cyningsun, @naveenchander30, and @ndyakov


Full Changelog: https://github.com/redis/go-redis/compare/v9.17.2...v9.17.3

17 hours ago
go-redis

9.17.3

🐛 Bug Fixes

  • Connection Pool: Fixed zombie wantConn elements accumulation in wantConnQueue that could cause resource leaks in high concurrency scenarios with dial failures (#3680) by @cyningsun
  • Stream Commands: Fixed XADD and XTRIM commands to use exact threshold (=) when Approx is false, ensuring precise stream trimming behavior (#3684) by @ndyakov
  • Connection Pool: Added ConnMaxLifetimeJitter configuration to distribute connection expiration times and prevent the thundering herd problem when many connections expire simultaneously (#3666) by @cyningsun
  • Client Options: Added DialerRetries and DialerRetryTimeout fields to ClusterOptions, RingOptions, and FailoverOptions to allow configuring connection retry behavior for cluster, ring, and sentinel clients (#3686) by @naveenchander30

Contributors

We'd like to thank all the contributors who worked on this release!

@cyningsun, @naveenchander30, and @ndyakov


Full Changelog: https://github.com/redis/go-redis/compare/v9.17.2...v9.17.3

1 days ago
wails

Wails v3.0.0-alpha.63

Wails v3 Alpha Release - v3.0.0-alpha.63

Fixed

  • Fix Position() and SetPosition() using inconsistent coordinate systems on macOS, causing window position drift when saving/restoring state (#4816) by @leaanthony

🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.

Installation:

go install github.com/wailsapp/wails/v3/cmd/wails3@v3.0.0-alpha.63

⚠️ Alpha Warning: This is pre-release software and may contain bugs or incomplete features.

4 days ago
wails

Wails v3.0.0-alpha.62

Wails v3 Alpha Release - v3.0.0-alpha.62

Fixed

  • Fix SetProcessDpiAwarenessContext "Access is denied" error when DPI awareness is already set via application manifest (#4803)

🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.

Installation:

go install github.com/wailsapp/wails/v3/cmd/wails3@v3.0.0-alpha.62

⚠️ Alpha Warning: This is pre-release software and may contain bugs or incomplete features.

4 days ago
ristretto

v2.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/dgraph-io/ristretto/compare/v2.3.0...v2.4.0

6 days ago
wails

Wails v3.0.0-alpha.61

Wails v3 Alpha Release - v3.0.0-alpha.61

Fixed

  • Update the docs page for keyboard shortcuts and corrects the type of the callback parameter for KeyBinding.Add by @ndianabasi
  • Fix documentation regarding generating custom binding, must use -d String instead of -o String

🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.

Installation:

go install github.com/wailsapp/wails/v3/cmd/wails3@v3.0.0-alpha.61

⚠️ Alpha Warning: This is pre-release software and may contain bugs or incomplete features.

7 days ago
echo

V5 is out

Echo v5 is maintenance release with major breaking changes

  • Context is now struct instead of interface and we can add method to it in the future in minor versions.
  • Adds new Router interface for possible new routing implementations.
  • Drops old logging interface and uses moderm log/slog instead.
  • Rearranges alot of methods/function signatures to make them more consistent.

Upgrade notes and v4 support:

  • Echo v4 is supported with security* updates and bug fixes until 2026-12-31
  • If you are using Echo in a production environment, it is recommended to wait until after 2026-03-31 before upgrading.
  • Until 2026-03-31, any critical issues requiring breaking v5 API changes will be addressed, even if this violates semantic versioning.

See API_CHANGES_V5.md for public API changes between v4 and v5, notes on upgrading.

Upgrading TLDR:

If you are using Linux you can migrate easier parts like that:

find . -type f -name "*.go" -exec sed -i 's/ echo.Context/ *echo.Context/g' {} +
find . -type f -name "*.go" -exec sed -i 's/echo\/v4/echo\/v5/g' {} +

macOS

find . -type f -name "*.go" -exec sed -i '' 's/ echo.Context/ *echo.Context/g' {} +
find . -type f -name "*.go" -exec sed -i '' 's/echo\/v4/echo\/v5/g' {} +

or in your favorite IDE

Replace all:

  1. echo.Context -> *echo.Context
  2. echo/v4 -> echo/v5

This should solve most of the issues. Probably the hardest part is updating all the tests.

10 days ago
logrus

v1.9.4

Notable changes

Full Changelog: https://github.com/sirupsen/logrus/compare/v1.9.3...v1.9.4

12 days ago
wails

Wails v3.0.0-alpha.60

Wails v3 Alpha Release - v3.0.0-alpha.60

Fixed

  • Fix menu not clearing children on menu.Update()

🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.

Installation:

go install github.com/wailsapp/wails/v3/cmd/wails3@v3.0.0-alpha.60

⚠️ Alpha Warning: This is pre-release software and may contain bugs or incomplete features.