Skip to content

Bump litellm from 1.57.8 to 1.72.2#145

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/litellm-1.72.2
Closed

Bump litellm from 1.57.8 to 1.72.2#145
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/litellm-1.72.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 9, 2025

Copy link
Copy Markdown

Bumps litellm from 1.57.8 to 1.72.2.

Release notes

Sourced from litellm's releases.

v1.72.2.rc

What's Changed

Full Changelog: BerriAI/litellm@v1.72.2-nightly...v1.72.2.rc

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.72.2.rc

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 180.0 202.1176564238615 6.388574207492582 0.0 1911 0 167.42231599999968 1358.2842469999719
Aggregated Passed ✅ 180.0 202.1176564238615 6.388574207492582 0.0 1911 0 167.42231599999968 1358.2842469999719

v1.72.2-nightly

What's Changed

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Bumps [litellm](https://github.com/BerriAI/litellm) from 1.57.8 to 1.72.2.
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

---
updated-dependencies:
- dependency-name: litellm
  dependency-version: 1.72.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

@cloudtap cloudtap left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hope this helps

@dependabot @github

dependabot Bot commented on behalf of github Jun 16, 2025

Copy link
Copy Markdown
Author

Superseded by #149.

@dependabot dependabot Bot closed this Jun 16, 2025
@dependabot dependabot Bot deleted the dependabot/pip/litellm-1.72.2 branch June 16, 2025 02:58
POWERFULMOVES pushed a commit to POWERFULMOVES/PMOVES-Archon that referenced this pull request Feb 12, 2026
…st-for-metrics-server

Add coverage for publisher metrics server endpoints
coleam00 pushed a commit that referenced this pull request Apr 7, 2026
* Fix: Copy git-ignored files to worktrees (#100)

Worktrees created via the orchestrator now copy git-ignored files (like
.env) based on configuration in .archon/config.yaml. This addresses the
issue where applications fail when running in worktrees due to missing
environment configuration.

Changes:
- Add copyFiles option to RepoConfig.worktree in config-types.ts
- Create worktree-copy.ts utility for parsing config and copying files
- Integrate file copying into WorktreeProvider.createWorktree()
- Add comprehensive tests for new functionality

Configuration example:
```yaml
worktree:
  copyFiles:
    - .env.example -> .env    # Copy and rename
    - .env                     # Copy as-is if exists
    - data/fixtures/           # Copy entire directory
```

Fixes #100

* Archive investigation for issue #100

* Fix: Add path traversal protection and improve error handling

- Add isPathWithinRoot() to block path traversal attacks (works on Unix/Windows)
- Add input validation to parseCopyFileEntry() for empty/invalid entries
- Improve error logging with structured data and error codes
- Separate config loading errors from file copy errors
- Use console.error for unexpected errors, console.log for expected skips
- Add 34 new tests for security, validation, and error handling
- 100% test coverage for worktree-copy.ts

* Add worktree copyFiles config for .env files

* Update bot mention from @remote-agent to @archon

- Update default botMention in GitHubAdapter to 'Archon'
- Update all docs to use @archon consistently
- Update test cases to use @archon variations
- The default botName in config is 'Archon', so this aligns the adapter

* Docs: Add worktree app testing instructions to CLAUDE.md
Tyone88 pushed a commit to Tyone88/Archon that referenced this pull request Apr 16, 2026
* Fix: Copy git-ignored files to worktrees (coleam00#100)

Worktrees created via the orchestrator now copy git-ignored files (like
.env) based on configuration in .archon/config.yaml. This addresses the
issue where applications fail when running in worktrees due to missing
environment configuration.

Changes:
- Add copyFiles option to RepoConfig.worktree in config-types.ts
- Create worktree-copy.ts utility for parsing config and copying files
- Integrate file copying into WorktreeProvider.createWorktree()
- Add comprehensive tests for new functionality

Configuration example:
```yaml
worktree:
  copyFiles:
    - .env.example -> .env    # Copy and rename
    - .env                     # Copy as-is if exists
    - data/fixtures/           # Copy entire directory
```

Fixes coleam00#100

* Archive investigation for issue coleam00#100

* Fix: Add path traversal protection and improve error handling

- Add isPathWithinRoot() to block path traversal attacks (works on Unix/Windows)
- Add input validation to parseCopyFileEntry() for empty/invalid entries
- Improve error logging with structured data and error codes
- Separate config loading errors from file copy errors
- Use console.error for unexpected errors, console.log for expected skips
- Add 34 new tests for security, validation, and error handling
- 100% test coverage for worktree-copy.ts

* Add worktree copyFiles config for .env files

* Update bot mention from @remote-agent to @archon

- Update default botMention in GitHubAdapter to 'Archon'
- Update all docs to use @archon consistently
- Update test cases to use @archon variations
- The default botName in config is 'Archon', so this aligns the adapter

* Docs: Add worktree app testing instructions to CLAUDE.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant