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
As discovered in https://github.com/airbytehq/oncall/issues/289, a spec declaring "additionalProperties": false introduces the risk of accidental breaking changes. Specifically, when removing a property from the spec, existing connector configs will no longer be valid.
To make these upgrades/rollbacks smoother, we need to remove additionalProperties from connectors affected by these changes.
Action items
remove additionalProperties:false (or replace it with additionalProperties:true, whichever is the correct approach)
publish new versions of JDBC-based connectors
merge changes
The text was updated successfully, but these errors were encountered:
Problem
As discovered in https://github.com/airbytehq/oncall/issues/289, a spec declaring "additionalProperties": false introduces the risk of accidental breaking changes. Specifically, when removing a property from the spec, existing connector configs will no longer be valid.
To make these upgrades/rollbacks smoother, we need to remove
additionalProperties
from connectors affected by these changes.Action items
additionalProperties:false
(or replace it withadditionalProperties:true
, whichever is the correct approach)The text was updated successfully, but these errors were encountered: