Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: 15matias15/gosoline

Tags

v0.3.94

Toggle v0.3.94's commit message
kernel: refactored the kernel interface and split creation and execut…

…ion;

With this change we're splitting the creation and execution of a kernel into multiple parts.

This introduces mainly two advantages over the old approach:
    - once the kernel is created, the kernel gets immutable,
      which reduces some of the complexity which was caused due to a mutable kernel
    - having blueprints of the kernel and a factory to build everything
      enables us to build the modules and middlewares without running the kernel
      which makes it easier to build the the same kernel with different configurations

v0.3.93

Toggle v0.3.93's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
apiserver: added download handler (justtrackio#897)

This release adds a new type of API handler to the apiserver package: The `DownloadHandler` will act like a stream handler but don't require passing a JSON body. The goal is to provide a possibility for the server to answer a clients GET request (i.e. from a HTML anchor) with a streamed response (i.e. a file).

v0.3.92

Toggle v0.3.92's commit message
cloud: regenerate lambda api mocks;

v0.3.91

Toggle v0.3.91's commit message
cloud: regenerate lambda api mocks;

v0.3.90

Toggle v0.3.90's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
kernel/stage: kernels will now stop if a module returns an error; (ju…

…sttrackio#888)

v0.3.89

Toggle v0.3.89's commit message
grpcserver: introduce grpc server;

v0.3.88

Toggle v0.3.88's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
appctx/container.go now uses generics; (justtrackio#863)

v0.3.87

Toggle v0.3.87's commit message
build(deps): bump github.com/aws/aws-sdk-go-v2/service/resourcegroups…

…taggingapi

Bumps [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) from 1.13.3 to 1.13.4.
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@service/mgn/v1.13.3...service/xray/v1.13.4)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

v0.3.86

Toggle v0.3.86's commit message
clous/aws: updated lambda api mock;

v0.3.85

Toggle v0.3.85's commit message
metric: only use log level info for metric writers to prevent blocking;