Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for changelogsByVersionByTypeByArea (0.44 seconds)

  1. build-tools-internal/src/main/resources/templates/release-notes.asciidoc

    === Security updates
    
    <% for (change in changelogsByVersionByTypeByArea[version].remove("security").remove("_all_")) {
        print "* ${change.summary}\n"
    }
    }
    if (changelogsByVersionByTypeByArea[version]["known-issue"] != null) { %>
    [discrete]
    [[known-issues-${unqualifiedVersion}]]
    === Known issues
    
    <% for (change in changelogsByVersionByTypeByArea[version].remove("known-issue").remove("_all_")) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseNotesGenerator.java

            final var changelogsByVersionByTypeByArea = buildChangelogBreakdown(changelogs);
    
            final Map<String, Object> bindings = new HashMap<>();
            bindings.put("changelogsByVersionByTypeByArea", changelogsByVersionByTypeByArea);
            bindings.put("TYPE_LABELS", TYPE_LABELS);
    
            return TemplateUtils.render(template, bindings);
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 4.5K bytes
    - Click Count (0)
Back to Top