Revel Versions Save

A high productivity, full-stack web framework for the Go language.

v0.9.1

10 years ago

Minor patch release to address a couple bugs.

Changes since v0.9.0:

  • [BUG] #529 - Wrong path was used to determine existence of .git
  • [BUG] #532 - Fix typo for new type ValidEmail

The full list of commits can be found here.

v0.9.0

10 years ago

Revel GitHub Organization

We've moved development of the framework to the @revel GitHub organization, to help manage the project as Revel grows. The old import path is still valid, but will not be updated in the future.

You'll need to manually update your apps to work with the new import path. This can be done by replacing all instances of github.com/robfig/revel with github.com/revel/revel in your app, and running:

$ cd your_app_folder
$ go get -u github.com/howeyc/fsnotify  # needs updating
$ go get github.com/revel/revel
$ go get github.com/revel/cmd/revel     # command line tools have moved

Note: if you have references to github.com/robfig/revel/revel in any files, you need to replace them with github.com/revel/cmd/revel before replacing github.com/robfig/revel! (note the prefix collision)

If you have any trouble upgrading or notice something we missed, feel free to hop in the IRC channel (#revel on Freenode) or send the mailing list a message.

Also note, the documentation is now at revel.github.io!

Changes since v0.8:

  • [BUG] #522 - revel new bug
  • [BUG] - Booking sample error
  • [BUG] #504 - File access via URL security issue
  • [BUG] #489 - Email validator bug
  • [BUG] #475 - File watcher infinite loop
  • [BUG] #333 - Extensions in routes break parameters
  • [FTR] #472 - Support for 3rd part app skeletons
  • [ENH] #512 - Per session expiration methods
  • [ENH] #496 - Type check renderArgs[CurrentLocalRenderArg]
  • [ENH] #490 - App.conf manual typo
  • [ENH] #487 - Make files executable on revel build
  • [ENH] #482 - Retain input values after form valdiation
  • [ENH] #473 - OnAppStart documentation
  • [ENH] #466 - JSON error template quoting fix
  • [ENH] #464 - Remove unneeded trace statement
  • [ENH] #457 - Remove unneeded trace
  • [ENH] #508 - Support arbitrary network types
  • [ENH] #516 - Add Date and Message-Id mail headers

The full list of commits can be found here.

v0.8

10 years ago

Changes since v0.7:

  • [BUG] #379 - HTTP 500 error for not found public path files
  • [FTR] #424 - HTTP pprof support
  • [FTR] #346 - Redis Cache support
  • [FTR] #292 - SMTP Mailer
  • [ENH] #443 - Validator constructors to improve v.Check() usage
  • [ENH] #439 - Basic terminal output coloring
  • [ENH] #428 - Improve error message for missing RenderArg
  • [ENH] #422 - Route embedding for modules
  • [ENH] #413 - App version variable
  • [ENH] #153 - $GOPATH-wide file watching aka hot loading

v0.6

10 years ago