Sebastian Davids
Sebastian Davids
Related: https://github.com/apache/iceberg/pull/4638#discussion_r865186643
Could this please be reviewed, thanks.
Would you like a simple fix, i.e. allow both `#` and `=`. Or a more involved one via looking at the file extension of `changelogFile` or via a new DSL...
What should happen with the error messages? All of them assume `## [...]`. One could keep the error messages as is and silently also accept `== [...]` or we would...
A little late to the party … ### Gradle-DSL ```kotlin java { toolchain { languageVersion = JavaLanguageVersion.of(21) } } tasks.withType(JavaCompile).configureEach { options.release = 8 } ``` https://docs.gradle.org/current/userguide/toolchains.html https://docs.gradle.org/current/dsl/org.gradle.api.tasks.compile.JavaCompile.html https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/compile/CompileOptions.html#getRelease() https://docs.oracle.com/en/java/javase/21/docs/specs/man/javac.html#option-release...
https://github.com/adoble/adr-j/pull/57 makes this PR obsolete.
https://developer.apple.com/news/?id=saqachfa > Updates to runtime protection in macOS Sequoia August 6, 2024 … If you distribute software outside of the Mac App Store, we recommend that you submit your software...
One could pass `BUILD_TIME` from the outside but it would not be DRY and unfortunately BSD/Linux `date` have different flags, e.g.: ```shell SOURCE_DATE_EPOCH="$(git log --max-count=1 --pretty=format:%ct)" if [ "$(uname)" =...
`SOURCE_DATE_EPOCH` - A UNIX timestamp, defined as the number of seconds, excluding leap seconds, since 01 Jan 1970 00:00:00 UTC `formatdate` requires a `timestamp` in [RFC 3339](https://tools.ietf.org/html/rfc3339) "Date and Time...
> If we added support that the timestamp passed to `formatdate` (2nd param) can be unix timestamp, would that fix the issue? I am not sure if it is a...