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

[AMQ-9545] Set cache-control to no-store by default for stronger security #1238

Closed
wants to merge 23 commits into from
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
fdbaf1b
Set cache-control to no-store by default for stronger security
kenliao94 Jul 6, 2024
c459724
[AMQ-9521] Upgrade Spring 6.1.10
mattrpav Jul 9, 2024
27cf0d0
[AMQ-9522] Upgrade Jetty 11.0.22
mattrpav Jul 9, 2024
29b1517
[AMQ-9523] Upgrade Jackson 2.17.2
mattrpav Jul 9, 2024
bcb34ff
[AMQ-9524] Upgrade JAXB 4.0.5 / jaxb-tools 4.0.8
mattrpav Jul 9, 2024
9ef5a79
[AMQ-9525] Upgrade Camel 4.4.3
mattrpav Jul 9, 2024
05a9dc6
[AMQ-9526] Upgrade Jolokia 2.0.3
mattrpav Jul 9, 2024
c84b405
[AMQ-9527] Upgrade commons-logging 1.3.3
mattrpav Jul 9, 2024
b2708a9
for loop can be replaced with enhanced for
alekseie Jul 12, 2024
7620ff8
[AMQ-9531] Fix regression causing export command to fail
mattrpav Jul 12, 2024
0090d20
[AMQ-9484] Support exporting kahadb messages from a queue with an offset
mattrpav Apr 23, 2024
66b563b
[AMQ-9533] Add Backup command that uses activemq-protobuf (to replace…
mattrpav Jul 11, 2024
65413de
[AMQ-9535] Upgrade slf4j 2.0.13
mattrpav Jul 16, 2024
a240026
[AMQ-9521] Uprgade Spring 6.1.11
mattrpav Jul 16, 2024
8e413cc
Typo, with -> will
AlexejTimonin Jul 20, 2024
97c2c42
for loop can be replaced with enhanced for
alekseie Jul 20, 2024
f2ea2a6
[AMQ-9539] Add sonar quality analysis to Jenkins
mattrpav Jul 23, 2024
58ad419
[AMQ-9539] Make tests and deploy configurable
mattrpav Jul 24, 2024
ba3a107
AMQ-9493: Upgrade to maven-plugin-plugin 3.13.1
jbonofre May 13, 2024
10920b1
Fix bom (release plugin doesn't accept properties)
jbonofre Jul 31, 2024
3afd247
AMQ-9547 - Remove setLength() and usage from RecoverableRandomAccessFile
cshannon Aug 8, 2024
2a1fa02
[NO-JIRA] Disable deploy stage by default
mattrpav Aug 16, 2024
d8207b6
Merge branch 'apache:main' into add_security_header
kenliao94 Aug 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
5 changes: 5 additions & 0 deletions assembly/src/release/conf/jetty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
<property name="name" value="X-Content-Type-Options"/>
<property name="value" value="nosniff"/>
</bean>
<bean id="header" class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
<property name="pattern" value="*"/>
<property name="name" value="Cache-Control"/>
<property name="value" value="no-store"/>
</bean>
</list>
</property>
</bean>
Expand Down