Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for releaseNotes (0.31 sec)

  1. 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.
         */
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  2. 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;
        }
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Aug 11 08:52:40 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  3. 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"));
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 10 11:32:18 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            }
    
            val contributorSectionEndIndex = (contributorSectionBeginIndex until releaseNotesLines.size).firstOrNull {
                val line = releaseNotesLines[it].trim()
                line.isNotEmpty() && !line.startsWith("[")
            } ?: throw IllegalStateException("Can't find the contributors section end in the release notes $releaseNotes.")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 5.7K bytes
    - Viewed (0)
  5. .github/pull_request_template.md

    - [ ] User Experience
    - [ ] Developer Infrastructure
    
    **Please check any characteristics that apply to this pull request.**
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 14:29:43 GMT 2023
    - 718 bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt

                val (linesBeforeContributors, _, linesAfterContributors) = parseReleaseNotes()
                releaseNotes.asFile.get().writeText(
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Jun 01 00:58:07 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  7. 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());
            });
        }
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 17 20:04:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  8. CODEOWNERS

    /release/                                                        @istio/wg-test-and-release-maintainers
    /releasenotes/                                                   @istio/wg-test-and-release-maintainers
    /releasenotes/notes
    /samples/                                                        @istio/wg-docs-maintainers-english
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:33 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  9. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

            if (contributorsInPullRequestsButNotInReleaseNotes.isNotEmpty()) {
                throw IllegalStateException(
                    """The contributors in the release notes $releaseNotes don't match the contributors in the PRs.
                    Release notes:  $contributorsInReleaseNotes
                    Pull requests:  $contributorsFromPullRequests
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  10. 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
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 17 13:25:31 GMT 2024
    - 25.2K bytes
    - Viewed (0)
Back to top