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

Tags: titirigaiulian/echo

Tags

v1.561.0

Toggle v1.561.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(trigger): adds pipeline trigger status field (spinnaker#289)

v1.560.1

Toggle v1.560.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(fiat): Set `@EnableFiatAutoConfig` to avoid unnecessary auth requ…

…irements (spinnaker#286)

Original intention was to not require full blown `fiat` to use
`FiatStatus` but unfortunately spring security is brought in as a
transitive dependency.

This PR is a simpler alternative to moving `FiatStatus` and the
related configuration properties classes to a new artifact that
would not bring in any unnecessary dependencies.

fixes spinnaker/spinnaker#2949

v1.560.0

Toggle v1.560.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(pubsub/amazon): pull utils to kork, update permissions on sqs (sp…

…innaker#285)

v1.559.0

Toggle v1.559.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(fiat): Delegate whether fiat is enabled to `FiatStatus` (spinnak…

…er#283)

This allows for fiat to be selectively enabled at runtime via the
DynamicConfigService (environment-specific).

`s/CorsFilter/EchoCorsFilter` to get around an equivalently named bean
in spring boot.

v1.558.3

Toggle v1.558.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(*): Bump kork to 0.159.2 (spinnaker#281)

v1.558.2

Toggle v1.558.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(*): Bump spinnaker-dependencies to 0.158.0 (spinnaker#280)

version-1.0.0

Toggle version-1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(pubsub/google): don't restart when subscription doesn't exist (sp…

…innaker#276) (spinnaker#279)

v1.558.1

Toggle v1.558.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(json): prevent infinite recursion when serializing pipelines (spi…

…nnaker#271)

Break the cycle by ignoring the Trigger.parent field in the output.

v1.558.0

Toggle v1.558.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(cron): fallback for cron triggers with null id (spinnaker#270)

* fix(cron): fallback for cron triggers with null id

If pipeline configurations with null cron trigger ids somehow went past
front50, we would have "flagging" registrations: new triggers would be found,
then on the next pass of the PipelineConfigsPollingAgent we would find
scheduled actions with no corresponding triggers (since they don't have)
a matching id. We would then deregister then, only to register them again
right away, and so on.

With this change, we no longer need a persisted id for cron triggers in
the pipeline configurations (which is bound to be messed with, deleted,
copied, mangled...). This essentially deprecates the stored trigger ids in 
pipeline configs in favor of the dynamically generated ones

generateFallbackId() hashes the toString() representation of Trigger,
which should work fine as long as it includes at least the parent
pipeline id and the cron expression

v1.557.1

Toggle v1.557.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(metrics): replace Spring Boot metrics with Spectator (spinnaker#267)

Also:
* pick up new spinnaker-dependencies for spectator 0.68.0 update
* update jacoco, which otherwise conflicts with spectator
* add explicit dependency on spectatorApi when we use it
* add exception tag on error metrics
* don't use a mock Registry when unnecessary
* make triggers.cronMisfires a timer (so that we can estimate trigger lag)
* adjust some log levels and messages
* add a pipelineConfigsPollingAgent.executionTimeMillis timer
0