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

Bael 8370 new: Add Execution Metadata to Scheduled Tasks in Spring Boot Actuator #18103

Merged
merged 21 commits into from
Jan 4, 2025
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
af025b7
#BAEL-8370-New: add Jobs
hmdrzsharifi Dec 19, 2024
791ed6e
#BAEL-8370-New: add SecurityConfig
hmdrzsharifi Dec 19, 2024
fbf3f91
#BAEL-8370-New: update Spring Boot version to 3.4.0
hmdrzsharifi Dec 19, 2024
ee98476
#BAEL-8370-New: add htmlunit.version to spring-boot-rest module
hmdrzsharifi Dec 19, 2024
4755d9d
#BAEL-8370-New: revert Spring Boot version
hmdrzsharifi Dec 22, 2024
e86405c
#BAEL-8370-NEW: revert htmlunit version
Dec 24, 2024
7a02d82
Merge branch 'master' into BAEL-8370-New
Dec 24, 2024
2f735e1
#BAEL-8370-NEW: update Spring Boot version to 3.4.0
Dec 24, 2024
8ef4986
Merge branch 'master' into BAEL-8370-New
hmdrzsharifi Dec 31, 2024
23e63c0
#BAEL-8370-New: update Spring Boot version to 3.4.1
hmdrzsharifi Dec 31, 2024
45b2ade
#BAEL-8370-New: replace removed method in htmlunit
hmdrzsharifi Dec 31, 2024
e2e4c05
Merge remote-tracking branch 'origin/BAEL-8370-New' into BAEL-8370-New
hmdrzsharifi Dec 31, 2024
78cb5dc
#BAEL-8370-New: add dependency version for htmlunit
hmdrzsharifi Dec 31, 2024
7f52d5d
#BAEL-8370-New: resolve error: com.google.common.util.concurrent.Futu…
hmdrzsharifi Dec 31, 2024
f538904
Merge branch 'master' into BAEL-8370-New
hmdrzsharifi Jan 2, 2025
7e73c07
#BAEL-8370-New: revert parent Spring Boot 3
hmdrzsharifi Jan 2, 2025
144d1cf
#BAEL-8370-New: revert change due to Spring Boot 3 Update
hmdrzsharifi Jan 2, 2025
985718b
#BAEL-8370-New: revert change due to Spring Boot 3 Update
hmdrzsharifi Jan 2, 2025
d896374
#BAEL-8370-New: revert change due to Spring Boot 3 Update
hmdrzsharifi Jan 2, 2025
cb39d22
#BAEL-8370-New: add Spring Boot 3 separately
hmdrzsharifi Jan 2, 2025
52dd018
#BAEL-8370-New: update JUnit to 5
hmdrzsharifi Jan 2, 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
#BAEL-8370-New: replace removed method in htmlunit
  • Loading branch information
hmdrzsharifi committed Dec 31, 2024
commit 45b2ade0355ea6f977f1abd257358ed9c036b0be
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void whenRequestingFaultyEndpointAsHtml_thenReceiveWhitelabelPageResponse
webClient.getOptions()
.setThrowExceptionOnFailingStatusCode(false);
HtmlPage page = webClient.getPage(EXCEPTION_ENDPOINT);
assertThat(page.getBody().asNormalizedText()).contains("Whitelabel Error Page");
assertThat(page.asText()).contains("Whitelabel Error Page");
}
}
}