Skip to content

Commit 527674c

Browse files
authored
Merge pull request #53 from dqops/1.11.6
1.11.6
2 parents 1e8bec8 + 13dfa82 commit 527674c

File tree

15 files changed

+42
-18
lines changed

15 files changed

+42
-18
lines changed

.run/dqo run.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<option name="region" />
66
<option name="useCurrentConnection" value="false" />
77
</extension>
8-
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.11.5.jar" />
8+
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.11.6.jar" />
99
<option name="VM_PARAMETERS" value="-XX:MaxRAMPercentage=60.0 --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED" />
1010
<option name="PROGRAM_PARAMETERS" value="--server.port=8888 --dqo.python.debug-mode=silent" />
1111
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# 1.11.5
1+
# 1.11.6
22

3-
* Support the default authentication chain to access AWS S3
3+
* Shorten the browser caching duration for a list of dashboards.
4+
* Collect statistics for DATETIME types in BigQuery fixed after changes in the BQ interface

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.5
1+
1.11.6

distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.dqops</groupId>
1313
<artifactId>dqo-distribution</artifactId>
14-
<version>1.11.5</version> <!-- DQOps Version, do not touch (changed automatically) -->
14+
<version>1.11.6</version> <!-- DQOps Version, do not touch (changed automatically) -->
1515
<name>dqo-distribution</name>
1616
<description>DQOps Data Quality Operations Center final assembly</description>
1717
<packaging>pom</packaging>

distribution/python/dqops/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# limit
1616

1717
# WARNING: the next two lines with the version numbers (VERSION =, PIP_VERSION =) should not be modified manually. They are changed by a maven profile at compile time.
18-
VERSION = "1.11.5"
19-
PIP_VERSION = "1.11.5"
18+
VERSION = "1.11.6"
19+
PIP_VERSION = "1.11.6"
2020
GITHUB_RELEASE = "v" + VERSION + ""
2121
JAVA_VERSION = "17"
2222

dqo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616
#
1717

18-
export DQO_VERSION=1.11.5
18+
export DQO_VERSION=1.11.6
1919

2020
# Configure local development environment overrides
2121
if [ -f $(dirname $0)/set-dqo-envs.sh ]; then

dqo.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@REM limitations under the License.
1616
@REM
1717

18-
set DQO_VERSION=1.11.5
18+
set DQO_VERSION=1.11.6
1919

2020
rem Configure local development environment overrides
2121
if exist "%~dp0set-dqo-envs.cmd" (

dqops/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</parent>
2828
<groupId>com.dqops</groupId>
2929
<artifactId>dqo-dqops</artifactId>
30-
<version>1.11.5</version> <!-- DQOps Version, do not touch (changed automatically) -->
30+
<version>1.11.6</version> <!-- DQOps Version, do not touch (changed automatically) -->
3131
<packaging>jar</packaging>
3232
<name>dqo-dqops</name>
3333
<description>DQOps Data Quality Operations Center</description>

dqops/src/main/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "DQOps",
3-
"version": "1.11.5",
3+
"version": "1.11.6",
44
"private": true,
55
"dependencies": {
66
"@codemirror/lang-python": "6.1.3",

dqops/src/main/frontend/src/components/CustomTree/DeleteStoredDataExtendedPopUp.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,19 @@ const DeleteStoredDataExtendedPopUp = ({
416416
})
417417
}
418418
/>
419+
<Input
420+
label="Table comparison name"
421+
value={params.tableComparisonName}
422+
onChange={(e) =>
423+
onChangeParams({ tableComparisonName: e.target.value })
424+
}
425+
className={
426+
params.deleteCheckResults ? 'text-black' : 'text-gray-150'
427+
}
428+
labelClassName={
429+
params.deleteCheckResults ? 'text-black' : 'text-gray-150'
430+
}
431+
/>
419432
</div>
420433
<div className="flex flex-col space-y-5 w-1/4">
421434
<Checkbox

0 commit comments

Comments
 (0)