Skip to content

chore(deps): bump docker/build-push-action from 6.19.2 to 7.0.0#1

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/docker/build-push-action-7.0.0
Closed

chore(deps): bump docker/build-push-action from 6.19.2 to 7.0.0#1
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/docker/build-push-action-7.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 23, 2026

Bumps docker/build-push-action from 6.19.2 to 7.0.0.

Release notes

Sourced from docker/build-push-action's releases.

v7.0.0

Full Changelog: docker/build-push-action@v6.19.2...v7.0.0

Commits
  • d08e5c3 Merge pull request #1479 from docker/dependabot/npm_and_yarn/docker/actions-t...
  • cbd2dff chore: update generated content
  • f76f51f chore(deps): Bump @​docker/actions-toolkit from 0.78.0 to 0.79.0
  • 7d03e66 Merge pull request #1473 from crazy-max/rm-deprecated-envs
  • 98f853d chore: update generated content
  • cadccf6 remove deprecated envs
  • 03fe877 Merge pull request #1478 from docker/dependabot/github_actions/docker/setup-b...
  • 827e366 chore(deps): Bump docker/setup-buildx-action from 3 to 4
  • e25db87 Merge pull request #1474 from crazy-max/rm-export-build-tool
  • 1ac2573 Merge pull request #1470 from crazy-max/node24
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 23, 2026
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.19.2 to 7.0.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@10e90e3...d08e5c3)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/docker/build-push-action-7.0.0 branch from 4a68ded to e8cdba9 Compare March 23, 2026 11:28
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 23, 2026

Looks like docker/build-push-action is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Mar 23, 2026
@dependabot dependabot bot deleted the dependabot/github_actions/docker/build-push-action-7.0.0 branch March 23, 2026 15:53
christianromeni added a commit that referenced this pull request Mar 25, 2026
Adds multi-deployment support per model with automatic routing,
failover, and retry logic. The #1 feature gap vs LiteLLM.

Config: models can define a `deployments` list with per-endpoint
provider, base_url, api_key, weight, and priority. Backward
compatible — existing single-deployment configs work unchanged.

Routing strategies: round-robin (default), least-latency, weighted,
priority. Router filters by health status and circuit breaker state.
All deployments unhealthy → tries all as last resort.

Retry: on 5xx/timeout/connection error, automatically tries the next
deployment. 4xx errors return immediately. No retry after streaming
starts. Per-deployment circuit breakers with independent cooldowns.

New: internal/router package, internal/db/deployments CRUD,
model_deployments table (migration 0003), Admin API deployment
endpoints, per-deployment health probing, routing retry metrics.

Community feature — no license gating.
christianromeni added a commit that referenced this pull request Mar 26, 2026
* feat: multi-deployment load balancing with fallbacks

Adds multi-deployment support per model with automatic routing,
failover, and retry logic. The #1 feature gap vs LiteLLM.

Config: models can define a `deployments` list with per-endpoint
provider, base_url, api_key, weight, and priority. Backward
compatible — existing single-deployment configs work unchanged.

Routing strategies: round-robin (default), least-latency, weighted,
priority. Router filters by health status and circuit breaker state.
All deployments unhealthy → tries all as last resort.

Retry: on 5xx/timeout/connection error, automatically tries the next
deployment. 4xx errors return immediately. No retry after streaming
starts. Per-deployment circuit breakers with independent cooldowns.

New: internal/router package, internal/db/deployments CRUD,
model_deployments table (migration 0003), Admin API deployment
endpoints, per-deployment health probing, routing retry metrics.

Community feature — no license gating.

* feat: expandable deployment rows in Models page

- Table component: generic renderExpandedRow/expandedKeys/onToggleExpand
- Models page: multi-deployment models show expand chevron, deployment
  count + strategy badge, aggregated health status
- Expanded view: sub-table with own headers (Deployment, Provider,
  Health, Base URL, Weight, Priority) per deployment
- Health aggregation: all unhealthy→unhealthy, all healthy→healthy,
  all unknown→unknown, mix→degraded
- ListModels: batch-fetch deployments (single query instead of N+1)
- ListDeploymentsByModelIDs: new batch DB method

* feat: deployment management UI + tests + docs

UI:
- Create Model dialog: mode switch (Single Endpoint / Load Balanced)
- Load Balanced mode: strategy selector, inline deployment list with
  add/edit/remove, creates model then deployments sequentially
- DeploymentDialog: shared create/edit dialog for individual deployments
- Expanded row: edit/delete buttons per deployment, add deployment
  button — only for API-sourced models (YAML is read-only)

Backend:
- Provider/base_url no longer required when model has strategy set

Tests:
- 11 DB deployment tests (CRUD, batch fetch, soft delete, conflicts)
- 14 API deployment tests (CRUD, validation, IDOR checks, key redaction)

Docs:
- Load Balancing section in configuration.md with strategies, retry
  behavior, health integration, and circuit breaker explanation

* fix: dialog scroll + UI polish for deployment management

- Dialog: max-h-[90vh] with scrollable content, thin scrollbar
- Dialog: slightly wider (max-w-xl)
- Create Model: advanced settings (pricing, context, timeout) behind
  collapsible to reduce dialog height
- Expand chevron only shown for models with deployments
- Add deployment "+" button only for load-balanced API models
- No deployment actions on YAML-sourced models
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants