IEBH-353: Sync with the latest changes#7
Merged
vmoshynskyi merged 2 commits intomainfrom Nov 13, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR synchronizes changes from the pilot repository, including dependency upgrades, Python 3.9+ modernization, and code formatting improvements. The key updates include upgrading fastavro from 1.6.0 to 1.10.0, modernizing type hints to use native Python syntax, removing Vault configuration dependencies, and adding a new HDC CI/CD pipeline.
- Updated fastavro library from 1.6.0 to 1.10.0 with proper Python 3.9+ compatibility
- Modernized type hints throughout the codebase using Python 3.9+ syntax (list, dict, tuple, union types)
- Removed Vault-related configuration code and dependencies
- Added parent_path null handling logic in item queries
- Reformatted Avro schema to follow proper conventions
Reviewed Changes
Copilot reviewed 31 out of 32 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Bumped version to 2.2.10 and updated fastavro to 1.10.0 |
| poetry.lock | Updated lock file with new fastavro version and Poetry 1.8.5 |
| migrations/versions/*.py | Removed blank lines after license headers and capitalized docstrings |
| app/schemas/metadata.items.avsc | Reformatted JSON and corrected union type ordering per Avro conventions |
| app/routers/v1/items/crud_lineage_provenance.py | Replaced typing.List with list built-in |
| app/routers/v1/items/crud_items.py | Modernized type hints and added null parent_path handling |
| app/routers/v1/items/api_items.py | Updated type hints and converted error messages to f-strings |
| app/routers/v1/favourites/utils.py | Replaced typing.Union with pipe union syntax |
| app/routers/v1/attribute_templates/crud.py | Replaced typing.List with list built-in |
| app/routers/router_utils.py | Changed typing.Callable to collections.abc.Callable |
| app/models/models_lineage_provenance.py | Converted string formatting to f-strings |
| app/models/models_items.py | Modernized type hints and improved docstrings |
| app/models/models_collections.py | Replaced typing.Optional with pipe union syntax |
| app/models/models_attribute_templates.py | Modernized type hints throughout |
| app/config.py | Removed Vault configuration code and dependencies |
| .pre-commit-config.yaml | Enabled docformatter hook at v1.7.7 |
| .github/workflows/hdc-pipeline.yml | Added new HDC CI/CD pipeline workflow |
| .env.example | Removed Vault-related environment variable examples |
💡 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.