PackageTrack
Sign in Get early access

github.com/gobuffalo/buffalo

v1.1.4 #470 most downloaded on Go modules gobuffalo/buffalo

What this package is like to depend on

Last release 5 months ago

21 Mar 2026

Ships unpredictably

gaps range from 9 days to 2.3 years

Rarely documented

notes for 10 of 125 stable releases

Nothing withdrawn

no release was ever pulled

10 years old

320 releases · first in 2016

5 releases in the last 12 months

see the full history below

Release timeline

320 releases · Dec 2016 to Mar 2026
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 60 of 320
  1. v1.1.5-0.20260321143144-2aa9868365cd 21 Mar 2026 pre-release

    Nothing published for this version

  2. v1.1.4 20 Mar 2026
    Release notes

    Security

    • Added automated vulnerability scanning with govulncheck CI job running on every push and PR
    • Fixed multiple HIGH severity vulnerabilities in golang.org/x/net by upgrading to v0.45.0:
    • Fixed multiple MEDIUM severity vulnerabilities in golang.org/x/net:
    • Added SECURITY.md with vulnerability reporting guidelines

    Features

    • Support for multiple file uploadsc.File() now supports uploading multiple files in a single form field (#2389)
    • Template metadata injection — Templates can now access file metadata (path, base name, extension, modification time) via configurable keys. Added TemplateMetadataKeys and TemplateBaseDir to render options.
    • Assert middleware — New testing middleware to assert handler behavior in unit tests (#2339)
    • Better error context — Errors now display stack traces in development mode when the original error supports it

    Code Modernization

    • Modernized Go syntax — Replaced all interface{} with any (Go 1.18+)
    • Updated error handling — Replaced deprecated os.IsNotExist with errors.Is(err, os.ErrNotExist) (Go 1.13+)
    • Updated error messages to reference map[string]any

    Performance Improvements

    • Reduced memory allocations — Optimized Render() to avoid unnecessary memory allocations
    • Improved DefaultContext performance — Replaced sync.Map with sync.Mutex for better concurrent performance

    Refactoring

    • Moved error templates to internal/templates/ directory and co-located embed directives in errors.go for better code organization
    • Removed 4 direct dependencies by replacing with internal implementations:
      • github.com/dustin/go-humanize → internal formatBytes()
      • github.com/gobuffalo/grift → removed (was unused)
      • github.com/psanford/memfstesting/fstest.MapFS
      • github.com/gobuffalo/nullsinternal/nulls package

    Maintenance & Cleanup

    • Updated to Go 1.25 — Minimum Go version raised to 1.25.0; CI tests with Go 1.25 and 1.26
    • Removed unused dotfiles — Cleaned up legacy ESLint, CSSLint, Codecov, CodeClimate, and golangci configurations from pre-frontend-tooling era
    • Organized go.mod — Separated direct and indirect dependencies for clarity
    • Updated all gobuffalo dependencies to latest stable versions

    Bug Fixes

    • Fixed nulls.Time decoding — Empty values now correctly decode as NULL instead of "0001-01-01" (#2395)
    • Fixed DefaultContext data loading — Resolved issue where DefaultContext wasn't properly loading newRequestData
    • Improved test isolation — Added ResetContentType() method to Buffalo for better test isolation; fixed test pollution in template helper tests

    CI/CD Improvements

    • Updated CI workflow to test with Go 1.25 and 1.26
    • Added govulncheck vulnerability scanning on all builds
    • Updated GitHub Actions to latest versions

    Note: This release contains important security fixes. All users are encouraged to upgrade promptly.
    Migration: No breaking changes. Update your go.mod:

    go get github.com/gobuffalo/buffalo@latest
    Open source →
  3. v1.1.3 07 Oct 2025
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v1.1.2...v1.1.3

    Open source →
  4. v1.1.2 17 May 2025
    Release notes

    What's Changed

    Full Changelog: v1.1.1...v1.1.2

    Open source →
  5. v1.1.2-0.20250508161011-b9c195d35cba 08 May 2025 pre-release

    Nothing published for this version

  6. v1.1.1 07 May 2025
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v1.1.0...v1.1.1

    Open source →
  7. v1.1.0 26 Jan 2023
    Release notes

    What's Changed

    • removed pop logger setting that is not required to do by buffalo by @sio4 in #2346
    • added assert middleware to assert handler's behavior. (fix #2339) by @sio4 in #2345
    • made panic event to use the same standard payload type by @sio4 in #2352
    • For nulls.Time, decode empty value as NULL by @travisturner in #2359
    • enabled stack trace when the original error support it (in dev and event) by @sio4 in #2361
    • process: version bump and module update by @sio4 in #2363

    New Contributors

    Full Changelog: v1.0.1...v1.1.0

    Open source →
  8. v1.0.2-0.20230103200110-0ed3bfe50377 03 Jan 2023 pre-release

    Nothing published for this version

  9. v1.0.1 06 Oct 2022
    Release notes

    What's Changed

    • safer error handling by @schparky in #2322
    • update module dependencies, dependabot configuration, and stale action by @sio4 in #2331
    • added detailed comment for render.Download() by @sio4 in #2333
    • made request logger the last middleware by @sio4 in #2334
    • upgrade module dependencies and version bump by @sio4 in #2336

    See also milestone issue for this release: #2332

    Full Changelog: v1.0.0...v1.0.1

    Open source →
  10. v1.0.1-0.20251022184121-f33fc54eb86f 22 Oct 2025 pre-release

    Nothing published for this version

  11. v1.0.1-0.20221027130320-b29eff1c7568 27 Oct 2022 pre-release

    Nothing published for this version

  12. v1.0.0 25 Aug 2022
    Release notes

    Congratulations 🎉 Buffalo core v1!

    (No code changes since v0.18.9, just a few module dependency updates)

    Full Changelog: v0.18.9...v1.0.0

    Open source →
  13. v0.18.10-0.20220825105216-23ae76ca7028 25 Aug 2022 pre-release

    Nothing published for this version

  14. v0.18.9 12 Jul 2022
    Release notes

    What's Changed

    • updated genny version one more time to fix a warning message.

    Full Changelog: v0.18.8...v0.18.9

    Open source →
  15. v0.18.8 12 Jul 2022
    Release notes

    What's Changed

    • fix template based i18n support issues by @sio4 in #2259
    • Reduce dependencies on external libraries by @fasmat in #2260
    • using path rather than filepath for URL-ish internal expressions by @sio4 in #2262
    • fixed racing condition of the simple worker by @sio4 in #2266
    • replace the package refresh with the forked gobuffalo version by @sio4 in #2271
    • replaced grift with gobuffalo mirror and dependency update by @sio4 in #2293

    Full Changelog: v0.18.7...v0.18.8

    Open source →
  16. v0.18.8-0.20220621075402-754d7758a284 21 Jun 2022 pre-release

    Nothing published for this version

  17. v0.18.8-0.20220530092212-48fe280c40c4 30 May 2022 pre-release

    Nothing published for this version

  18. v0.18.8-0.20220514145002-1112def7d682 14 May 2022 pre-release

    Nothing published for this version

  19. v0.18.7 04 May 2022
    Release notes

    What's Changed

    Full Changelog: v0.18.6...v0.18.7

    Open source →
  20. v0.18.6 19 Apr 2022

    Nothing published for this version

  21. v0.18.6-0.20220421152609-11507d3375ec 21 Apr 2022 pre-release

    Nothing published for this version

  22. v0.18.6-0.20220419200222-81762174d82a 19 Apr 2022 pre-release

    Nothing published for this version

  23. v0.18.6-0.20220418173420-9d7343390d4f 18 Apr 2022 pre-release

    Nothing published for this version

  24. v0.18.6-0.20220408210305-e8274e66e2e7 08 Apr 2022 pre-release

    Nothing published for this version

  25. v0.18.6-0.20220407143837-bb0afcb13e9e 07 Apr 2022 pre-release

    Nothing published for this version

  26. v0.18.5 22 Mar 2022

    Nothing published for this version

  27. v0.18.5-0.20220408201132-6531d1c3a4f6 08 Apr 2022 pre-release

    Nothing published for this version

  28. v0.18.5-0.20220405180804-f25bbeeb8f10 05 Apr 2022 pre-release

    Nothing published for this version

  29. v0.18.5-0.20220402134824-f330f9bfab09 02 Apr 2022 pre-release

    Nothing published for this version

  30. v0.18.5-0.20220325181556-999fb9d40067 25 Mar 2022 pre-release

    Nothing published for this version

  31. v0.18.4 08 Mar 2022

    Nothing published for this version

  32. v0.18.4-0.20220308222229-f63f199bcf2f 08 Mar 2022 pre-release

    Nothing published for this version

  33. v0.18.4-0.20220305180620-c341dc272fc1 05 Mar 2022 pre-release

    Nothing published for this version

  34. v0.18.3 04 Feb 2022

    Nothing published for this version

  35. v0.18.3-0.20220204162926-c9873bd9dace 04 Feb 2022 pre-release

    Nothing published for this version

  36. v0.18.3-0.20220204161802-96d21731bf0a 04 Feb 2022 pre-release

    Nothing published for this version

  37. v0.18.3-0.20220203130808-d0eaea4fe95f 03 Feb 2022 pre-release

    Nothing published for this version

  38. v0.18.2 09 Dec 2021

    Nothing published for this version

  39. v0.18.2-0.20211209172650-bde2103f0732 09 Dec 2021 pre-release

    Nothing published for this version

  40. v0.18.1 28 Nov 2021

    Nothing published for this version

  41. v0.18.1-0.20211128190958-4e1771c17e3f 28 Nov 2021 pre-release

    Nothing published for this version

  42. v0.18.0 24 Nov 2021

    Nothing published for this version

  43. v0.17.6-0.20211124194106-0a9008a51fb2 24 Nov 2021 pre-release

    Nothing published for this version

  44. v0.17.6-0.20211124193214-f393e8a686f5 24 Nov 2021 pre-release

    Nothing published for this version

  45. v0.17.6-0.20211124163325-36b8adfbfc50 24 Nov 2021 pre-release

    Nothing published for this version

  46. v0.17.5 20 Nov 2021

    Nothing published for this version

  47. v0.17.5-0.20211120163957-c60eeea0f4a4 20 Nov 2021 pre-release

    Nothing published for this version

  48. v0.17.5-0.20211120163408-4644eccd2946 20 Nov 2021 pre-release

    Nothing published for this version

  49. v0.17.4 06 Nov 2021

    Nothing published for this version

  50. v0.17.4-0.20211106162759-6781b339b9a8 06 Nov 2021 pre-release

    Nothing published for this version

  51. v0.17.3 01 Sep 2021

    Nothing published for this version

  52. v0.17.2 07 Aug 2021

    Nothing published for this version

  53. v0.17.1 07 Aug 2021

    Nothing published for this version

  54. v0.17.1-beta 07 Aug 2021 pre-release

    Nothing published for this version

  55. v0.17.1-0.20210807131501-fd0546e7bd64 07 Aug 2021 pre-release

    Nothing published for this version

  56. v0.17.0 07 Aug 2021

    Nothing published for this version

  57. v0.16.28-0.20210807124547-5d4822171324 07 Aug 2021 pre-release

    Nothing published for this version

  58. v0.16.28-0.20210806115146-b29defa8ae59 06 Aug 2021 pre-release

    Nothing published for this version

  59. v0.16.27 06 Aug 2021

    Nothing published for this version

  60. v0.16.26 06 Jul 2021

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive