9 hours 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.

3 days ago
logrus

v1.9.4

Notable changes

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

4 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.

6 days ago
tcell

Version 2.13.7 Bug Fix Release

This fixes two bugs:

  • wide not overwriting adjacent character (#976)
  • paste on Windows did not handle certain runes (#984)

What's Changed

Full Changelog: https://github.com/gdamore/tcell/compare/v2.13.6...v2.13.7

6 days ago
tcell

Version 3.1.1 Bug Fix Release

This principally fixes two bugs:

  • Certain runes would cause problems if pasted on Windows (could hang, wouldn't pass) due to Windows surrogate pair handling (#986)
  • Certain terminal emulators would give unfortunate results with certain wide characters (#976)

A bunch more progress made on the emulator subsystem as well, but its still not quite ready for public consumption, although it is used in the mock for testing tcell.

What's Changed

Full Changelog: https://github.com/gdamore/tcell/compare/v3.1.0...v3.1.1

7 days ago
wails

Wails v3.0.0-alpha.59

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

Changed

  • Update the README for the Drag N Drop example and highlights that Internal Drag and Drop is demonstrated with the example @ndianabasi

🤖 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.59

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

8 days ago
ini

1.67.1

What's Changed

New Contributors

Full Changelog: https://github.com/go-ini/ini/compare/v1.67.0...v1.67.1

9 days ago
tcell

Version 2.13.5 Bug Fix Release

This release addresses a problem with keypad keys in certain terminal emulators.

Full Changelog: https://github.com/gdamore/tcell/compare/v2.13.5...v2.13.6

9 days ago
tcell

Version 3.1.0 Feature Release

What's New

The main new feature here is improved support for mouse chords and additional mouse button reporting. It is now possible for multiple mouse buttons to be pressed together, and reported together.

A great deal of additional work was done on the emulator subsystem and in the mocks, yielding over 80% test coverage, with a number of associated bug fixes as a result.

What's Changed

Full Changelog: https://github.com/gdamore/tcell/compare/v3.0.6...v3.1.0

9 days ago
wails

Wails v3.0.0-alpha.58

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

Fixed

  • Fix outdated Manager API references in documentation (31 files updated to use new pattern like app.Window.New(), app.Event.Emit(), etc.) by @leaanthony
  • Fix Linux crash on panic in JS-bound Go methods due to WebKit overriding signal handlers (#3965) 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.58

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