Skip to content

v4.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jan 10:38

Mongo2Go 4.1.0, January 30 2025

  • Updated MongoDB.Driver to version 3.1.0, ensuring compatibility with the latest MongoDB client features (PR #156, fixes #154 - many thanks to Teneko)
  • Please note that the bundled version of MongoDB included with this package remains v4.4.4.
  • Note for Ubuntu users: MongoDB 4.4.4 requires libcrypto.so.1.1, which is no longer included in Ubuntu 22.04 and newer. If you encounter an error like:
    error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
    
    You can fix this by installing OpenSSL 1.1 manually:
    echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
    sudo apt update
    sudo apt install -y libssl1.1
    This restores libcrypto.so.1.1 and allows Mongo2Go/MongoDB to run properly.