Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
8b6a8f1
feat: field selectors support for InformerEventSource (#2835)
csviri Jun 20, 2025
774e25e
improve: remove owner refernce check (#2838)
csviri Jun 23, 2025
72f353f
Add AggregatedMetrics to support multiple Metrics implementations (#2…
Donnerbart Aug 28, 2025
cd0f808
feat: allow overriding test infrastructure kube client separately (#2…
xstefank Aug 29, 2025
e043e9e
improve: duration for initial interval in GenericRetry (#2929)
csviri Sep 2, 2025
2e56b16
improve: GenericRetry does not provide mutable singleton instance (#2…
csviri Sep 8, 2025
ead9866
chore(deps): update to Fabric8 client 7.4.0 (#2937)
metacosm Sep 9, 2025
4d6388e
feat: add experimental annotation (#2853)
csviri Sep 16, 2025
24e84c9
feat: option to triggering reconciler on all events (#2894)
csviri Oct 7, 2025
1d33a09
fix: rebase on main
csviri Oct 7, 2025
7049988
improve: add license headers to source files (#2980)
csviri Oct 9, 2025
e2f04c4
feat: id provider for external dependent resources (#2970)
csviri Oct 9, 2025
836692a
refactor: remove the use of knownResourceVersions (#2985)
shawkins Oct 10, 2025
a26cd9b
chore: change version to 5.2.0-SNAPSHOT (#2995)
csviri Oct 14, 2025
403a493
fix: flaxy EventProcessorTest.triggerOnAllEventDeleteEventInstantlyAf…
csviri Oct 17, 2025
2902bff
Resource version comparison utility (#2988)
csviri Oct 17, 2025
27f050c
fix: disable performance test on resourceVersion comparison (#3008)
csviri Oct 18, 2025
402bbd6
improve: ExternalResourceIDProvider extended to be used in CacheKeyMa…
csviri Oct 18, 2025
234ac29
wip
csviri Oct 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add experimental annotation (#2853)
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
  • Loading branch information
csviri committed Oct 18, 2025
commit 4d6388ef75617057c742323f9ddd3ddf9de556c8
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package io.javaoperatorsdk.operator.api.reconciler;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* Marks experimental features.
*
* <p>Experimental features are not yet stable and may change in future releases. Usually based on
* the feedback of the users.
*/
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.METHOD, ElementType.TYPE, ElementType.FIELD, ElementType.PACKAGE})
public @interface Experimental {

/**
* Describes why the annotated element is experimental.
*
* @return the experimental description.
*/
String value();
}