Skip to content

Commit 77270b1

Browse files
sklein94cesmarvin
authored andcommitted
Merge branch 'release/v1.7.4-1'
2 parents 6771ffc + 96c07b8 commit 77270b1

10 files changed

+21
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.7.4-1] - 2024-10-22
11+
### Fixed
12+
- [#229] Disable Google Analytics in Markdown-Editor
13+
1014
## [v1.7.3-4] - 2024-09-25
1115
### Changed
1216
- Switch to new CAS service account structure in dogu.json

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN set -x \
1818

1919
FROM registry.cloudogu.com/official/java:21.0.4-3
2020
LABEL NAME="official/smeagol" \
21-
VERSION="1.7.3-4" \
21+
VERSION="1.7.4-1" \
2222
maintainer="[email protected]"
2323

2424
ENV SERVICE_TAGS=webapp \

Jenkinsfile

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ parallel(
7878
} else if (branch.startsWith("bugfix/")) {
7979
echo "This branch has been detected as a bugfix branch."
8080
sh "${scannerHome}/bin/sonar-scanner -Dsonar.branch.name=${env.BRANCH_NAME} -Dsonar.branch.target=develop"
81+
} else {
82+
echo "This branch has been detected as a miscellaneous branch."
83+
sh "${scannerHome}/bin/sonar-scanner -Dsonar.branch.name=${env.BRANCH_NAME} -Dsonar.branch.target=develop"
8184
}
8285
}
8386
timeout(time: 2, unit: 'MINUTES') { // Needed when there is no webhook for example

docs/gui/release_notes_de.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Im Folgenden finden Sie die Release Notes für Smeagol.
44

55
Technische Details zu einem Release finden Sie im zugehörigen [Changelog](https://docs.cloudogu.com/de/docs/dogus/smeagol/CHANGELOG/).
66

7+
## 1.7.4-1
8+
Teile der Applikation haben Anfragen an Google-Analytics geschickt. Diese Anfragen wurden dauerhaft entfernt.
9+
Weitere Informationen dazu sind auf der Seite der Bibliothek zu finden, die bisher diese Anfragen verschickt hat: https://github.com/nhn/tui.editor/tree/v1.4.0?tab=readme-ov-file#collect-statistics-on-the-use-of-open-source
10+
711
## 1.7.3-4
812
Wir haben nur technische Änderungen vorgenommen. Näheres finden Sie in den Changelogs.
913

docs/gui/release_notes_en.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Below you will find the release notes for Smeagol.
44

55
Technical details on a release can be found in the corresponding [Changelog](https://docs.cloudogu.com/en/docs/dogus/smeagol/CHANGELOG/).
66

7+
## 1.7.4-1
8+
Parts of the application have sent requests to Google Analytics. These requests have been permanently removed.
9+
Further information can be found on the page of the library that previously sent these requests: https://github.com/nhn/tui.editor/tree/v1.4.0?tab=readme-ov-file#collect-statistics-on-the-use-of-open-source
10+
711
## 1.7.3-4
812
We have only made technical changes. You can find more details in the changelogs.
913

dogu.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/smeagol",
3-
"Version": "1.7.3-4",
3+
"Version": "1.7.4-1",
44
"DisplayName": "Smeagol",
55
"Description": "Store your technical documentation with in your git repositories",
66
"Category": "Development Apps",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smeagol",
3-
"version": "1.7.3-4",
3+
"version": "1.7.4-1",
44
"private": true,
55
"license": "AGPL-3.0-only",
66
"dependencies": {

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>com.cloudogu.wiki</groupId>
1414
<artifactId>smeagol</artifactId>
15-
<version>1.7.3-4</version>
15+
<version>1.7.4-1</version>
1616
<name>smeagol</name>
1717
<packaging>war</packaging>
1818

src/main/js/wiki/components/Markdown.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class Markdown extends React.Component<Props> {
6161
viewer: true,
6262
initialEditType: "markdown",
6363
initialValue: this.props.content,
64+
usageStatistics: false,
6465
exts: [
6566
"colorSyntax",
6667
{ name: "uml", rendererURL: "/plantuml/png/" },

src/main/js/wiki/components/MarkdownEditor.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ class MarkdownEditor extends Component<Props, State> {
7474
previewStyle: "vertical",
7575
initialEditType: "markdown",
7676
initialValue: this.props.content,
77+
usageStatistics: false,
7778
exts: [
7879
"scrollSync",
7980
"colorSyntax",

0 commit comments

Comments
 (0)