Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
env:
PHP_VERSION: "8.3"
# Note: omit the patch version when referring to the libmongocrypt package
LIBMONGOCRYPT_VERSION: "1.16"
LIBMONGOCRYPT_VERSION: "1.17"
# Note: include the patch version when referring to a libmongoc release tarball
LIBMONGOC_VERSION: "2.2.1"
SERVER_VERSION: "8.0"
Expand Down
4 changes: 2 additions & 2 deletions config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,15 @@ if test "$PHP_MONGODB" != "no"; then
])

if test "$PHP_MONGODB_CLIENT_SIDE_ENCRYPTION" != "no"; then
PKG_CHECK_MODULES([PHP_MONGODB_MONGOCRYPT], [libmongocrypt >= 1.16.0], [
PKG_CHECK_MODULES([PHP_MONGODB_MONGOCRYPT], [libmongocrypt >= 1.17.0], [
PHP_MONGODB_MONGOCRYPT_VERSION=`$PKG_CONFIG libmongocrypt --modversion`
PHP_MONGODB_MONGOCRYPT_VERSION_STRING="System ($PHP_MONGODB_MONGOCRYPT_VERSION)"
PHP_MONGODB_CFLAGS="$PHP_MONGODB_CFLAGS $PHP_MONGODB_MONGOCRYPT_CFLAGS"
PHP_EVAL_LIBLINE($PHP_MONGODB_MONGOCRYPT_LIBS, MONGODB_SHARED_LIBADD)
AC_DEFINE(HAVE_SYSTEM_LIBMONGOCRYPT, 1, [Use system libmongocrypt])
],[
AC_MSG_ERROR(Could not find system library for libmongocrypt >= 1.16.0)
AC_MSG_ERROR(Could not find system library for libmongocrypt >= 1.17.0)
])
fi
fi
Expand Down
16 changes: 8 additions & 8 deletions sbom.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"components": [
{
"bom-ref": "pkg:github/mongodb/libmongocrypt@1.16.0",
"bom-ref": "pkg:github/mongodb/libmongocrypt@1.17.0",
"externalReferences": [
{
"type": "distribution",
"url": "https://github.com/mongodb/libmongocrypt/archive/refs/tags/1.16.0.tar.gz"
"url": "https://github.com/mongodb/libmongocrypt/archive/refs/tags/1.17.0.tar.gz"
},
{
"type": "website",
"url": "https://github.com/mongodb/libmongocrypt/tree/1.16.0"
"url": "https://github.com/mongodb/libmongocrypt/tree/1.17.0"
}
],
"group": "mongodb",
"name": "libmongocrypt",
"purl": "pkg:github/mongodb/libmongocrypt@1.16.0",
"purl": "pkg:github/mongodb/libmongocrypt@1.17.0",
"type": "library",
"version": "1.16.0"
"version": "1.17.0"
},
{
"bom-ref": "pkg:github/mongodb/mongo-c-driver@2.2.1",
Expand All @@ -39,14 +39,14 @@
],
"dependencies": [
{
"ref": "pkg:github/mongodb/libmongocrypt@1.16.0"
"ref": "pkg:github/mongodb/libmongocrypt@1.17.0"
},
{
"ref": "pkg:github/mongodb/mongo-c-driver@2.2.1"
}
],
"metadata": {
"timestamp": "2025-12-10T09:26:19.253727+00:00",
"timestamp": "2025-12-22T13:55:40.012464+00:00",
"tools": [
{
"externalReferences": [
Expand Down Expand Up @@ -90,7 +90,7 @@
]
},
"serialNumber": "urn:uuid:acb30d08-ee47-4ff0-b301-d66ef1f54082",
"version": 19,
"version": 20,
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
"bomFormat": "CycloneDX",
"specVersion": "1.5",
Expand Down
2 changes: 1 addition & 1 deletion src/LIBMONGOCRYPT_VERSION_CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.16.0
1.17.0
Loading