Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update all non-major dependencies (v3.x.x) #3904

Merged
merged 24 commits into from
Jan 10, 2025
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
78f277d
chore: Update all non-major dependencies
renovate-bot Jan 7, 2025
23f0460
remove updating .npmrc by Renovate
pj892031 Jan 7, 2025
7ff78a4
build and test fixes
pj892031 Jan 7, 2025
8da6849
fix API Catalog to serve static content
pj892031 Jan 8, 2025
c627cc6
downgrade of Spring
pj892031 Jan 8, 2025
4d458b9
revert GatewayReactiveOAuth2AutoConfiguration
pj892031 Jan 8, 2025
57b79ee
fix Reactor issue
pj892031 Jan 8, 2025
f089353
upgrade to newer version of Spring
pj892031 Jan 8, 2025
a08a7d7
replacement of deprecated MockBean annotation
pj892031 Jan 8, 2025
50ba76f
update of deprecated annotation @MockBean
pj892031 Jan 9, 2025
9ea24ad
fix minor bugs
pj892031 Jan 9, 2025
cddb785
remove circular dependency issue (asynchronous initialization of zosm…
pj892031 Jan 9, 2025
7db9462
attempt to survive when Spring context is not ready about CORS (Unsat…
pj892031 Jan 10, 2025
a6ff402
attempt to fix circular bean dependency
pj892031 Jan 10, 2025
91d55b6
revert spring to the previous minor version
pj892031 Jan 10, 2025
4ea944c
fix test with no content types
pj892031 Jan 10, 2025
22e074e
Revert "update of deprecated annotation @MockBean"
pj892031 Jan 10, 2025
bb24b38
Revert "replacement of deprecated MockBean annotation"
pj892031 Jan 10, 2025
6e78a11
revert RouteLocator attempt to fix circular dependency
pj892031 Jan 10, 2025
97450c9
revert fix for the newer spring
pj892031 Jan 10, 2025
ff897c5
Merge branch 'v3.x.x' into renovate/v3.x.x-all-minor-patch
pj892031 Jan 10, 2025
b926ac8
fix recent dependencies with security issues
pj892031 Jan 10, 2025
ccf1a74
fix property path for the rate limiter
taban03 Jan 10, 2025
c2e6230
fix sonar issues
pj892031 Jan 10, 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
revert fix for the newer spring
Signed-off-by: Pavel Jareš <[email protected]>
pj892031 committed Jan 10, 2025
commit 97450c9cd753c5cc277582642c99f8401c05e217
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ void givenUnknownEndpoint_whenCallZaas_thenReturns404WithMessage() {
.get("/unknown/endpoint")
.then()
.statusCode(404)
.body("messages[0].messageKey", is("org.zowe.apiml.common.notFound"));
.body("messages[0].messageKey", is("org.zowe.apiml.common.endPointNotFound"));
}

@ParameterizedTest
Loading