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

dependabot: bump com.github.wnameless.json:json-base from 2.4.2 to 2.4.3 #3434

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 2, 2023

Bumps com.github.wnameless.json:json-base from 2.4.2 to 2.4.3.

Changelog

Sourced from com.github.wnameless.json:json-base's changelog.

Version 1.0.0

  • First release

Version 1.1.0

  • Support Java 9 Module
  • Add isEmpty() to JsonArrayBase and JsonObjectBase
  • Change package name from com.github.wnameless.json to com.github.wnameless.json.base

Version 1.1.1

  • Using "requires static" on Gson and Jackson

Version 1.2.0

  • Add Jsonable interface

Version 2.0.0

  • Add #asBigInteger, #asBigDecimal, #asNumber, #asNull
  • Add #toMap, #toList
  • Add JsonValueCore, JsonObjectCore, JsonArrayCore, JsonCore, JsonSource
  • Add JsonPrinter, JsonValueUtils

Version 2.1.0

  • Fix JsonProter#prettyPrint bug
  • Improve module-info.java

Version 2.2.0

  • Alter all "requires static transitive" to "requires static" in module-info.java to avoid "module not found" error while compiling by other projects

Version 2.2.1

  • Fix JsonPrinter bug on the edge case: having backslash before ending double quotes

Version 2.3.0

  • Add org.json lib support
  • Add Jakarta lib support
  • Change the return type of JsonArrayCore#remove(int) from boolean to JsonArrayCore
  • Increase JUnit code coverage to 100%
  • Remove Cobertura maven dependency

Version 2.4.0

  • Add #stream to JsonArrayBase and JsonObjectBase

Version 2.4.1

  • Improve OrgJsonValue#asNumber
  • Add JsonPrinter#toJsonString

Version 2.4.2

  • Upgrade POM

Version 2.4.3

  • Modify JsonValueUtils#toJavaNumber for preserving precise scale of the float number
Commits
  • a2785b7 [maven-release-plugin] prepare release json-base-2.4.3
  • 849d039 Improve GsonJsonValue implementation
  • 2442050 To preserve precise scale of the float number
  • 10f6d99 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Dependabot compatibility score

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 commands and options

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [com.github.wnameless.json:json-base](https://github.com/wnameless/json-base) from 2.4.2 to 2.4.3.
- [Changelog](https://github.com/wnameless/json-base/blob/master/release-notes)
- [Commits](wnameless/json-base@json-base-2.4.2...json-base-2.4.3)

---
updated-dependencies:
- dependency-name: com.github.wnameless.json:json-base
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Oct 2, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Oct 2, 2023

This pull request could have been automatically merged by adding the author 'dependabot[bot]' to discerning-merger list of allowed-authors.

@reta reta merged commit fa52472 into main Oct 2, 2023
69 checks passed
@reta reta deleted the dependabot/gradle/com.github.wnameless.json-json-base-2.4.3 branch October 2, 2023 17:02
@reta reta added the backport 2.x backport to 2.x branch label Oct 2, 2023
opensearch-trigger-bot bot pushed a commit that referenced this pull request Oct 2, 2023
…4.3 (#3434)

Bumps
[com.github.wnameless.json:json-base](https://github.com/wnameless/json-base)
from 2.4.2 to 2.4.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/wnameless/json-base/blob/master/release-notes">com.github.wnameless.json:json-base's
changelog</a>.</em></p>
<blockquote>
<p>Version 1.0.0</p>
<ul>
<li>First release</li>
</ul>
<p>Version 1.1.0</p>
<ul>
<li>Support Java 9 Module</li>
<li>Add isEmpty() to JsonArrayBase and JsonObjectBase</li>
</ul>
<ul>
<li>Change package name from com.github.wnameless.json to
com.github.wnameless.json.base</li>
</ul>
<p>Version 1.1.1</p>
<ul>
<li>Using &quot;requires static&quot; on Gson and Jackson</li>
</ul>
<p>Version 1.2.0</p>
<ul>
<li>Add Jsonable interface</li>
</ul>
<p>Version 2.0.0</p>
<ul>
<li>Add #asBigInteger, #asBigDecimal, #asNumber, #asNull</li>
<li>Add #toMap, #toList</li>
<li>Add JsonValueCore, JsonObjectCore, JsonArrayCore, JsonCore,
JsonSource</li>
<li>Add JsonPrinter, JsonValueUtils</li>
</ul>
<p>Version 2.1.0</p>
<ul>
<li>Fix JsonProter#prettyPrint bug</li>
<li>Improve module-info.java</li>
</ul>
<p>Version 2.2.0</p>
<ul>
<li>Alter all &quot;requires static transitive&quot; to &quot;requires
static&quot; in module-info.java to avoid &quot;module not found&quot;
error while compiling by other projects</li>
</ul>
<p>Version 2.2.1</p>
<ul>
<li>Fix JsonPrinter bug on the edge case: having backslash before ending
double quotes</li>
</ul>
<p>Version 2.3.0</p>
<ul>
<li>Add org.json lib support</li>
<li>Add Jakarta lib support</li>
</ul>
<ul>
<li>Change the return type of JsonArrayCore#remove(int) from boolean to
JsonArrayCore</li>
<li>Increase JUnit code coverage to 100%</li>
</ul>
<ul>
<li>Remove Cobertura maven dependency</li>
</ul>
<p>Version 2.4.0</p>
<ul>
<li>Add #stream to JsonArrayBase and JsonObjectBase</li>
</ul>
<p>Version 2.4.1</p>
<ul>
<li>Improve OrgJsonValue#asNumber</li>
</ul>
<ul>
<li>Add JsonPrinter#toJsonString</li>
</ul>
<p>Version 2.4.2</p>
<ul>
<li>Upgrade POM</li>
</ul>
<p>Version 2.4.3</p>
<ul>
<li>Modify JsonValueUtils#toJavaNumber for preserving precise scale of
the float number</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/wnameless/json-base/commit/a2785b7b1c777b591a1d8724382c85f9dface1ba"><code>a2785b7</code></a>
[maven-release-plugin] prepare release json-base-2.4.3</li>
<li><a
href="https://github.com/wnameless/json-base/commit/849d039bf8f1728a2b091c6c6490eb4e00550c10"><code>849d039</code></a>
Improve GsonJsonValue implementation</li>
<li><a
href="https://github.com/wnameless/json-base/commit/244205004471e47cfde08a8139ff6d4f52917ca5"><code>2442050</code></a>
To preserve precise scale of the float number</li>
<li><a
href="https://github.com/wnameless/json-base/commit/10f6d999541a98d52c8a97e117dd916fad989634"><code>10f6d99</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/wnameless/json-base/compare/json-base-2.4.2...json-base-2.4.3">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.wnameless.json:json-base&package-manager=gradle&previous-version=2.4.2&new-version=2.4.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit fa52472)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
reta pushed a commit that referenced this pull request Oct 2, 2023
…rom 2.4.2 to 2.4.3 (#3437)

Backport fa52472 from #3434.

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport 2.x backport to 2.x branch dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants