- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for releaseNotes (0.29 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java
* limitations under the License. */ package gradlebuild.docs; import org.gradle.api.file.ConfigurableFileCollection; import org.gradle.api.file.RegularFileProperty; public abstract class ReleaseNotes { /** * The source markdown file for the release notes. */ public abstract RegularFileProperty getMarkdownFile(); /** * The base CSS file used by all documentation. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
// These are all helper methods for configuring the parts of the documentation (DSL ref, javadoc, user manual, etc). public ReleaseNotes getReleaseNotes() { return releaseNotes; } public void releaseNotes(Action<? super ReleaseNotes> action) { action.execute(releaseNotes); } public UserManual getUserManual() { return userManual; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
}); extension.releaseNotes(releaseNotes -> { releaseNotes.getMarkdownFile().convention(extension.getSourceRoot().file("release/notes.md")); releaseNotes.getRenderedDocumentation().convention(releaseNotesPostProcess.flatMap(DecorateReleaseNotes::getDestinationFile)); releaseNotes.getBaseCssFile().convention(extension.getSourceRoot().file("css/base.css"));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
val releaseNotesLines: List<String> = releaseNotes.asFile.get().readLines() val contributorSectionBeginIndex = releaseNotesLines.indexOfFirst { it.startsWith("We would like to thank the following community members for their contributions to this release of Gradle:") } + 1 if (contributorSectionBeginIndex == 0) { error("Can't find the contributors section in the release notes $releaseNotes.") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 5.6K bytes - Viewed (0) -
.github/pull_request_template.md
- [ ] Virtual Machine - [ ] Control Plane Revisions **Please check any characteristics that apply to this pull request.**
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jun 24 18:27:30 UTC 2024 - 806 bytes - Viewed (0) -
CODEOWNERS
/release/ @istio/wg-test-and-release-maintainers /releasenotes/ @istio/wg-test-and-release-maintainers /releasenotes/notes /samples/ @istio/wg-docs-maintainers-english
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 22 19:22:33 UTC 2024 - 7.2K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt
if (contributorsInPullRequestsButNotInReleaseNotes.isNotEmpty()) { error( """The contributors in the release notes $releaseNotes don't match the contributors in the PRs. Release notes: $contributorsInReleaseNotes Pull requests: $contributorsFromPullRequests
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 1.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java
task.getInputs().file(extension.getReleaseNotes().getRenderedDocumentation()).withPropertyName("releaseNotes").withPathSensitivity(PathSensitivity.NONE); task.getInputs().property("systemProperties", Collections.emptyMap()); // TODO: This breaks the provider task.systemProperty("org.gradle.docs.releasenotes.rendered", extension.getReleaseNotes().getRenderedDocumentation().get().getAsFile()); }); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 17 20:04:00 UTC 2024 - 7.4K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt
val sortedContributors = contributorsToUpdate.entries.sortedBy { (it.value.name ?: it.key).toLowerCase() } val (linesBeforeContributors, _, linesAfterContributors) = parseReleaseNotes() releaseNotes.asFile.get().writeText(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 11:42:19 UTC 2024 - 2K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
## Version 3.x [Change log](https://square.github.io/okhttp/changelog_3x/) [bom]: https://docs.gradle.org/6.2/userguide/platforms.html#sub:bom_import [bouncy_castle_releases]: https://www.bouncycastle.org/releasenotes.html [CVE-2021-0341]: https://nvd.nist.gov/vuln/detail/CVE-2021-0341 [CVE-2022-24329]: https://nvd.nist.gov/vuln/detail/CVE-2022-24329
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0)