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

Bump the junixsocket group with 2 updates #230

Merged
merged 2 commits into from
Feb 21, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2024

Bumps the junixsocket group with 2 updates: com.kohlschutter.junixsocket:junixsocket-core and com.kohlschutter.junixsocket:junixsocket-common.

Updates com.kohlschutter.junixsocket:junixsocket-core from 2.8.3 to 2.9.0

Release notes

Sourced from com.kohlschutter.junixsocket:junixsocket-core's releases.

junixsocket 2.9.0

  • Add generic socket fallback for FileDescriptors received from other processes
  • Add "dup"/"dup2" support via FileDescriptorCast.duplicating
  • Add listen/accept support to AFDatagramSocket, so we can serve SEQPACKETs
  • Add more SocketException subclasses (such as BrokenPipe-/ConnectionResetSocketException)
  • Add support to make shutdown-upon-close configurable
  • Add support for undocumented "ECLOSED" (errno 3417) condition on IBM i PASE
  • Add test for the "close-during-accept" condition
  • Fix native library loading for AIX/IBM i on Java 15 and newer
  • Fix blocking state when using FileDescriptorCast
  • Fix module-info.java: Don't mark requirements transient (annotations, mysql connector)
  • Fix TIPC tests on some old environments (which didn't time out)
  • Fix compilation for z/OS 32-bit
  • Fix AFServerSocketChannel.getLocalAddress to return AFSocketAddress subclass
  • Fix unnecessary failures in some tests, error handling in selftest
  • Fix "force override" path parsing for native library on Windows
  • Update build/plugin/test/demo dependencies
  • Update crossclang scripts; no longer requires root to install Xcode components
  • Improve error handling on broken Java VMs (e.g., IBM Semeru 8.0.7 and older)
  • Improve demo code, use slf4j-simple for logging
  • Code cleanup

Backwards-incompatible change: Some AFSocket classes are now final or no longer declare constructor exceptions.

Commits
  • 3f00625 Set version to 2.9.0
  • 6b328a2 Update README
  • 0b3f6d5 docs: Update changelog
  • c13098e site: docs: Update links in sidebar
  • 6f71044 github: Update github workflow dependencies
  • dbd9019 test: vsock: Suppress timeout exceptions seen on unconfigured systems
  • ed0488b test: ThroughputTest: poll with timeout
  • b923dad ThroughputTest: Catch ClosedChannelException and ignore if necessary
  • 5c1ec41 test: common: Actually use different AF_UNIX sockets for newTempAddress
  • c2602d3 native: Implement dup for Windows sockets
  • Additional commits viewable in compare view

Updates com.kohlschutter.junixsocket:junixsocket-common from 2.8.3 to 2.9.0

Release notes

Sourced from com.kohlschutter.junixsocket:junixsocket-common's releases.

junixsocket 2.9.0

  • Add generic socket fallback for FileDescriptors received from other processes
  • Add "dup"/"dup2" support via FileDescriptorCast.duplicating
  • Add listen/accept support to AFDatagramSocket, so we can serve SEQPACKETs
  • Add more SocketException subclasses (such as BrokenPipe-/ConnectionResetSocketException)
  • Add support to make shutdown-upon-close configurable
  • Add support for undocumented "ECLOSED" (errno 3417) condition on IBM i PASE
  • Add test for the "close-during-accept" condition
  • Fix native library loading for AIX/IBM i on Java 15 and newer
  • Fix blocking state when using FileDescriptorCast
  • Fix module-info.java: Don't mark requirements transient (annotations, mysql connector)
  • Fix TIPC tests on some old environments (which didn't time out)
  • Fix compilation for z/OS 32-bit
  • Fix AFServerSocketChannel.getLocalAddress to return AFSocketAddress subclass
  • Fix unnecessary failures in some tests, error handling in selftest
  • Fix "force override" path parsing for native library on Windows
  • Update build/plugin/test/demo dependencies
  • Update crossclang scripts; no longer requires root to install Xcode components
  • Improve error handling on broken Java VMs (e.g., IBM Semeru 8.0.7 and older)
  • Improve demo code, use slf4j-simple for logging
  • Code cleanup

Backwards-incompatible change: Some AFSocket classes are now final or no longer declare constructor exceptions.

Commits
  • 3f00625 Set version to 2.9.0
  • 6b328a2 Update README
  • 0b3f6d5 docs: Update changelog
  • c13098e site: docs: Update links in sidebar
  • 6f71044 github: Update github workflow dependencies
  • dbd9019 test: vsock: Suppress timeout exceptions seen on unconfigured systems
  • ed0488b test: ThroughputTest: poll with timeout
  • b923dad ThroughputTest: Catch ClosedChannelException and ignore if necessary
  • 5c1ec41 test: common: Actually use different AF_UNIX sockets for newTempAddress
  • c2602d3 native: Implement dup for Windows sockets
  • Additional commits viewable in compare view

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 <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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 14, 2024
Copy link
Contributor

github-actions bot commented Feb 14, 2024

Test Results

24 files  +20  24 suites  +20   9s ⏱️ +9s
10 tests ± 0  10 ✅ + 4   0 💤  -  4  0 ❌ ±0 
60 runs  +50  40 ✅ +34  20 💤 +16  0 ❌ ±0 

Results for commit 075e86f. ± Comparison against base commit 1817f8a.

♻️ This comment has been updated with latest results.

@gesellix
Copy link
Contributor

@dependabot rebase

Bumps the junixsocket group with 2 updates: [com.kohlschutter.junixsocket:junixsocket-core](https://github.com/kohlschutter/junixsocket) and [com.kohlschutter.junixsocket:junixsocket-common](https://github.com/kohlschutter/junixsocket).


Updates `com.kohlschutter.junixsocket:junixsocket-core` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/kohlschutter/junixsocket/releases)
- [Commits](kohlschutter/junixsocket@junixsocket-2.8.3...junixsocket-2.9.0)

Updates `com.kohlschutter.junixsocket:junixsocket-common` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/kohlschutter/junixsocket/releases)
- [Commits](kohlschutter/junixsocket@junixsocket-2.8.3...junixsocket-2.9.0)

---
updated-dependencies:
- dependency-name: com.kohlschutter.junixsocket:junixsocket-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: junixsocket
- dependency-name: com.kohlschutter.junixsocket:junixsocket-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: junixsocket
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/gradle/junixsocket-0bcdfc66f4 branch from 76a333f to 00f0c17 Compare February 21, 2024 17:54
@gesellix gesellix merged commit b56e1ca into main Feb 21, 2024
10 checks passed
@gesellix gesellix deleted the dependabot/gradle/junixsocket-0bcdfc66f4 branch February 21, 2024 18:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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.

1 participant