All Versions
27
Latest Version
Avg Release Cycle
128 days
Latest Release
75 days ago

Changelog History
Page 1

  • v1.7.1 Changes

    May 06, 2026
    • Binaries for OSX ARM64.

    • ๐Ÿ›  Fixed null pointer dereferencing in NumPy bool instance checking. #1360

    • Required Python version is back to 3.8. #1361

  • v1.7.0 Changes

    April 09, 2026
    • 1.7.0 - 2026-04-04
  • v1.6.0 Changes

    June 01, 2025

    JPype 1.6.0

    ๐Ÿš€ This release introduces several important updates and fixes:

    • Maven Module Structure: Java components have been restructured to follow the Maven module style, improving project organization and dependency management.
    • JArray Registration: JArray is now properly registered as a Sequence, enhancing compatibility and usability.
    • Float16 Conversion Fix: Corrected the conversion of float16 values, specifically addressing issues with subnormal numbers.
    • Null String Handling: Resolved a segmentation fault that occurred when handling null Strings.
    • ๐Ÿ›  List Method Fixes: Fixed bugs related to the concatenation and repetition methods for java.util.List.
    • JProxy Enhancement: Improved JProxy to allow wrapping an existing Python object with a Java interface.
    • Map Interface Bug Fix: Addressed an issue where using an interface derived from Map with JProxy would fail.
    • JConversion Respect: Fixed a bug where JPype did not honor a JConversion between two Java classes.
    • Direct Buffer Enhancement: Updated convertToDirectBuffer to support wrapping bytes and read-only memoryviews as read-only Java ByteBuffers.

    These changes improve stability, compatibility, and usability across multiple components.


  • v1.5.2 Changes

    January 25, 2025
    • Roll back agent change due to misbehaving JVM installs.
    • Correct issues with non-ascii path for jdbc connections and forName.
  • v1.5.1 Changes

    November 18, 2024

    What's Changed

    ๐Ÿ†• New Contributors

    Full Changelog : v1.5.0...v1.5.1

  • v1.5.0 Changes

    December 15, 2023
    • 1.5.0 - 2023-12-15
  • v1.4.1 Changes

    October 27, 2022
    • ๐Ÿ›  Fixed issue with startJVM changing locale settings.

    • ๐Ÿ”„ Changes to support Python 3.11

    • ๐Ÿ›  Fix truncation of strings on null when using convert strings.

    • Replaced distutil with packaging

  • v1.4.0 Changes

    May 14, 2022
    • ๐Ÿ‘Œ Support for all different buffer type conversions.

    • ๐Ÿ›  Fix crash when comparing JChar.

    • ๐Ÿ‘Œ Improved matching for Java functors based on parameter count.

    • โฌ‡๏ธ Dropped support for Python 3.5 and 3.6

    • ๐Ÿ‘ dbapi2 handles drivers that don't support autocommit.

    • Fixed issue when Java classes with dunder methods such as __del__
      caused conflicts in Python type system. Java method which match dunder
      patterns are longer translated to Python.

    • ๐Ÿ›  Fix issue with numpy arrays with no dimensions resulting in crash.

    • ๐Ÿ‘Œ Support for user defined conversions for java.lang.Class and array types.

    • ๐Ÿ›  Fixed issue with ssize_t on Windows for Python 3.10.

  • v1.3.0 Changes

    June 05, 2021
    • ๐Ÿ›  Fixes for memory issues found when upgrading to Python 3.10 beta.

    • โž• Add additional diagnositics for importing of non-public class.

    • ๐Ÿ›  Fixed issue with classes with unsatified dependencies leading to a crash
      ๐Ÿ on windows.

    • ๐Ÿ›  Fixed a bug with arrays created using the short cut. The wrong type
      was being returned.

  • v1.2.1 Changes

    January 04, 2021

    ๐Ÿš€ This is a bug release to correct defects found in the previous release. This version should add no additional functionality, though certain bug fixes will correct previous behaviors or add files which were incorrectly excluded due to packaging issues.

    • ๐Ÿ— JPype scans jar files and rebuilding missing directories to allow imports from stripped and obfuscated jar files. Previously certain build patterns for jars excluded directories which prevented the import system from functioning properly. This change should increase the number of jar files which can be imported successfully. This was the intended behavior for imports, but certain defects in the process prevented proper function.

    • ๐Ÿš€ Missing stub files added to packaging. These were added in the last release, but the packaging system incorrectly excluded them from the build.

    • ๐Ÿ Python 3.9 issues are resolved on Windows. A change in Python 3.9 made is so that the GIL is not held during library loading, thus static variables created are not valid. These variables have been moved to module initialization.

    • ๐Ÿš€ aarch64 has been added to the build patterns for publication in this and future releases.