Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for majorDotMinor (0.42 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/resources/templates/breaking-changes.asciidoc

    [[migrating-${majorDotMinor}]]
    == Migrating to ${majorDotMinor}
    ++++
    <titleabbrev>${majorDotMinor}</titleabbrev>
    ++++
    
    This section discusses the changes that you need to be aware of when migrating
    your application to {es} ${majorDotMinor}.
    
    See also <<release-highlights>> and <<es-release-notes>>.
    <% if (isElasticsearchSnapshot) { %>
    coming[${version}]
    <% } %>
    //NOTE: The notable-breaking-changes tagged regions are re-used in the
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/BreakingChangesGenerator.java

            bindings.put("deprecationsByArea", deprecationsByArea);
            bindings.put("isElasticsearchSnapshot", version.isSnapshot());
            bindings.put("majorDotMinor", version.getMajor() + "." + version.getMinor());
            bindings.put("majorMinor", String.valueOf(version.getMajor()) + version.getMinor());
            bindings.put("nextMajor", (version.getMajor() + 1) + ".0");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3K bytes
    - Click Count (0)
Back to Top