From 773917c817d3f46c0644fa130afc26f531b204ff Mon Sep 17 00:00:00 2001 From: Peter Szalai Date: Fri, 14 Oct 2022 17:14:26 +0200 Subject: [PATCH] feat(release): bump CLI version to 0.9.0 (#6195) * feat(release): bump CLI version to 0.9.0 * update breaking changes section * add graphql breaking change * typo --- .../src/app/ingest/source/builder/NameSourceStep.tsx | 2 +- docs/how/updating-datahub.md | 12 ++++++++++++ gradle/versioning/versioning.gradle | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/datahub-web-react/src/app/ingest/source/builder/NameSourceStep.tsx b/datahub-web-react/src/app/ingest/source/builder/NameSourceStep.tsx index d7c1a2e4bd54e..75bd1c7d530db 100644 --- a/datahub-web-react/src/app/ingest/source/builder/NameSourceStep.tsx +++ b/datahub-web-react/src/app/ingest/source/builder/NameSourceStep.tsx @@ -98,7 +98,7 @@ export const NameSourceStep = ({ state, updateState, prev, submit }: StepProps) Advanced: Provide a custom CLI version to use for ingestion. setVersion(event.target.value)} /> diff --git a/docs/how/updating-datahub.md b/docs/how/updating-datahub.md index d182afdbd0d7c..2e5f077b3817a 100644 --- a/docs/how/updating-datahub.md +++ b/docs/how/updating-datahub.md @@ -4,6 +4,18 @@ This file documents any backwards-incompatible changes in DataHub and assists pe ## Next +### Breaking Changes +- Java version 11 or greater is required. +- For any of the GraphQL search queries, the input no longer supports value but instead now accepts a list of values. These values represent an OR relationship where the field value must match any of the values. + +### Potential Downtime + +### Deprecations + +### Other notable Changes + +## 0.9.0 + ### Breaking Changes - Java version 11 or greater is required. diff --git a/gradle/versioning/versioning.gradle b/gradle/versioning/versioning.gradle index 50fd3e844bd40..7b855c08e751e 100644 --- a/gradle/versioning/versioning.gradle +++ b/gradle/versioning/versioning.gradle @@ -21,7 +21,7 @@ Produces the following variables and supports token replacement import org.apache.tools.ant.filters.ReplaceTokens def detailedVersionString = "0.0.0-unknown-SNAPSHOT" -def cliMajorVersion = "0.8.42" // base default cli major version +def cliMajorVersion = "0.9.0" // base default cli major version def snapshotVersion = false if (project.hasProperty("releaseVersion")) { version = releaseVersion