Anže Sodja
Anže Sodja
This PR adds experimental support for assign operator overload. Operator can be enabled with `-Xassign-operator`. Operator behaves similar to `+=` operator. It's implemented for F1.0 frontend and FIR frontend. There...
This removed `IncrementalTaskInputs` from docs for 8.0. `IncrementalTaskInputs` are now mentioned just in the upgrade guide.
This is a proposal on providing an assign operator overload that would provide DSL for assigning values to mutable container objects. Please, use [KEEP-309](https://github.com/Kotlin/KEEP/issues/309) issue for discussion of this proposal...
### Gradle Version 8.0 ### AGP Version any ### Code Minifier/Optimizer _No response_ ### Version 3.1.4 ### Sentry SDK Version any ### Steps to Reproduce 1. `git clone [email protected]:asodja/io-sentry-with-gradle8.git` 2....
Relates to https://github.com/gradle/gradle/issues/24875 The problem is, that we try to read `org.gradle.native=false ` via `System.getProperty()` in `NativeServices`, but that system property might not be set at that moment, see current...
Fixes https://github.com/gradle/gradle/issues/27327 ### Implementation Class hierarchy and discovery happens with 3 artifact transforms: 1. Analyze artifact (collect direct super types and jar class dependencies) 2. For specific artifact find all...
In https://github.com/gradle/gradle/issues/26037 we moved instrumentation of plugins to artifact transforms. This is a continuation of that work. We should move also all the logic for Property upgrades (class hierarchy discovery...
In https://github.com/gradle/gradle/pull/28535 we moved artifact transforms caches to `caches//transforms`. So we need to also update [ClearArtifactTransformCacheMutator](https://github.com/gradle/gradle-profiler/blob/master/src/main/java/org/gradle/profiler/mutations/ClearArtifactTransformCacheMutator.java). See implementation of a mutator in `gradle/gradle` [ClearArtifactTransformCacheWithoutInstrumentedJarsMutator](https://github.com/gradle/gradle/blob/f1e493e21b8de47e2040c89be0159867464c20cc/subprojects/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy).