From 43bedab2dc029285ee77f2fbd6b686ebd93b31c8 Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Mon, 8 Sep 2025 18:39:55 +0100 Subject: [PATCH] docs(featuredetection): remove unknown dates Signed-off-by: Babak K. Shandiz --- internal/featuredetection/feature_detection.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/featuredetection/feature_detection.go b/internal/featuredetection/feature_detection.go index 3b495e988..dd845c795 100644 --- a/internal/featuredetection/feature_detection.go +++ b/internal/featuredetection/feature_detection.go @@ -285,13 +285,13 @@ func (d *detector) SearchFeatures() (SearchFeatures, error) { // Regarding the release of advanced issue search (AIS, for short), there // are three time spans/periods: // - // 1. Pre-deprecation (< 4 Sep): where both legacy search and AIS are available + // 1. Pre-deprecation: where both legacy search and AIS are available // - GraphQL: `ISSUE` and `ISSUE_ADVANCED` search types in GraphQL behave differently // - REST: `advance_search=true` query parameter can be used to switch to AIS - // 2. Deprecation (>= 4 Sep): only AIS available + // 2. Deprecation: only AIS available // - GraphQL: `ISSUE` and `ISSUE_ADVANCED` search types in GraphQL behave the same (AIS) // - REST: `advance_search` query parameter has no effect (AIS) - // 3. Cleanup (>= TBD): only AIS available + // 3. Cleanup: only AIS available // - GraphQL: `ISSUE` search type in GraphQL is the only available option (AIS) // - REST: `advance_search` query parameter has no effect (AIS) //