Skip to content

Commit 097e562

Browse files
committed
4.10.0
1 parent 21858bd commit 097e562

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a general purpose library for working with Content Security Policy polic
88

99
This is the code repository of the Content Security Policy support used by HtmlUnit.
1010

11-
The library was created by forking the [salvation][5] project as it is apparently no longer maintained.
11+
The library was created by forking the [salvation](https://github.com/shapesecurity/salvation) project as it is apparently no longer maintained.
1212
For HtmlUnit, the code has been adapted to the code style rules used, and support for editing policies has been removed.
1313
The code is being expanded, restructured and improved primarily to meet the requirements of this project.
1414

@@ -22,7 +22,7 @@ The code is being expanded, restructured and improved primarily to meet the requ
2222

2323
[HtmlUnit@mastodon](https://fosstodon.org/@HtmlUnit) | [HtmlUnit@bsky](https://bsky.app/profile/htmlunit.bsky.social) | [HtmlUnit@Twitter](https://twitter.com/HtmlUnit)
2424

25-
### Latest release Version 4.9.0 / January 22, 2025
25+
### Latest release Version 4.10.0 / February 22, 2025
2626

2727
### Maven
2828

@@ -32,7 +32,7 @@ Add to your `pom.xml`:
3232
<dependency>
3333
<groupId>org.htmlunit</groupId>
3434
<artifactId>htmlunit-csp</artifactId>
35-
<version>4.9.0</version>
35+
<version>4.10.0</version>
3636
</dependency>
3737
```
3838

@@ -41,7 +41,7 @@ Add to your `pom.xml`:
4141
Add to your `build.gradle`:
4242

4343
```groovy
44-
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.9.0'
44+
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.10.0'
4545
```
4646

4747
### A Note on CSP
@@ -99,7 +99,7 @@ System.out.println(policy.getFetchDirective(FetchDirectiveKind.ScriptSrc).get().
9999

100100
### Last CI build
101101
The latest builds are available from our
102-
[Jenkins CI build server][2]
102+
[Jenkins CI build server](https://jenkins.wetator.org/job/HtmlUnit%20-%20CSS%20Parser/ "HtmlUnit - CSS Parser CI")
103103

104104
[![Build Status](https://jenkins.wetator.org/buildStatus/icon?job=HtmlUnit+-+CSP)](https://jenkins.wetator.org/job/HtmlUnit%20-%20CSP/)
105105

@@ -108,7 +108,7 @@ If you use maven please add:
108108
<dependency>
109109
<groupId>org.htmlunit</groupId>
110110
<artifactId>htmlunit-csp</artifactId>
111-
<version>4.10.0-SNAPSHOT</version>
111+
<version>4.11.0-SNAPSHOT</version>
112112
</dependency>
113113

114114
You have to add the sonatype snapshot repository to your pom `repositories` section also:
@@ -205,7 +205,7 @@ This part is intended for committer who are packaging a release.
205205
## Authors
206206

207207
* **RBRi**
208-
* all the contributors to [salvation][6]
208+
* all the contributors to [salvation](https://github.com/shapesecurity/salvation)
209209

210210
## License
211211

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.htmlunit</groupId>
66
<artifactId>htmlunit-csp</artifactId>
7-
<version>4.10.0-SNAPSHOT</version>
7+
<version>4.10.0</version>
88
<name>HtmlUnit Content-Security-Policy Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -21,8 +21,8 @@
2121
<maven.compiler.target>8</maven.compiler.target>
2222

2323
<checkstyle.version>10.21.1</checkstyle.version>
24-
<spotbugs.version>4.8.6</spotbugs.version>
25-
<pmd.version>7.9.0</pmd.version>
24+
<spotbugs.version>4.9.1</spotbugs.version>
25+
<pmd.version>7.10.0</pmd.version>
2626
<spotless.version>2.38.0</spotless.version>
2727
<dependencycheck.version>10.0.4</dependencycheck.version>
2828
</properties>
@@ -60,7 +60,7 @@
6060
<plugin>
6161
<groupId>org.apache.maven.plugins</groupId>
6262
<artifactId>maven-compiler-plugin</artifactId>
63-
<version>3.13.0</version>
63+
<version>3.14.0</version>
6464
</plugin>
6565
<plugin>
6666
<groupId>org.apache.maven.plugins</groupId>
@@ -182,7 +182,7 @@
182182
<plugin>
183183
<groupId>com.github.spotbugs</groupId>
184184
<artifactId>spotbugs-maven-plugin</artifactId>
185-
<version>4.8.6.6</version>
185+
<version>4.9.1.0</version>
186186
<dependencies>
187187
<dependency>
188188
<groupId>com.github.spotbugs</groupId>

0 commit comments

Comments
 (0)