Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2d9b71d
added the metering code
Apr 7, 2026
1f6eaf5
added logging
Apr 8, 2026
4f74252
added the sap metering sidecar
Apr 9, 2026
b578089
updated the auth token usage
Apr 14, 2026
0452f16
updated the comments
Apr 14, 2026
241305f
updated the env vars
Apr 17, 2026
8fc3a83
Merge pull request #888 from bhavinshah-mendix/feature/sap-metering-s…
mayankmendix Apr 17, 2026
145110c
fix: update cryptography to 46.0.7 to address CVE-2026-39892
Apr 23, 2026
4e0365b
Bumped the cryptography module version to latest 47.0.0
Apr 27, 2026
244e12f
Merge pull request #889 from Pri1235/fix/update-cryptography-46.0.7
mayankmendix Apr 28, 2026
446fe36
Fix CVE-2026-25645 and CVE-2026-34073 by upgrading requests and crypt…
May 8, 2026
813d91d
Merge pull request #890 from PiyushTiwari-LowCode/fix-CVE-Cryptograph…
mayankmendix May 11, 2026
ef8bec4
Security/upgrade requests urllib3 CVE fix (#894)
bhavinshahM May 25, 2026
981b11a
Merge branch 'master' into develop
mayankmendix May 28, 2026
70bb176
Merge branch 'master' into develop
sailhenz May 29, 2026
89b2ec4
(fix) add typing extension lib (#898)
mayankmendix May 29, 2026
5f4fcf3
Expand static files caching (#901)
EnasAbdelrazek Jun 15, 2026
e316ef6
Security: Fix CVE-2026-45409 (idna) and GHSA-537c-gmf6-5ccf (cryptogr…
bhavinshahM Jul 3, 2026
4efd60a
Security: Upgrade nginx from 1.26.1 to 1.30.4 to fix CVE-2025-23419 a…
bhavinshahM Aug 12, 2026
e555256
Fix CVE-2026-69247(cryptography)andCVE-2026-59939(httplib2) (#907)
PiyushTiwari-LowCode Aug 12, 2026
6f11727
Add deprecation warning for Cloud Foundry Buildpack (#910)
mruiserrmendix Aug 13, 2026
29f557f
Merge branch 'master' into develop
mayankmendix Aug 13, 2026
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: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

This document contains general information on the Mendix Cloud Foundry Buildpack.

**Warning** - We strongly encourage customers to begin their journey toward [Mendix Portable Runtime](https://docs.mendix.com/developerportal/deploy/portable-app-distribution-deploy/), as the Cloud Foundry Buildpack will no longer support Mendix 12 and future Runtime versions, marking the start of the deprecation process. For more information, see the [blog release](https://www.mendix.com/blog/mendix-portable-runtime/)

The buildpack is heavily tied to the Mendix Public Cloud, but can be used independently.
Release notes are available for the [buildpack](https://github.com/mendix/cf-mendix-buildpack/releases/), [Mendix itself](https://docs.mendix.com/releasenotes/studio-pro/) and the [Mendix Public Cloud](https://docs.mendix.com/releasenotes/developer-portal/deployment).

Expand Down
4 changes: 2 additions & 2 deletions dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ dependencies:
version: 8.24.0
nginx:
artifact: nginx_{{ version }}_linux_x64_{{ fs }}_{{ commit }}.tgz
commit: b1316f75
commit: 8ae9e822
fs: cflinuxfs4
cpe: cpe:2.3:a:f5:nginx:{{ version }}:*:*:*:*:*:*:*
version: 1.26.1
version: 1.30.4
ruby:
artifact: ruby/ruby_{{ version }}_linux_x64_{{ fs }}_{{ commit }}.tgz
commit: 5fed98f8
Expand Down
4 changes: 2 additions & 2 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
backoff==2.2.1
certifi==2024.8.30
cryptography==48.0.1
cryptography==50.0.0
distro==1.9.0
httplib2==0.22.0
httplib2==0.32.0
idna==3.15
jinja2==3.1.6
omegaconf==2.3.0
Expand Down
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ cffi==2.0.0
# via cryptography
charset-normalizer==2.0.3
# via requests
cryptography==48.0.1
cryptography==50.0.0
# via -r requirements.in
distro==1.9.0
# via -r requirements.in
httplib2==0.22.0
httplib2==0.32.0
# via -r requirements.in
idna==3.15
# via
Expand All @@ -36,7 +36,7 @@ psycopg2-binary==2.9.10
# via -r requirements.in
pycparser==2.20
# via cffi
pyparsing==2.4.7
pyparsing==3.3.2
# via httplib2
pyyaml==6.0.2
# via
Expand All @@ -45,7 +45,9 @@ pyyaml==6.0.2
requests==2.34.2
# via -r requirements.in
typing-extensions==4.15.0
# via -r requirements.in
# via
# -r requirements.in
# cryptography
urllib3==2.7.0
# via
# -r requirements.in
Expand Down
Loading