Skip to content

Releases: justtrackio/gosoline

kernel: reworked module interface

25 Jan 07:47
Compare
Choose a tag to compare

removed boot from modules and switched to factory functions for creating modules

blob: adjusted initialization

21 Jan 09:38
Compare
Choose a tag to compare

The blob.NewStore func has been adjusted which is a breaking change.

Instead of passing a blob.Settings object, you now pass a name of the blob store. The settings are then resolved from the config from blobstore.<name>.

Furthermore the forceful prefixing of the appId.Application was removed, so that a developer can decide about the full prefix of his blob store. This is also a breaking change.

db-repo: return custom record not found error in query function

20 Jan 09:42
3c5f931
Compare
Choose a tag to compare

db_repo.Query will now return the custom NoQueryResultsError error type instead of gorm.ErrRecordNotFound

stream: improved kinesis output error handling

20 Jan 08:44
Compare
Choose a tag to compare
  • switched to the exec.BackoffExecutor for retrying kinesis put requests on failed records
  • added kinesis_request_id to all request logs for better debugging

exec improvements

18 Jan 16:11
Compare
Choose a tag to compare
  • improved logging to detect errors caused by reaching the configured max elapsed time threshold
  • added error check for Client.Timeout exceeded while awaiting headers
  • added error check for net/http: TLS handshake timeout

improve handling of db-repo record not found errors (#398)

14 Jan 14:42
3a37cc6
Compare
Choose a tag to compare

Introduced a new custom record not found error that wraps the model id and record id and removed the old db_repo.RecordNotFound error.
Additionally, the apiserver crud handlers will only log a warning if this error occurs and respond with a No Content HTTP status (204).

v0.1.183

03 Sep 11:33
Compare
Choose a tag to compare
http: added option to download a response into a file;

v0.1.127

20 Apr 08:41
Compare
Choose a tag to compare
cloud: fix aws config pointer race condition;

v0.1.109

20 Mar 09:36
Compare
Choose a tag to compare
stream: added multi producer based on std lib multiwriter

v0.1.80

11 Feb 13:16
Compare
Choose a tag to compare
ddb: batch get fix order;