Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 917 for breaking (0.12 seconds)

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

                print "// tag::notable-breaking-changes[]\n"
            }
    
            print "[discrete]\n"
            print "[[breaking_${majorMinor}_${ area.toLowerCase().replaceAll("[^a-z0-9]+", "_") }]]\n"
            print "==== ${area}\n"
    
            for (breaking in breakingChanges) { %>
    [[${ breaking.anchor }]]
    .${breaking.title}
    [%collapsible]
    ====
    *Details* +
    ${breaking.details.trim()}
    
    *Impact* +
    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-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt

                    }
                """
            ) {
                assertHasErrors(
                    "Field nonFinalField: Nullability breaking change.",
                    "Field finalField: From non-nullable to nullable breaking change.",
                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change."
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 15 17:05:08 GMT 2025
    - 18K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractJavaNullabilityChangesTest.kt

                    }
                """
            ) {
                assertHasErrors(
                    "Field nonFinalField: Nullability breaking change.",
                    "Field finalField: From non-nullable to nullable breaking change.",
                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change."
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 04 09:55:47 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

                    return false;
                }
                Breaking breaking = (Breaking) o;
                return notable == breaking.notable
                    && Objects.equals(area, breaking.area)
                    && Objects.equals(title, breaking.title)
                    && Objects.equals(details, breaking.details)
                    && Objects.equals(impact, breaking.impact);
            }
    
            @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinNullabilityChangesTest.kt

                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change.",
                    "Method com.example.Source.getSomeVal(): From non-null returning to null returning breaking change.",
                    "Method com.example.Source.getSomeVar(): From non-null returning to null returning breaking change."
                )
                assertHasWarnings(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 04 09:55:47 GMT 2025
    - 5K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullUnmarkedChangesTest.kt

                    "Method com.example.Source.baz(): From non-null returning to null-unmarked returning breaking change.",
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
        fun `from null-unmarked returning to non-null returning is not breaking`() {
    
            checkBinaryCompatibleJava(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                    "Method com.example.Source.plus(java.lang.String,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.Source.plus(int,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(java.lang.String,int): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(long,int): Breaking Kotlin modifier change.",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/resources/changelog-schema.json

                "TLS",
                "Task Management",
                "Transform"
              ]
            },
            "type": {
              "type": "string",
              "enum": [
                "breaking",
                "breaking-java",
                "bug",
                "deprecation",
                "enhancement",
                "feature",
                "known-issue",
                "new-aggregation",
                "regression",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 5K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseNotesGenerator.java

         */
        private static final Map<String, String> TYPE_LABELS = new HashMap<>();
    
        static {
            TYPE_LABELS.put("breaking", "Breaking changes");
            TYPE_LABELS.put("breaking-java", "Breaking Java changes");
            TYPE_LABELS.put("bug", "Bug fixes");
            TYPE_LABELS.put("deprecation", "Deprecations");
            TYPE_LABELS.put("enhancement", "Enhancements");
    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)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

                        );
                    }
                }
    
                if ((type.equals("breaking") || type.equals("breaking-java")) && entry.getBreaking() == null) {
                    throw new GradleException(
                        "[" + path + "] has type [" + type + "] and must supply a [breaking] section with further information"
                    );
                }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
Back to Top