diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb11f382ea..14b0e516cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Set up JDK uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7a80ec1242..8985c50222 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Validate version name run: | [[ "$TAG" =~ jackson-core-[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)? ]] || exit 1 - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Set up JDK uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 with: diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 393b72891c..740bce9d56 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -29,7 +29,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false @@ -60,6 +60,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3 + uses: github/codeql-action/upload-sarif@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4 with: sarif_file: results.sarif diff --git a/README.md b/README.md index 5d687ab4b4..1e23293b1d 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,8 @@ Implemented limits are: * Default: 20_000_000 (20 million) (since 2.15.1; 2.15.0 had lower limit, 5 million) * Maximum Input nesting depth (2.15+): (see https://github.com/FasterXML/jackson-core/pull/943) * Default: 1000 levels +* Maximum Property name length (2.16+): (see https://github.com/FasterXML/jackson-core/issues/1047) + * Default: 50,000 * Maximum Document length (2.16+): (see https://github.com/FasterXML/jackson-core/issues/1046) * Default: Unlimited (-1) @@ -130,8 +132,6 @@ Implemented limits are: * Maximum Output nesting depth (2.16+): (see https://github.com/FasterXML/jackson-core/pull/1055) * Default: 1000 levels -* Maximum Property name length (2.16+): (see https://github.com/FasterXML/jackson-core/issues/1047) - * Default: 50,000 ### Re-configuring limits