Skip to content

Releases: go-andiamo/chioas

v1.16.3

01 Jul 18:16
8dab78e
Compare
Choose a tag to compare

Added typed ResponseHandler

v1.16.2

08 May 07:18
d71cfb1
Compare
Choose a tag to compare

UI Enhancements

  • Added header sections (often saves having to use custom template)
  • Added optional script elements

v1.16.1

05 May 18:19
aa62a30
Compare
Choose a tag to compare

Added endpoint disabling
Also:

  • Add fav icon capabilities to all ui options
  • Re-work rapidoc attributes (options)

v1.16.0

27 Apr 12:44
6cab31e
Compare
Choose a tag to compare

Added ability to server multiple UI styles on different docs paths

v1.15.0

21 Apr 15:53
4c7a02f
Compare
Choose a tag to compare

Added rapidoc-ui

v1.14.2

21 Apr 12:15
eef6e34
Compare
Choose a tag to compare

Fixed "null" response type

v1.14.1

03 Feb 13:25
2aa4fd0
Compare
Choose a tag to compare

Added typed.ArgExtractor[T]

v1.14.0

28 Jan 13:46
74fe976
Compare
Choose a tag to compare

Method.Handler can now accept method expressions
For example, previous versions had to use string method names for handlers...

mdef := chioas.Method{
  Handler: "PostFoos",
}

but now the handler can be set using a method expression, e.g...

mdef := chioas.Method{
  Handler: (*myapi).PostFoos,
}
  • handler can still be specified using strings
  • handlers specified by method expressions aids refactoring and code navigation

v1.13.5

02 Dec 11:48
d3b30d6
Compare
Choose a tag to compare

Added Schema.Format

v1.13.4

23 Nov 12:18
8fda997
Compare
Choose a tag to compare

Added Path.AutoOptionsMethod - allows auto OPTIONS methods on specific paths