Skip to content

chore: Add a pre-release issue template #775

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions .github/ISSUE_TEMPLATE/pre-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
name: Pre-Release Product Updates
about: This template can be used to track the product leading up to the next Stackable release
title: Release XX.(X)X
labels: ['epic']
assignees: ''
---

<!--
DO NOT REMOVE THIS COMMENT. It is intended for people who might copy/paste from the previous release issue.
This was created by an issue template: https://github.com/stackabletech/issues/issues/new/choose.
-->

## Product Updates for Stackable Release XX.(X)X

> [!NOTE]
> Update the product versions based on what has been decided upon in the _Product Spreadsheet[^1]_.

[^1]: Currently this is a private spreadsheet

Replace the items in the task lists below with the applicable Pull Requests

<!--
Find any other image directories not covered by the list above:

find . -name "versions.py" \
| cut -d/ -f2 \
| sort \
| xargs -I {} echo "- [ ] https://github.com/stackabletech/docker-images/tree/main/{}/versions.py"
-->

```[tasklist]
### Product Container Images
- [ ] https://github.com/stackabletech/docker-images/tree/main/airflow/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/druid/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hadoop/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hbase/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hello-world/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hive/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/java-base/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/java-devel/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kafka/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kafka-testing-tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kcat/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/krb5/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/nifi/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/omid/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/opa/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/spark-k8s/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/stackable-base/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/superset/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/testing-tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/trino/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/trino-cli/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/vector/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/zookeeper/versions.py
```

> [!NOTE]
> Generally you will only need to update the rust-toolchain version (`RUST_DEFAULT_TOOLCHAIN_VERSION`).

<!--
Find any other image directories not covered by the list above

comm -3 \
<(find . -name "Dockerfile" | cut -d/ -f2 | sort) \
<(find . -name "versions.py" | cut -d/ -f2 | sort) \
| xargs -I {} echo "- [ ] https://github.com/stackabletech/docker-images/tree/main/{}/Dockerfile"
-->

```[tasklist]
### Other Container Images
- [ ] https://github.com/stackabletech/docker-images/tree/main/ubi8-rust-builder/Dockerfile
- [ ] https://github.com/stackabletech/docker-images/tree/main/ubi9-rust-builder/Dockerfile
```
46 changes: 23 additions & 23 deletions druid/versions.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
versions = [
{
"product": "26.0.0",
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0"
},
{
"product": "28.0.1",
# Java 17 should be fully supported as of 27.0.0 https://github.com/apache/druid/releases#27.0.0-highlights-java-17-support
# Did not work in a quick test due to reflection error:
# Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class
# java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0"
},
{
"product": "30.0.0",
# https://druid.apache.org/docs/30.0.0/operations/java/
"java-base": "17",
"java-devel": "17",
"authorizer": "0.5.0"
}
{
"product": "26.0.0",
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0",
},
{
"product": "28.0.1",
# Java 17 should be fully supported as of 27.0.0 https://github.com/apache/druid/releases#27.0.0-highlights-java-17-support
# Did not work in a quick test due to reflection error:
# Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class
# java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0",
},
{
"product": "30.0.0",
# https://druid.apache.org/docs/30.0.0/operations/java/
"java-base": "17",
"java-devel": "17",
"authorizer": "0.5.0",
},
]
Loading