Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for nextMajor (0.37 seconds)

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

    }
    }
    if (deprecationsByArea.empty == false) { %>
    
    [discrete]
    [[deprecated-${majorDotMinor}]]
    === Deprecations
    
    The following functionality has been deprecated in {es} ${majorDotMinor}
    and will be removed in ${nextMajor}.
    While this won't have an immediate impact on your applications,
    we strongly encourage you take the described steps to update your code
    after upgrading to ${majorDotMinor}.
    
    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("majorDotMinor", version.getMajor() + "." + version.getMinor());
            bindings.put("majorMinor", String.valueOf(version.getMajor()) + version.getMinor());
            bindings.put("nextMajor", (version.getMajor() + 1) + ".0");
            bindings.put("version", version);
    
            return TemplateUtils.render(template, bindings);
        }
    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