You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of destinations are stuck on pytest 6.2, which is causing a bunch of high severity security alerts on github.
Fixing them should be easy:
Search and replace: within ./airbyte-integrations/connectors/destinations-*/pyproject.toml find pytest = 6\.2\..* (pseudocode regex) and replace with ^8.3.1 or whatever the recent one is.
Bump the version of the affected connectors. The easiest way to do it is to run airbyte-ci connectors --modified bump-version patch "Update test dependencies".
Then, make a pull request with them. A single PR with all of them is probably okay.
This is not very complex work, but it gives us nice security cleanup.
The text was updated successfully, but these errors were encountered:
A lot of destinations are stuck on pytest 6.2, which is causing a bunch of high severity security alerts on github.
Fixing them should be easy:
./airbyte-integrations/connectors/destinations-*/pyproject.toml
findpytest = 6\.2\..*
(pseudocode regex) and replace with^8.3.1
or whatever the recent one is.airbyte-ci connectors --modified bump-version patch "Update test dependencies"
.This is not very complex work, but it gives us nice security cleanup.
The text was updated successfully, but these errors were encountered: