Iris v12.0.1 Release Notes

Release Date: 2019-10-26 // over 4 years ago
    • Add version suffix of the import path , learn why and see what people voted at issue #1370

    • ๐Ÿ“ฆ All errors are now compatible with go1.13 errors.Is, errors.As and fmt.Errorf and a new core/errgroup package created
    • ๐Ÿ›  Fix #1383
    • Report whether system couldn't find the directory of view templates
    • โœ‚ Remove the Party#GetReport method, keep Party#GetReporter which is an error and an errgroup.Group.
    • โœ‚ Remove the router's deprecated methods such as StaticWeb and StaticEmbedded_XXX
    • The Context#CheckIfModifiedSince now returns an context.ErrPreconditionFailed type of error when client conditions are not met. Usage: if errors.Is(err, context.ErrPreconditionFailed) { ... }
    • โž• Add SourceFileName and SourceLineNumber to the Route, reports the exact position of its registration inside your project's source code.
    • ๐Ÿ›  Fix a bug about the MVC package route binding, see PR #1364
    • โž• Add mvc/Application#SortByNumMethods as requested at #1343
    • โž• Add status code 103 Early Hints
    • ๐Ÿ›  Fix performance of session.UpdateExpiration on 200 thousands+ keys with new radix as reported at issue #1328
    • ๐Ÿ†• New redis session database configuration field: Driver: redis.Redigo() or redis.Radix(), see updated examples
    • โž• Add Clusters support for redis:radix session database (Driver: redis:Radix()) as requested at issue #1339
    • Create Iranian README_FA translation with PR #1360
    • Create Korean README_KO translation with PR #1356
    • Create Spanish README_ES and HISTORY_ES translations with PR #1344.

    โšก๏ธ The iris-contrib/middleare and examples are updated to use the new github.com/kataras/iris/v12 import path.