Skip to content

Releases: inphinit/teeny.go

Version 0.2.3 👾

21 Feb 03:28
Compare
Choose a tag to compare

Fixed issue in route paths with characters used in RegExp

Version 0.2.2 👾

06 Feb 20:12
Compare
Choose a tag to compare
Removed unnecessary `if()` within the "for-loop"

Version 0.2.1 👾

05 Feb 14:09
Compare
Choose a tag to compare
  • Support for "405 Method Not Allowed" on parameterized routes
  • Support for ANY method ("ANY" represents that the route will accept any http method)

Version 0.2.0 👽

04 Feb 06:53
Compare
Choose a tag to compare
  • Separate app.SetCertificate(certFile string, keyFile string) method in app.SetCertificate(certFile string) and app.SetKey(keyFile string)
  • Support for CLI mode (with app.CliMode()), see commands:
    • --tls Enable TLS mode in your program
    • --tls Disable TLS
    • --debug Enable debug mode in your program
    • --debug Disable debug
    • --fcgi Enable Fast-CGI mode in your program
    • --fcgi Disable Fast-CGI
    • --cert Define certificate file
    • --key Define key file
    • --public Define folder for access static files
    • --host Define host address
    • --port Define port addres

Version 0.1.0 👽

03 Feb 06:07
Compare
Choose a tag to compare
  • Replace app.Pattern() by app.Params() method
  • Disable parameter checking if you don't use app.Params()

Version 0.0.2 👾

02 Feb 10:20
Compare
Choose a tag to compare
Rename module