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

Tags: bahzinga/gate

Tags

v4.49.0

Toggle v4.49.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
10000
fix(cleanup): exposing as GET, updating response (spinnaker#655)

v4.48.0

Toggle v4.48.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(swabbie): html endpoints for optOut and restore (spinnaker#634)

* feat(swabbie): html endpoints for optOut and restore

* also adding endpoint to view resource

v4.47.0

Toggle v4.47.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(web): request to clouddriver for applications should be unrestric…

…ted (spinnaker#642)

v4.46.1

Toggle v4.46.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(web): require application write permission to start a pipeline (s…

…pinnaker#633)

v4.46.0

Toggle v4.46.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(web): require application write permission to start a pipeline (s…

…pinnaker#633)

v4.45.0

Toggle v4.45.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(web): Serve `/applications` out of the recent cache (spinnaker#629)

A revised take on spinnaker#603 that applies a `@PostFilter`
authorization check.

Depends on spinnaker/front50#375

version-1.2.0

Toggle version-1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "feat(web): Serve `/applications` out of the recent cache (spiâ€
BD47
¦

…nnaker#603)" (spinnaker#627) (spinnaker#628)

This reverts commit beb38a5.

v4.44.2

Toggle v4.44.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(web): Update log message (spinnaker#624)

v4.44.1

Toggle v4.44.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(web): Avoid unnecessary calls to `jedisPool.getResource()` (spinn…

…aker#623)

Previously could have happened multiple times within the same request.

Also added a kill switch based on the presence of `app:deck` in the
`rateLimit:enforcing` set.

v4.44.0

Toggle v4.44.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(web): Support rate limits per source application (spinnaker#619)

```
rateLimit:
  learning: false
  enabled: true
  rateSeconds: 10
  capacity: 500
  redis:
    enabled: true
  capacityBySourceApp:
  - sourceApp: deck
    override: 100
```

Source application limits must be explicitly enabled in redis:

```
sadd "rateLimit:enforcing" "app:deck"
```

They can also be overridden in redis:

```
set "rateLimit:capacity:app:deck" 25
```

A per-principal capacity will override that of the source application.
0