IEBH-353: Sync with the latest changes#9
Merged
vmoshynskyi merged 3 commits intomainfrom Nov 24, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR synchronizes changes from the pilot repository, modernizing the codebase to Python 3.10+ standards and updating dependencies. The changes include adopting modern type hint syntax (PEP 604), updating the Python version constraint, upgrading pydantic, removing deprecated Vault configuration, and adding a new GitHub Actions CI/CD pipeline.
- Adopts Python 3.10+ type hint syntax using PEP 604 union operators and built-in generic types
- Updates Python version constraint to >=3.10,<3.11 and upgrades pydantic from 1.8.2 to 1.10.19
- Removes deprecated Vault configuration infrastructure and replaces Jenkinsfile with GitHub Actions workflow
Reviewed changes
Copilot reviewed 24 out of 26 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Updates project version to 2.5.8, Python constraint to >=3.10,<3.11, pydantic to 1.10.19, removes explicit typing_extensions dependency |
| poetry.lock | Updates lock file with new pydantic 1.10.19 and typing-extensions 4.12.2 versions, but contains metadata inconsistency with Python version |
| dataops/config.py | Removes VaultConfig class and vault-related configuration, updates VERSION to 2.5.7 |
| tests/fixtures/components/resource_operations.py | Imports Callable from collections.abc instead of typing |
| migrations/env.py | Removes typing.Optional import, uses PEP 604 union syntax (str | None) |
| migrations/versions/*.py | Removes blank lines, capitalizes docstring to follow proper sentence structure |
| dataops/components/task_stream/schemas.py | Replaces typing imports with PEP 604 union syntax and built-in generic types |
| dataops/components/task_stream/parsing.py | Replaces typing.Union with PEP 604 union syntax |
| dataops/components/task_stream/views.py | Removes unused logger import |
| dataops/components/task_dispatch/crud.py | Replaces typing imports with modern syntax, converts .format() to f-strings |
| dataops/components/resource_operations/schemas.py | Replaces typing imports with built-in generic types and PEP 604 syntax |
| dataops/components/resource_operations/filtering.py | Replaces typing imports with built-in generic types |
| dataops/components/resource_operations/crud/base.py | Replaces typing.List with built-in list type |
| dataops/components/resource_lock/schemas.py | Replaces typing imports with built-in generic types and PEP 604 syntax |
| dataops/components/resource_lock/cache.py | Replaces typing.List with built-in list type |
| dataops/components/resource_lock/views.py | Removes unused logger import |
| dataops/components/exceptions.py | Imports Sequence from collections.abc instead of typing |
| dataops/components/crud.py | Replaces typing imports with modern syntax, converts .format() to f-strings |
| dataops/components/cache.py | Replaces typing imports with PEP 604 union syntax |
| dataops/components/archive_preview/views.py | Replaces typing.Union with PEP 604 union syntax |
| Jenkinsfile | Deletes entire Jenkinsfile (124 lines) as CI/CD is moving to GitHub Actions |
| .pre-commit-config.yaml | Uncomments docformatter hook and updates version to v1.7.7 |
| .gitignore | Adds .python-version to ignore list for pyenv support |
| .github/workflows/hdc-pipeline.yml | Adds new GitHub Actions CI/CD pipeline with test, build, and deploy jobs |
| .env.example | Removes Vault-related environment variables |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Add the latest changes from the pilot repo.