-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Source Google Sheets: address dependency conflict and update CDK #36515
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -12,18 +12,15 @@ readme = "README.md" | |||
documentation = "https://docs.airbyte.com/integrations/sources/google-sheets" | |||
homepage = "https://airbyte.com" | |||
repository = "https://github.com/airbytehq/airbyte" | |||
packages = [ { include = "source_google_sheets"}] | |||
[[tool.poetry.packages]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed this line because it didn't match the pattern from other connectors. My understanding is that it's functionally the same given we're only listing a single package, but I figure it's safest to be sticklers for conformity within the poetry setup.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
* master: (1562 commits) ✨ source-google-drive: migrate to poetry (airbytehq#36581) enable spotbugs for CDK core and dependencies submodule (airbytehq#36612) ✨ Source Salesforce, Shopify: add maxSecondsBetweenMessages in metadata (airbytehq#36723) java-cdk: re-export airbyte-api dependency (airbytehq#36759) Source Google Sheets: address dependency conflict and update CDK (airbytehq#36515) Airbyte CI: rename incorrectly named pipelines (airbytehq#36722) Source Azure Blob Storage: add integration tests (airbytehq#36542) Salesforce: retry on download_data and create_stream_job (airbytehq#36385) ✨Source Monday: Bumped CDK version dependency (airbytehq#36746) airbyte-ci: burst gradle task cache on new java cdk release (airbytehq#36480) chore(connectors): remove tasks.py and top-level requirements.txt (airbytehq#36738) airbyte-ci: fix pull-request-number option for migrate_to_base_image (airbytehq#36779) 🤖 Bump patch version of Python CDK add backward compatibility for an old close slice logic (airbytehq#36774) Bump Airbyte version from 0.57.0 to 0.57.1 🤖 Bump patch version of Python CDK low-code: Fix cursor pagination instantiation if the stop_condition is a string (airbytehq#36760) fix rabbitmq icon and simplify docs registry code (airbytehq#36767) Update azure-entra-id.md (airbytehq#36758) re-enable rabbitmq on OSS (airbytehq#36749) ...
What
The CDK version for source Google Sheets was recently unpinned, but it turns out the lock file was silently failing to update the package version above
0.51.8
, even when explicitly runningpoetry update airbyte-cdk
. Investigation pointed to the cause being dependencies which come pre-packaged in the CDK also being listed separately in thepyproject
file (namelybackoff
,pydantic
,pyYAML
andrequests
).How
airbyte-cdk
frompyproject
file and updatepoetry.lock
_read
method to correctly pass expectedAirbyteStream
instance to theas_airbyte_message
method.