Skip to content

Commit bf7a554

Browse files
committed
[RELEASE] iText 9.7.0
2 parents f639a80 + 7b3e713 commit bf7a554

795 files changed

Lines changed: 297229 additions & 2725 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/createpr.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: CreatePR
2+
3+
on:
4+
create:
5+
6+
jobs:
7+
call-createpr:
8+
uses: XodoDocs/itext-github-workflows/.github/workflows/createpr.yml@master
9+
secrets: inherit

.github/workflows/createrebase.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Create rebased branch"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- develop
7+
types:
8+
- assigned
9+
- synchronize
10+
11+
jobs:
12+
call-createrebase:
13+
uses: XodoDocs/itext-github-workflows/.github/workflows/createrebase.yml@master
14+
secrets: inherit

README.md

Lines changed: 30 additions & 18 deletions
Large diffs are not rendered by default.

barcodes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>9.6.0</version>
8+
<version>9.7.0</version>
99
</parent>
1010

1111
<artifactId>barcodes</artifactId>

bouncy-castle-adapter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>9.6.0</version>
8+
<version>9.7.0</version>
99
</parent>
1010

1111
<artifactId>bouncy-castle-adapter</artifactId>

bouncy-castle-connector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>9.6.0</version>
8+
<version>9.7.0</version>
99
</parent>
1010

1111
<artifactId>bouncy-castle-connector</artifactId>

bouncy-castle-connector/src/main/java/com/itextpdf/bouncycastleconnector/logs/BouncyCastleLogMessageConstant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ private BouncyCastleLogMessageConstant() {
3333

3434
public static final String BOUNCY_CASTLE_DEPENDENCY_MUST_PRESENT =
3535
"Either com.itextpdf:bouncy-castle-adapter or com.itextpdf:bouncy-castle-fips-adapter " // Android-Conversion-Replace "com.itextpdf.android:bouncy-castle-adapter-android "
36-
+ "dependency must be added in order to use BouncyCastleFactoryCreator";
36+
+ "dependency must be added in order to use functionality requiring cryptography";
3737
}

bouncy-castle-fips-adapter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>9.6.0</version>
8+
<version>9.7.0</version>
99
</parent>
1010

1111
<artifactId>bouncy-castle-fips-adapter</artifactId>

brotli-compressor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.itextpdf</groupId>
66
<artifactId>root</artifactId>
7-
<version>9.6.0</version>
7+
<version>9.7.0</version>
88
</parent>
99

1010
<artifactId>brotli-compressor</artifactId>

brotli-compressor/src/test/java/com/itextpdf/brotlicompressor/BrotliOutputStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ private String decompressData(byte[] compressed) throws IOException {
228228

229229
byte[] buffer = new byte[1024];
230230
int len;
231-
while ((len = brotliStream.read(buffer)) != -1) {
231+
while ((len = brotliStream.read(buffer, 0, buffer.length)) > 0) {
232232
decompressed.write(buffer, 0, len);
233233
}
234234

0 commit comments

Comments
 (0)