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

[3.2] 3.2.10.Final backports batch 1 #38180

Merged
merged 29 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7e1e955
Handle generic types for ParamConverter in REST Client
geoand Nov 6, 2023
17281e0
Fix vale errors and some warnings in OidcCommonConfig
rolfedh Nov 10, 2023
4da919f
Never register server specific providers in REST Client (fixed)
famod Nov 10, 2023
57fd236
Use empty string in Sse event when there is no data
geoand Nov 13, 2023
ed2aa74
Updates infinispan client intelligence section
karesti Nov 14, 2023
e43064a
recognize quarkus.tls.trust-all property by keycloak-admin-client ext…
barreiro Nov 20, 2023
010051e
Fix OpenTelemetry trace exclusion of endpoints served from the manage…
cescoffier Nov 20, 2023
9926bc3
Add a test for the Duplicated Context handling in the CacheResultInte…
cescoffier Nov 21, 2023
3b09ce9
Always execute a JPA password action
sberyozkin Nov 21, 2023
cdf7ff2
Prepare docs/sync-web-site.sh for automated releases
gsmet Nov 24, 2023
0a32281
Use batch mode for update-version.sh
gsmet Nov 25, 2023
1f69154
Avoid asking for GPG passphrase on CI
gsmet Nov 25, 2023
981ad59
quarkus-update - Improve cleanup of log lines
gsmet Nov 30, 2023
2e01ee0
quarkus update - Remove two unused methods
gsmet Nov 30, 2023
008f164
quarkus update - Fix Windows detection
gsmet Nov 30, 2023
50def73
quarkus update - Add a clean in mvn process-sources
gsmet Nov 30, 2023
7c7b644
quarkus update - Execute Maven commands in batch mode
gsmet Nov 30, 2023
ed141f6
Save pathParamValues encoded and perform decoding when requested
rmartinc Dec 4, 2023
229b3b1
Fix != expression in @PreAuthorize check
geoand Dec 5, 2023
ce86db8
Make docs/sync-web-site.sh recoverable
gsmet Dec 6, 2023
f522a8f
Support using commas to add and remove extensions with CLI
gsmet Dec 7, 2023
0d97d00
Reg. methods of RESTeasy reactive param. containers for reflection
zakkak Nov 13, 2023
28eac00
Refactor: Simplify class names array creation
zakkak Nov 13, 2023
dcbb238
Use standard URL when updating the website
gsmet Dec 12, 2023
102ec7e
Fix Create the Maven project section in security-oidc-bearer-token-au…
sberyozkin Jan 2, 2024
d50f48d
Do not expand config properties for Gradle Workers
radcortez Jan 2, 2024
a6c5b05
Test access to fields of @Immutable embeddables
yrodiere Dec 1, 2023
5f266fa
Fix Panache bytecode enhancement for @Embeddable records
yrodiere Dec 1, 2023
2e4648b
Avoid @TempDir in RestClientCDIDelegateBuilderTest
gsmet Nov 7, 2023
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
Prepare docs/sync-web-site.sh for automated releases
(cherry picked from commit 37fefb3)
  • Loading branch information
gsmet authored and aloubyansky committed Jan 14, 2024
commit cdf7ff2e5f77ba017ddf7c03d00646ae52b2a380
6 changes: 5 additions & 1 deletion docs/sync-web-site.sh
Original file line number Diff line number Diff line change
@@ -36,7 +36,11 @@ if [ -z $TARGET_DIR ]; then
if [[ "$QUARKUS_WEB_SITE_PUSH" != "true" ]]; then
GIT_OPTIONS="--depth=1"
fi
git clone -b develop --single-branch $GIT_OPTIONS git@github.com:quarkusio/quarkusio.github.io.git ${TARGET_DIR}
if [ -n "${RELEASE_GITHUB_TOKEN}" ]; then
git clone -b develop --single-branch $GIT_OPTIONS https://${RELEASE_GITHUB_TOKEN}:@github.com/quarkusio/quarkusio.github.io.git ${TARGET_DIR}
else
git clone -b develop --single-branch $GIT_OPTIONS git@github.com:quarkusio/quarkusio.github.io.git ${TARGET_DIR}
fi
fi

if [ $BRANCH == "main" ] && [ "$QUARKUS_RELEASE" == "true" ]; then