Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
46 changes: 46 additions & 0 deletions apprunner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

# Apache Polaris Apprunner Changelog

This changelog is used to give users and contributors condensed information about the contents of Polaris releases.
Entries are grouped in sections like _Highlights_ or _Upgrade notes_, the provided sections can be adjusted
as necessary. Empty sections will not end up in the release notes. Contributors are encouraged to incorporate
CHANGELOG updates into their PRs when appropriate. Reviewers should be mindful of the impact of PRs and
request adding CHANGELOG notes for breaking (!) changes and possibly other sections as appropriate.

## [Unreleased]

### Highlights

- Initial release of the Apache Polaris Apprunner.

### Upgrade notes

### Breaking changes

### New Features

### Changes

### Deprecations

### Fixes

### Commits
21 changes: 21 additions & 0 deletions apprunner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ plugins {
id("eclipse")
id("polaris-apprunner-root")
alias(libs.plugins.rat)
alias(libs.plugins.jetbrains.changelog)
}

version = rootProject.rootDir.resolve("version.txt").readText().trim()
Expand Down Expand Up @@ -129,3 +130,23 @@ nexusPublishing {
}
}
}

changelog {
repositoryUrl.set("https://github.com/apache/polaris-tools")
title.set("Apache Polaris Apprunner Changelog")
versionPrefix.set("apache-polaris-apprunner-")
header.set(provider { version.get() })
groups.set(
listOf(
"Highlights",
"Upgrade notes",
"Breaking changes",
"New Features",
"Changes",
"Deprecations",
"Fixes",
"Commits",
)
)
version.set(provider { project.version.toString() })
}
1 change: 1 addition & 0 deletions apprunner/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ soebes-itf-assertj = { module = "com.soebes.itf.jupiter.extension:itf-assertj",
soebes-itf-jupiter-extension = { module = "com.soebes.itf.jupiter.extension:itf-jupiter-extension", version.ref = "soebes-itf" }

[plugins]
jetbrains-changelog = { id = "org.jetbrains.changelog", version = "2.4.0"}
maven-plugin = { id = "io.freefair.maven-plugin", version = "9.1.0" }
rat = { id = "org.nosphere.apache.rat", version = "0.8.1" }