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.7.0 backports 1 #38354

Merged
merged 42 commits into from
Jan 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
87859df
Make sure we can do a GET with a CSRF token cookie and still obtain t…
FroMage Jan 9, 2024
9e64ae4
Make the route build item truly final
cescoffier Jan 17, 2024
c7a6e11
Recommend quarkus.jib.jvm-additional-arguments rather than quarkus.ji…
yrodiere Jan 17, 2024
c5d69eb
Improve locales IT
geoand Jan 17, 2024
add5596
Document how Keycloak Admin Client and Dev Service can use the same p…
sberyozkin Jan 17, 2024
b9c0b45
Javadoc edits for quarkus-oidc.adoc
rolfedh Jan 17, 2024
1069081
Qute: fix UserTagSectionHelper.Arguments.asHtmlAttributes()
mkouba Jan 17, 2024
d239f57
Align startup exception wrapping in Hibernate Reactive on Hibernate ORM
yrodiere Jan 10, 2024
91243eb
Add runtime configuration property quarkus.datasource.active
yrodiere Dec 7, 2023
059f9c3
Test runtime configuration property quarkus.datasource.active
yrodiere Jan 9, 2024
c4dee66
Fixed deprecation warnings for Gradle 9 in QuarkusPlugin
ribafish Jan 17, 2024
9768101
Update qute-reference.adoc
Anton-Vasilev Jan 17, 2024
94b6044
Bump org.mockito:mockito-core from 5.8.0 to 5.9.0
dependabot[bot] Jan 17, 2024
202306e
Bump resteasy-microprofile.version from 2.1.4.Final to 2.1.5.Final
dependabot[bot] Jan 17, 2024
ad10922
Skip test truststores creation with -Dquickly*
gsmet Jan 18, 2024
720a359
Make RoutingContext available during SecurityIdentity augmentation
michalvavrik Jan 18, 2024
917bf46
Improve the names of the locales IT modules
geoand Jan 18, 2024
5dafde7
Actually make the library usable by Quarkus applications
geoand Jan 18, 2024
e3ec37f
Make sure the Locales IT modules are always included by GIB
geoand Jan 18, 2024
2d9dc10
Upgrade to Hibernate ORM 6.4.2.Final
yrodiere Jan 18, 2024
06fba9f
ArC: consolidate handling of transitive interceptor bindings
Ladicek Jan 11, 2024
eeed96e
Bump Keycloak version to 23.0.4
sberyozkin Jan 18, 2024
a531cd0
Migrate Security WebAuth guide to Hiberante ORM
michalvavrik Jan 19, 2024
52a480f
DevUI: Show source editor when config file is empty
gastaldi Jan 19, 2024
a31df37
Bump io.smallrye.reactive:mutiny-bom from 2.5.3 to 2.5.4
dependabot[bot] Jan 19, 2024
d44ae03
Upgrade to Mutiny 2.5.4
jponge Jan 19, 2024
a4ae5ae
Remove wrong LGPL headers within some classes of the Hibernate ORM ex…
Sanne Jan 19, 2024
fdce564
fix entity-manager retrieval in spring-data-repos
fladdimir Jan 22, 2024
bb81d01
Qute: improvements and fixes of UserTagSectionHelper.Arguments
mkouba Jan 18, 2024
6b170c4
Fixes #38247 incorrect rel=self web link
bpasson Jan 18, 2024
9074dfc
Update text
bpasson Jan 18, 2024
7015328
Update text
bpasson Jan 18, 2024
9943301
Solved review comments
bpasson Jan 18, 2024
e59221d
Support using tars and docker and daemon as base image for Jib
geoand Jan 22, 2024
b36c9d8
Upgrade sshd from 2.10.0 to 2.12.0
rsvoboda Jan 22, 2024
d828a24
Improve datasource tracing
brunobat Jan 23, 2024
8bd951a
fix: bump dockerfiles and api server url in integration tests
iocanel Jan 23, 2024
02ea779
Fix command line arguments being squashed
MaciejDromin Jan 5, 2024
ccc23f4
Fix quarkus dev broken for command mode arguments
MaciejDromin Dec 29, 2023
be0ecce
Minor adjustments
MaciejDromin Dec 30, 2023
da170ce
Unblock SmallRye Health exposed routes
xstefank Jan 10, 2024
f9c960a
Bump to Netty 4.1.106.Final
cescoffier Jan 23, 2024
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
DevUI: Show source editor when config file is empty
(cherry picked from commit e5f655c)
gastaldi authored and gsmet committed Jan 23, 2024

Partially verified

This commit is signed with the committer’s verified signature.
gsmet’s contribution has been verified via GPG key.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
commit 52a480f97f40d66a1d915bfa225465d3be26eb1b
Original file line number Diff line number Diff line change
@@ -71,16 +71,14 @@ export class QwcConfigurationEditor extends LitElement {
return html`<span>Error: ${this._error}</span>`;
}

if(this._value){
return html`
${this._renderToolbar()}
<qui-code-block id="code"
mode='${this._type}'
content='${this._value}'
value='${this._value}'
editable>
</qui-code-block>`;
}
return html`
${this._renderToolbar()}
<qui-code-block id="code"
mode='${this._type}'
content='${this._value}'
value='${this._value}'
editable>
</qui-code-block>`;
}

_renderToolbar(){