Skip to content

Releases: go-goyave/goyave

Release v5.4.3

22 Nov 15:12
fc57b4c
Compare
Choose a tag to compare
  • Exported the T field of testutil.LogWriter struct. This field not being exported was an oversight.

Release v5.4.2

15 Nov 15:45
e2e2fb1
Compare
Choose a tag to compare
  • Fixed Distinct validation rule not passing for empty arrays.

Release v5.4.1

22 Oct 13:03
aded2d6
Compare
Choose a tag to compare
  • The parse middleware is now skipped if the matched route is the special "not found" or "method not allowed" route.

Release v5.4.0

07 Oct 08:10
db452bd
Compare
Choose a tag to compare
  • Added a context.Context field to the validation.Options and validation.Context structures. If not provided, it defaults to context.Background().
  • The built-in validation middleware now uses the request context in the validation options.
    • The DB instance used in the validation options by the built-in validation middleware was already injected with the request context. You don't need to update your custom validators.
    • You may want to update places where you are using manual validation. However, those will continue to work exactly like they used to if you don't change anything.

Full Changelog: v5.3.0...v5.4.0

Release v5.3.0

22 Sep 14:21
3983fc5
Compare
Choose a tag to compare

What's Changed

  • Added slog.DiscardLogger(), which redirects logs to io.Discard. (#228 #229)
  • testutil.TestServer now uses the discard logger by default instead of testutil.LogWriter.

This change was made so logs written during tests should usually be silent. To make it more convenient, this is now the default behavior. Sometimes it is still handy to see logs while writing or debugging a test. For this use-case, you can use testutil.LogWriter:

func TestSomething(t *testing.T) {
	opts := goyave.Options{
		Logger: slog.New(slog.NewHandler(true, &testutil.LogWriter{t: t})),
	}
	server := testutil.NewTestServerWithOptions(t, opts)
	//...
}

New Contributors

Full Changelog: v5.2.1...v5.3.0

Release v5.2.1

12 Aug 15:01
98d41b9
Compare
Choose a tag to compare
  • Fixed a panic when a user service returned gorm.ErrRecordNotFound and a zero-value model in the auth.JWTController's Login handler. (#221 #224)

Full Changelog: v5.2.0...v5.2.1

Release v5.2.0

31 Jul 14:39
3e4f090
Compare
Choose a tag to compare
  • Added support for response and chained writer flushing. (#215 #218)
  • Added support for the clickhouse database dialect. (by @AidanKenney in #219, #195)
  • Updated the UniqueArray/ExistsArray validators to support ClickHouse. ((by @AidanKenney)
  • Changed the default status handler for code 400 Bad Request to the new goyave.ParseErrorStatusHandler. This status handler's behavior is identical to the previous one except it returns explicit error messages in the response when the parse middleware fails to parse a user's request. (by @BowlOfSoup in #217, #216)
  • Added lang.Default global variable, which contains the builtin default en-US language. (#214 #213)
  • Fixed a panic if no Language is given in the validation.Options when manually validating. Instead, lang.Default will be used. (#214 #213)
  • Added deflate, lzw, br and zstd encoders for the compress middleware. (by @AidanKenney in #220, #197, #198, #199, #200)

New Contributors

Full Changelog: v5.1.1...v5.2.0

Release v5.1.1

05 Jul 12:12
8c398da
Compare
Choose a tag to compare
  • Validation:
    • Fixed a panic when validating a property of an object contained by a root array.
    • Fixed a panic when adding an error on a root array element.
    • FIxed incorrect error path when adding an error on a root array element.
  • Response.SetWriter() will now Init() the given writer if it implements goyave.Composable.
  • Fixed status handlers in subrouters not being used. Only the main router's status handlers were effective. For special routes (not found, method not allowed), the main router's status handler will be used.

Full Changelog: v5.1.0...v5.1.1

Release v5.1.0

21 Jun 09:51
e9e30ad
Compare
Choose a tag to compare
  • Validation:
  • Configuration: added a Required flag for entries to prevent nil values by @BowlOfSoup in #211
  • Compress middleware: the order of the Encoders now determines server-side priority, which will help chose an encoder when there are client priority ties.
  • Optimization: use a sync.Pool for requests and responses for a small performance improvement.
  • util/httputil.ParseMultiValuesHeader:
    • The input header is now trimmed
    • The function returns an empty slice if the input is empty
    • Minor optimization

New Contributors

Full Changelog: v5.0.1...v5.1.0

Release v5.0.1

13 Jun 14:52
44a81c1
Compare
Choose a tag to compare
  • httputil: fixed a race condition when initializing the quality value regex
  • util/session: improved support for nested transactions