Skip to content

Commit f692e3d

Browse files
authored
Merge pull request #48 from dqops/1.11.2
Version 1.11.2
2 parents ccb5f11 + cfd9f82 commit f692e3d

File tree

16 files changed

+107
-67
lines changed

16 files changed

+107
-67
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.1.jar" />
8+
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.11.2.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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# 1.11.1
1+
# 1.11.2
22

3-
* MacOS runner no longer adds a user certificate store.
4-
* Deduplicate the list of schemas on Oracle.
5-
* Upgrade DuckDB to 1.2.2.0
6-
* Jars are published as extracted (no spring fat jar)
3+
* Data synchronization preserves remote changes when local files were also modified
4+
* Support repeated (non-array) values in BigQuery after some schema changes in the INFORMATION_SCHEMA.COLUMNS management view.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.1
1+
1.11.2

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.1</version> <!-- DQOps Version, do not touch (changed automatically) -->
14+
<version>1.11.2</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.1"
19-
PIP_VERSION = "1.11.1"
18+
VERSION = "1.11.2"
19+
PIP_VERSION = "1.11.2"
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.1
18+
export DQO_VERSION=1.11.2
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.1
18+
set DQO_VERSION=1.11.2
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.1</version> <!-- DQOps Version, do not touch (changed automatically) -->
30+
<version>1.11.2</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.1",
3+
"version": "1.11.2",
44
"private": true,
55
"dependencies": {
66
"@codemirror/lang-python": "6.1.3",

dqops/src/main/frontend/src/App.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { getAllJobs, getJobsChanges } from './redux/actions/job.actions';
1313
import { IRootState } from './redux/reducers';
1414
import Routes from './Routes';
1515
import { LogErrorsApi } from './services/apiClient';
16+
import { EnviromentApiClient } from './services/apiClient';
1617

1718
import { CategoryScale } from 'chart.js';
1819
import Chart from 'chart.js/auto';
@@ -56,6 +57,12 @@ const App = () => {
5657
message: message?.toString()
5758
});
5859
};
60+
61+
EnviromentApiClient.getDqoSettings().then((res) => {
62+
if (res.data?.properties?.['dqo.ui.application-name']) {
63+
document.title = String(res.data?.properties?.['dqo.ui.application-name']);
64+
}
65+
});
5966
}, []);
6067

6168
useEffect(() => {

0 commit comments

Comments
 (0)