chore: enforce 2-day minimum age for non-uipath packages#341
Merged
Conversation
Add tool.uv.exclude-newer = "2 days" across all packages, with uipath, uipath-core, uipath-platform, uipath-runtime opted out via exclude-newer-package.
There was a problem hiding this comment.
Pull request overview
Adds a 2-day minimum age requirement for non-UiPath packages across all integration packages to mitigate supply chain attack risk by ensuring newly published versions of third-party dependencies are not picked up immediately. UiPath-owned packages are explicitly excluded so internal releases remain available immediately.
Changes:
- Adds
exclude-newer = "2 days"to[tool.uv]in each package'spyproject.toml. - Adds
[tool.uv.exclude-newer-package]entries to exemptuipath,uipath-core,uipath-platform, anduipath-runtime. - Regenerates
uv.lockfiles to reflect the new options (exclude-newer-span = "P2D"and per-package overrides).
Reviewed changes
Copilot reviewed 5 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/uipath-pydantic-ai/pyproject.toml | Configures 2-day exclude-newer with UiPath exemptions |
| packages/uipath-pydantic-ai/uv.lock | Lockfile updated with new options block |
| packages/uipath-openai-agents/pyproject.toml | Configures 2-day exclude-newer with UiPath exemptions |
| packages/uipath-openai-agents/uv.lock | Lockfile updated with new options block |
| packages/uipath-llamaindex/pyproject.toml | Configures 2-day exclude-newer with UiPath exemptions |
| packages/uipath-llamaindex/uv.lock | Lockfile updated with new options block |
| packages/uipath-google-adk/pyproject.toml | Adds exclude-newer entry and per-package exemptions to existing [tool.uv] |
| packages/uipath-google-adk/uv.lock | Lockfile updated with new options block |
| packages/uipath-agent-framework/pyproject.toml | Adds exclude-newer alongside existing prerelease setting |
| packages/uipath-agent-framework/uv.lock | Lockfile updated with new options block |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
radu-mocanu
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Prudent against supply chain attacks.