Skip to content

Commit c6273d3

Browse files
Bump the gradle-dependencies group across 1 directory with 4 updates (#225)
Bumps the gradle-dependencies group with 4 updates in the / directory: commons-io:commons-io, [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework), [com.google.code.gson:gson](https://github.com/google/gson) and com.gradle.plugin-publish. Updates `commons-io:commons-io` from 2.21.0 to 2.22.0 Updates `org.junit.jupiter:junit-jupiter` from 5.14.3 to 5.14.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/junit-team/junit-framework/releases">org.junit.jupiter:junit-jupiter's releases</a>.</em></p> <blockquote> <p>JUnit 5.14.4 = Platform 1.14.4 + Jupiter 5.14.4 + Vintage 5.14.4</p> <p>See <a href="https://docs.junit.org/5.14.4/release-notes/">Release Notes</a>.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/junit-team/junit-framework/compare/r5.14.3...r5.14.4">https://github.com/junit-team/junit-framework/compare/r5.14.3...r5.14.4</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/junit-team/junit-framework/commit/096fd696c1b22780e025a02417d42903e0022862"><code>096fd69</code></a> Release 5.14.4</li> <li><a href="https://github.com/junit-team/junit-framework/commit/11fd02b53d3deaffeb57ce1672e166b904611a89"><code>11fd02b</code></a> Remove JDK 24 (EOL)</li> <li><a href="https://github.com/junit-team/junit-framework/commit/5b7f023f0a3aae53580115bd9e88b0c019cbe307"><code>5b7f023</code></a> Fix integration tests on JDK 27</li> <li><a href="https://github.com/junit-team/junit-framework/commit/18f842a29422d728d8a7a9e9412ba0dac7d5b599"><code>18f842a</code></a> Test against JDK 26 (GA) and JDK 27 (EA)</li> <li><a href="https://github.com/junit-team/junit-framework/commit/a5bf3362b50e965c9209583cfc0b4159cf53f3dd"><code>a5bf336</code></a> Polish 5.14.4 release notes</li> <li><a href="https://github.com/junit-team/junit-framework/commit/7667c14ad37aa659451abedd6ca0e6fa9fcbb6c0"><code>7667c14</code></a> Fix race condition in NodeTestTask (<a href="https://redirect.github.com/junit-team/junit-framework/issues/5427">#5427</a>)</li> <li><a href="https://github.com/junit-team/junit-framework/commit/ac01f2d542ded6074f3d59014e7b456c2e77808b"><code>ac01f2d</code></a> Include full display name in legacy XML reports (<a href="https://redirect.github.com/junit-team/junit-framework/issues/5524">#5524</a>)</li> <li><a href="https://github.com/junit-team/junit-framework/commit/fbd4a8e846f50c226a928e4b8988bfb57b6e70c3"><code>fbd4a8e</code></a> Include class template invocation index in legacy reporting names</li> <li><a href="https://github.com/junit-team/junit-framework/commit/7d6f0c06f1fc7173d064c244af0c4d5d621a50fb"><code>7d6f0c0</code></a> Only check PDF for GA releases</li> <li><a href="https://github.com/junit-team/junit-framework/commit/14f534d51a58ef265f730edbb8b318f2b314ca31"><code>14f534d</code></a> Test 5.14.x against JDK 25 ga (<a href="https://redirect.github.com/junit-team/junit-framework/issues/5623">#5623</a>)</li> <li>Additional commits viewable in <a href="https://github.com/junit-team/junit-framework/compare/r5.14.3...r5.14.4">compare view</a></li> </ul> </details> <br /> Updates `com.google.code.gson:gson` from 2.13.2 to 2.14.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/gson/releases">com.google.code.gson:gson's releases</a>.</em></p> <blockquote> <h2>Gson 2.14.0</h2> <h2>What's Changed</h2> <ul> <li> <p>Add type adapters for <code>java.time</code> classes by <a href="https://github.com/eamonnmcmanus"><code>@​eamonnmcmanus</code></a> in <a href="https://redirect.github.com/google/gson/pull/2948">google/gson#2948</a></p> <p>When the <code>java.time</code> API is available, Gson automatically can read and write instances of classes like <code>Instant</code> and <code>Duration</code>. The format it uses essentially freezes the JSON representation that <code>ReflectiveTypeAdapterFactory</code> established by default, based on the private fields of <code>java.time</code> classes. That's not a great representation, but it is understandable. Changing it to anything else would break compatibility with systems that are expecting the current format.</p> <p>With this change, Gson no longer tries to access private fields of these classes using reflection. So it is no longer necessary to run with <code>--add-opens</code> for these classes on recent JDKs.</p> </li> <li> <p>Remove <code>com.google.gson.graph</code> by <a href="https://github.com/eamonnmcmanus"><code>@​eamonnmcmanus</code></a> in <a href="https://redirect.github.com/google/gson/pull/2990">google/gson#2990</a>.</p> <p>This package was not part of any released artifact and depended on Gson internals in potentially problematic ways.</p> </li> <li> <p>Validate that strings being parsed as integers consist of ASCII characters by <a href="https://github.com/eamonnmcmanus"><code>@​eamonnmcmanus</code></a> in <a href="https://redirect.github.com/google/gson/pull/2995">google/gson#2995</a></p> <p>Previously, strings could contain non-ASCII Unicode digits and still be parsed as integers. That's inconsistent with how JSON numbers are treated.</p> </li> <li> <p>Fix duplicate key detection when first value is null by <a href="https://github.com/andrewstellman"><code>@​andrewstellman</code></a> in <a href="https://redirect.github.com/google/gson/pull/3006">google/gson#3006</a></p> <p>This could potentially break code that was relying on the incorrect behaviour. For example, this JSON string was previously accepted but will no longer be: <code>{&quot;foo&quot;: null, &quot;foo&quot;: bar}</code>.</p> </li> <li> <p>Remove <code>Serializable</code> from internal <code>Type</code> implementation classes. by <a href="https://github.com/eamonnmcmanus"><code>@​eamonnmcmanus</code></a> in <a href="https://redirect.github.com/google/gson/pull/3011">google/gson#3011</a></p> <p>The nested classes <code>ParameterizedTypeImpl</code>, <code>GenericArrayTypeImpl</code>, and <code>WildcardTypeImpl</code> in <code>GsonTypes</code> are implementations of the corresponding types (without <code>Impl</code>) in <code>java.lang.reflect</code>. For some reason, they were serializable, even though the <code>java.lang.reflect</code> implementations are not. Having unnecessarily serializable classes could <em>conceivably</em> have been a security problem if they were part of a larger exploit using serialization. (We do not consider this a likely scenario and do not suggest that you need to update Gson just to get this change.)</p> </li> <li> <p>Add <code>LegacyProtoTypeAdapterFactory</code>. by <a href="https://github.com/eamonnmcmanus"><code>@​eamonnmcmanus</code></a> in <a href="https://redirect.github.com/google/gson/pull/3014">google/gson#3014</a></p> <p>This is not part of any released artifact, but may be of use when trying to fix code that is currently accessing the internals of protobuf classes via reflection.</p> </li> <li> <p>Make AppendableWriter do flush and close if delegation object supports by <a href="https://github.com/MukjepScarlet"><code>@​MukjepScarlet</code></a> in <a href="https://redirect.github.com/google/gson/pull/2925">google/gson#2925</a></p> </li> </ul> <h2>Other less visible changes</h2> <ul> <li>Add default capacity to EnumTypeAdapter maps by <a href="https://github.com/MukjepScarlet"><code>@​MukjepScarlet</code></a> in <a href="https://redirect.github.com/google/gson/pull/2959">google/gson#2959</a></li> <li>refactor: move derived adapters from Gson to TypeAdapters by <a href="https://github.com/MukjepScarlet"><code>@​MukjepScarlet</code></a> in <a href="https://redirect.github.com/google/gson/pull/2951">google/gson#2951</a></li> <li>Optimize <code>new Gson()</code> by <a href="https://github.com/MukjepScarlet"><code>@​MukjepScarlet</code></a> in <a href="https://redirect.github.com/google/gson/pull/2864">google/gson#2864</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ThirdGoddess"><code>@​ThirdGoddess</code></a> made their first contribution in <a href="https://redirect.github.com/google/gson/pull/2944">google/gson#2944</a></li> <li><a href="https://github.com/lmj798"><code>@​lmj798</code></a> made their first contribution in <a href="https://redirect.github.com/google/gson/pull/2988">google/gson#2988</a></li> <li><a href="https://github.com/Eng-YasminKotb"><code>@​Eng-YasminKotb</code></a> made their first contribution in <a href="https://redirect.github.com/google/gson/pull/3005">google/gson#3005</a></li> <li><a href="https://github.com/andrewstellman"><code>@​andrewstellman</code></a> made their first contribution in <a href="https://redirect.github.com/google/gson/pull/3006">google/gson#3006</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/google/gson/compare/gson-parent-2.13.2...gson-parent-2.14.0">https://github.com/google/gson/compare/gson-parent-2.13.2...gson-parent-2.14.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/gson/commit/3ff35d6269894901ab8006258395aafc4b9765cd"><code>3ff35d6</code></a> [maven-release-plugin] prepare release gson-parent-2.14.0</li> <li><a href="https://github.com/google/gson/commit/a3024fde2a5c12b9a9a0b6b914ae4899aa574d81"><code>a3024fd</code></a> Bump the maven group with 13 updates (<a href="https://redirect.github.com/google/gson/issues/3002">#3002</a>)</li> <li><a href="https://github.com/google/gson/commit/5689ffe44952ca6ed44c595886b9043286311b23"><code>5689ffe</code></a> Bump the github-actions group across 1 directory with 3 updates (<a href="https://redirect.github.com/google/gson/issues/3018">#3018</a>)</li> <li><a href="https://github.com/google/gson/commit/48db33cbf93af6b2f5b117dfdfd826de47f7229c"><code>48db33c</code></a> Add <code>LegacyProtoTypeAdapterFactory</code>. (<a href="https://redirect.github.com/google/gson/issues/3014">#3014</a>)</li> <li><a href="https://github.com/google/gson/commit/53d703ee76ca3e951fa4a727307c1f28dbcaf3aa"><code>53d703e</code></a> Update outdated comment regarding serializable types (<a href="https://redirect.github.com/google/gson/issues/3012">#3012</a>)</li> <li><a href="https://github.com/google/gson/commit/0189b727761f31596d1a27b7c60b42478dc9f331"><code>0189b72</code></a> Remove <code>Serializable</code> from internal <code>Type</code> implementation classes. (<a href="https://redirect.github.com/google/gson/issues/3011">#3011</a>)</li> <li><a href="https://github.com/google/gson/commit/f4d371d29c04066dbe7fdb31f642831f9c7f40cd"><code>f4d371d</code></a> Fix duplicate key detection when first value is null (<a href="https://redirect.github.com/google/gson/issues/3006">#3006</a>)</li> <li><a href="https://github.com/google/gson/commit/27d9ba1eeeeb156540cf5397504a4f9f256e911f"><code>27d9ba1</code></a> Fix typo in README (JPMS dependencies section) (<a href="https://redirect.github.com/google/gson/issues/3005">#3005</a>)</li> <li><a href="https://github.com/google/gson/commit/1fa9b7a0a994b006b3be00e2df9de778e71e6807"><code>1fa9b7a</code></a> Validate that strings being parsed as integers consist of ASCII characters (#...</li> <li><a href="https://github.com/google/gson/commit/b7d59549188867deb42e46073fb38735a5beda1c"><code>b7d5954</code></a> Add iterator fail-fast tests for LinkedTreeMap.clear() (<a href="https://redirect.github.com/google/gson/issues/2992">#2992</a>)</li> <li>Additional commits viewable in <a href="https://github.com/google/gson/compare/gson-parent-2.13.2...gson-parent-2.14.0">compare view</a></li> </ul> </details> <br /> Updates `com.gradle.plugin-publish` from 2.1.0 to 2.1.1 <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | org.junit.jupiter:junit-jupiter | [>= 6.a, < 7] | </details> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bd5f2ba commit c6273d3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jackson-platform = { group = "com.fasterxml.jackson", name = "jackson-bom", vers
77
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind" }
88
jackson-parameter-names = { group = "com.fasterxml.jackson.module", name = "jackson-module-parameter-names" }
99

10-
apache-commons-io = { group = "commons-io", name = "commons-io", version = "2.21.0" }
10+
apache-commons-io = { group = "commons-io", name = "commons-io", version = "2.22.0" }
1111

1212
github-packageurl = { group = "com.github.package-url", name = "packageurl-java", version = "1.5.0" }
1313

@@ -16,13 +16,13 @@ github-packageurl = { group = "com.github.package-url", name = "packageurl-java"
1616
spock-core = { group = "org.spockframework", name = "spock-core", version.ref = "spock" }
1717
spock-junit4 = { group = "org.spockframework", name = "spock-junit4", version.ref = "spock" }
1818
junit-junit4 = { group = "junit", name = "junit", version = "4.13.2" }
19-
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version = "5.14.3" }
19+
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version = "5.14.4" }
2020

2121
groovy-json = { group = "org.codehaus.groovy", name = "groovy-json", version = "3.0.25" }
2222
json-schema-validator = { group = "com.networknt", name = "json-schema-validator", version = "2.0.3" }
2323
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version = "26.1.0" }
24-
google-gson = { group = "com.google.code.gson", name = "gson", version = "2.13.2" }
24+
google-gson = { group = "com.google.code.gson", name = "gson", version = "2.14.0" }
2525

2626
[plugins]
2727
shadow-jar = { id = "com.gradleup.shadow", version = "9.4.3"}
28-
plugin-publish = { id = "com.gradle.plugin-publish", version = "2.1.0" }
28+
plugin-publish = { id = "com.gradle.plugin-publish", version = "2.1.1" }

0 commit comments

Comments
 (0)