8000 Tags · mindventures/kork · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: mindventures/kork

Tags

v5.4.6

Toggle v5.4.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
perf(redis): Optimize payloadSize (spinnaker#310)

Instead of builing a long string and getting the payload size
of that string, just compute the size of each string in the list
and return the sum.  This significantly reduces allocations during
caching cycles for the kubernetes provider, which often calls
mset with a long list of parameters.

v5.4.5

Toggle v5.4.5's commit message
chore(dependencies): added additional coroutines modules

v5.4.4

Toggle v5.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(rpc): exception handling on interceptors (spinnaker#308)

Changes AuthenticatedRequest to lombok SneakyThrow instead of catching
and rethrowing RuntimeException to ensure we don't actually wrap and
lose an IO Exception (this is preferrable when used in an interceptor
in okhttp).

Adds defensive catch Exception and rethrow as IOException on OkHttp
interceptors.

v5.4.3

Toggle v5.4.3's commit message
chore(dependencies): frigga 0.18.0 -> 0.19.1 (spinnaker#307)

v5.4.2

Toggle v5.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(ssl/blacklist): ops improvements for SSL blacklist (spinnaker#304)

adds metrics on checked/rejected requests
adds ability to disable via dynamic property service

v5.4.1

Toggle v5.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(exceptions): Adding tiered root-level exceptions (spinnaker#297)

Adds a hierarchy of root-level Spinnaker exception types:

```
SpinnakerException              # root-level class
|
+- UserException                # exceptional conditions caused by an end-user
|
+- IntegrationException         # exceptional conditions caused by non-core Spinnaker
|                               # code (cloud providers, extensions, etc)
|
+- SystemException              # exceptional conditions caused by core Spinnaker
|                               # (defects, infra/db errors, etc)
|
+- ConstraintViolationException # exceptional conditions that are potentially expected
```

All types extend from `RuntimeException`, although these can be used directly,
they should instead be treated as abstracts that are extended further for
specific cases.

v5.4.0

Toggle v5.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(exceptions): Adding tiered root-level exceptions (spinnaker#297)

Adds a hierarchy of root-level Spinnaker exception types:

```
SpinnakerException              # root-level class
|
+- UserException                # exceptional conditions caused by an end-user
|
+- IntegrationException         # exceptional conditions caused by non-core Spinnaker
|                               # code (cloud providers, extensions, etc)
|
+- SystemException              # exceptional conditions caused by core Spinnaker
|                               # (defects, infra/db errors, etc)
|
+- ConstraintViolationException # exceptional conditions that are potentially expected
```

All types extend from `RuntimeException`, although these can be used directly,
they should instead be treated as abstracts that are extended further for
specific cases.

v5.3.8

Toggle v5.3.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(headers): fix mixed up request/execution_id headers (spinnaker#302)

also, remove the side-effect of generating request id for now

v5.3.7

Toggle v5.3.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(http-headers): Make sure X-SPINNAKER-REQUEST-ID is always generat…

…ed (spinnaker#298)

If we don't call `propagate` the `X-SPINNAKER-REQUEST-ID` doesn't get generated,
so unless it's there from the get go (e.g. requestFilter) it will not be set making
it difficult to trace API calls from one log to another.

This ensures that the `X-SPINNAKER-REQUEST-ID` header is always generated

v5.3.6

Toggle v5.3.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(dependencies): autobump on final release (spinnaker#300)

0