Skip to content

Commit 132b65f

Browse files
authored
[0.6.x] Bump next from 14.2.31 to 14.2.32, pass middleware request param (#1997)
* [0.6.x] Bump next from 14.2.31 to 14.2.32, pass middle request parameter Signed-off-by: Michael Edgar <medgar@redhat.com> * Update package-lock, fix audits: axios, cipher-base, sha.js Signed-off-by: Michael Edgar <medgar@redhat.com> * Install Strimzi 0.45.x for Playwright tests (0.6.x only) Signed-off-by: Michael Edgar <medgar@redhat.com> --------- Signed-off-by: Michael Edgar <medgar@redhat.com>
1 parent b79caf8 commit 132b65f

4 files changed

Lines changed: 107 additions & 94 deletions

File tree

.github/workflows/playwright-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
metadata:
9494
name: strimzi-kafka-operator
9595
spec:
96-
channel: stable
96+
channel: strimzi-0.45.x
9797
name: strimzi-kafka-operator
9898
source: operatorhubio-catalog
9999
sourceNamespace: olm' | kubectl apply -n operators -f -

ui/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default async function middleware(req: NextRequest) {
6767
{ path: requestPath },
6868
"Bypassing OIDC authentication for /api/schema",
6969
);
70-
return NextResponse.next(); // Allow access without authentication
70+
return NextResponse.next({ request: req }); // Allow access without authentication
7171
}
7272

7373
const isPublicPage = !oidcEnabled && publicPathnameRegex.test(requestPath);

0 commit comments

Comments
 (0)