diff --git a/CHANGELOG.md b/CHANGELOG.md index ae185b0..3a690b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,20 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [7.1.1] - 2024-06-29 + +- Fixes issue where `is_third_party_providers_null` is added to the `tenant_configs` table. + +### Migration + +```sql +ALTER TABLE tenant_configs DROP COLUMN is_third_party_providers_null; +``` + ## [7.1.0] - 2024-05-24 - Compatible with plugin interface version 6.2 - Adds implementation for a new method `getConfigFieldsInfo` to fetch the plugin config fields. -- Adds `null` state for `firstFactors` and `providers` by adding `is_first_factors_null` - and `is_third_party_providers_null` fields in `tenant_configs` table - Adds `DashboardInfo` annotations to the config properties in `PostgreSQLConfig` - Adds `null` state for `firstFactors` by adding `is_first_factors_null` field in `tenant_configs` table. The value of this column is only applicable when there are no entries in the `tenant_first_factors` table for the tenant. @@ -21,7 +29,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ```sql ALTER TABLE tenant_configs ADD COLUMN is_first_factors_null BOOLEAN DEFAULT TRUE; +ALTER TABLE tenant_configs ADD COLUMN is_third_party_providers_null BOOLEAN DEFAULT TRUE; + ALTER TABLE tenant_configs ALTER COLUMN is_first_factors_null DROP DEFAULT; +ALTER TABLE tenant_configs ALTER COLUMN is_third_party_providers_null DROP DEFAULT; ``` ## [7.0.1] - 2024-04-17 diff --git a/build.gradle b/build.gradle index 3776b0c..af9bc2f 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'java-library' } -version = "7.1.0" +version = "7.1.1" repositories { mavenCentral()