# Update source-azure-table This PR was autogenerated by running `airbyte-ci connectors --name=source-azure-table up_to_date --pull` We've set the `auto-merge` label on it, so it will be automatically merged if the CI pipelines pass. If you don't want to merge it automatically, please remove the `auto-merge` label. Please reach out to the Airbyte Connector Tooling team if you have any questions or concerns. ## Operations - Upgrade the base image to the latest version in metadata.yaml: Skipped - Update versions of libraries in poetry: Successful - PATCH bump source-azure-table version to 0.1.56: Successful - Build source-azure-table docker image for platform(s) linux/amd64, linux/arm64: Successful - Get dependency updates: Successful - Create or update pull request on Airbyte repository: Successful - Add changelog entry: Successful ## Dependency updates We use [`syft`](https://github.com/anchore/syft) to generate a SBOM for the latest connector version and the one from the PR. It allows us to spot the dependencies that have been updated at all levels and for all types of dependencies (system, python, java etc.). Here are the dependencies that have been updated compared to `airbyte/source-azure-table:latest`. Keep in mind that `:latest` does not always match the connector code on the main branch. It is the latest released connector image when the head commit of this branch was created. | Type | Name | State | Previous Version | New Version | |------|------|-------|-------------|------------------| | python | MarkupSafe | updated | 3.0.2 | **3.0.3** | | python | PyYAML | updated | 6.0.2 | **6.0.3** | | python | attrs | updated | 25.3.0 | **25.4.0** | | python | azure-core | updated | 1.35.0 | **1.35.1** | | python | cachetools | updated | 6.1.0 | **6.2.1** | | python | cattrs | updated | 25.1.1 | **25.3.0** | | python | certifi | updated | 2025.8.3 | **2025.7.9** | | python | charset-normalizer | updated | 3.4.3 | **3.4.4** | | python | idna | updated | 3.10 | **3.11** | | python | multidict | updated | 6.6.4 | **6.7.0** | | python | platformdirs | updated | 4.3.8 | **4.4.0** | | python | propcache | updated | 0.3.2 | **0.4.1** | | python | pydantic | updated | 1.10.22 | **1.10.24** | | python | requests | updated | 2.32.4 | **2.32.5** | | python | typing_extensions | updated | 4.14.1 | **4.15.0** | | python | yarl | updated | 1.20.1 | **1.22.0** | | python | source-azure-table | removed | 0.1.52 | **not present** | > [!IMPORTANT] > **Auto-merge enabled.** > > _This PR is set to merge automatically when all requirements are met._ Co-authored-by: octavia-bot-hoard[bot] <230633153+octavia-bot-hoard[bot]@users.noreply.github.com>
Azure-Table source connector
This is the repository for the Azure-Table source connector, written in Python. For information about how to use this connector within Airbyte, see the documentation.
Local development
Prerequisites
- Python (~=3.9)
- Poetry (~=1.7) - installation instructions here
Installing the connector
From this connector directory, run:
poetry install --with dev
Create credentials
If you are a community contributor, follow the instructions in the documentation
to generate the necessary credentials. Then create a file secrets/config.json conforming to the source_azure_table/spec.yaml file.
Note that any directory named secrets is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information.
See sample_files/sample_config.json for a sample config file.
Locally running the connector
poetry run source-azure-table spec
poetry run source-azure-table check --config secrets/config.json
poetry run source-azure-table discover --config secrets/config.json
poetry run source-azure-table read --config secrets/config.json --catalog sample_files/configured_catalog.json
Running unit tests
To run unit tests locally, from the connector directory run:
poetry run pytest unit_tests
Building the docker image
- Install
airbyte-ci - Run the following command to build the docker image:
airbyte-ci connectors --name=source-azure-table build
An image will be available on your host with the tag airbyte/source-azure-table:dev.
Running as a docker container
Then run any of the connector commands as follows:
docker run --rm airbyte/source-azure-table:dev spec
docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-azure-table:dev check --config /secrets/config.json
docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-azure-table:dev discover --config /secrets/config.json
docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-azure-table:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json
Running our CI test suite
You can run our full test suite locally using airbyte-ci:
airbyte-ci connectors --name=source-azure-table test
Customizing acceptance Tests
Customize acceptance-test-config.yml file to configure acceptance tests. See Connector Acceptance Tests for more information.
If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py.
Dependency Management
All of your dependencies should be managed via Poetry. To add a new dependency, run:
poetry add <package-name>
Please commit the changes to pyproject.toml and poetry.lock files.
Publishing a new version of the connector
You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what?
- Make sure your changes are passing our test suite:
airbyte-ci connectors --name=source-azure-table test - Bump the connector version (please follow semantic versioning for connectors):
- bump the
dockerImageTagvalue in inmetadata.yaml - bump the
versionvalue inpyproject.toml
- bump the
- Make sure the
metadata.yamlcontent is up to date. - Make sure the connector documentation and its changelog is up to date (
docs/integrations/sources/azure-table.md). - Create a Pull Request: use our PR naming conventions.
- Pat yourself on the back for being an awesome contributor.
- Someone from Airbyte will take a look at your PR and iterate with you to merge it into master.
- Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry.