Skip to content

Commit

Permalink
Prepare for 28.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LakshSingla committed Dec 4, 2023
1 parent f18978c commit 1795bb6
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions distribution/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
- ZOO_MY_ID=1

coordinator:
image: apache/druid:28.0.0
image: apache/druid:28.0.1
container_name: coordinator
volumes:
- druid_shared:/opt/shared
Expand All @@ -67,7 +67,7 @@ services:
- environment

broker:
image: apache/druid:28.0.0
image: apache/druid:28.0.1
container_name: broker
volumes:
- broker_var:/opt/druid/var
Expand All @@ -83,7 +83,7 @@ services:
- environment

historical:
image: apache/druid:28.0.0
image: apache/druid:28.0.1
container_name: historical
volumes:
- druid_shared:/opt/shared
Expand All @@ -100,7 +100,7 @@ services:
- environment

middlemanager:
image: apache/druid:28.0.0
image: apache/druid:28.0.1
container_name: middlemanager
volumes:
- druid_shared:/opt/shared
Expand All @@ -118,7 +118,7 @@ services:
- environment

router:
image: apache/druid:28.0.0
image: apache/druid:28.0.1
container_name: router
volumes:
- router_var:/opt/druid/var
Expand Down
4 changes: 2 additions & 2 deletions web-console/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web-console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-console",
"version": "28.0.0",
"version": "28.0.1",
"description": "A web console for Apache Druid",
"author": "Apache Druid Developers <[email protected]>",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ exports[`HeaderBar matches snapshot 1`] = `
<Blueprint4.MenuItem
active={false}
disabled={false}
href="https://druid.apache.org/docs/28.0.0"
href="https://druid.apache.org/docs/28.0.1"
icon="th"
multiline={false}
popoverProps={Object {}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ exports[`RetentionDialog matches snapshot 1`] = `
Druid uses rules to determine what data should be retained in the cluster. The rules are evaluated in order from top to bottom. For more information please refer to the
<a
href="https://druid.apache.org/docs/28.0.0/operations/rule-configuration.html"
href="https://druid.apache.org/docs/28.0.1/operations/rule-configuration.html"
rel="noopener noreferrer"
target="_blank"
>
Expand Down
2 changes: 1 addition & 1 deletion web-console/src/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import hasOwnProp from 'has-own-prop';

// This is set to the latest available version and should be updated to the next version before release
const DRUID_DOCS_VERSION = '28.0.0';
const DRUID_DOCS_VERSION = '28.0.1';

function fillVersion(str: string): string {
return str.replace(/\{\{VERSION}}/g, DRUID_DOCS_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports[`ExecutionErrorPane matches snapshot 1`] = `
>
<React.Fragment>
<Memo(ExternalLink)
href="https://druid.apache.org/docs/28.0.0/multi-stage-query/reference.html#error_TooManyWarnings"
href="https://druid.apache.org/docs/28.0.1/multi-stage-query/reference.html#error_TooManyWarnings"
>
TooManyWarnings
</Memo(ExternalLink)>
Expand Down
2 changes: 1 addition & 1 deletion web-console/unified-console.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
};
</script>
<script src="console-config.js"></script>
<script src="public/web-console-28.0.0.js"></script>
<script src="public/web-console-28.0.1.js"></script>
</body>
</html>

0 comments on commit 1795bb6

Please sign in to comment.