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

Release 2024-05-30 #752

Merged
merged 31 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e7eff46
Bump pytest from 8.0.1 to 8.1.1
dependabot[bot] Mar 21, 2024
c1ba3a8
Bump pytest-timeout from 2.2.0 to 2.3.1
dependabot[bot] Mar 21, 2024
b0083d4
Merge pull request #720 from mendix/dependabot/pip/develop/pytest-8.1.1
sailhenz Mar 21, 2024
0796f36
Merge branch 'develop' into dependabot/pip/develop/pytest-timeout-2.3.1
sailhenz Mar 21, 2024
f849c2c
Merge pull request #722 from mendix/dependabot/pip/develop/pytest-tim…
sailhenz Mar 21, 2024
60accc9
Bump pylint from 3.0.3 to 3.1.0
dependabot[bot] Mar 21, 2024
e5a9dfe
Bump ruff from 0.2.2 to 0.3.3
dependabot[bot] Mar 21, 2024
d028101
Merge pull request #723 from mendix/dependabot/pip/develop/pylint-3.1.0
sailhenz Mar 21, 2024
3f512cd
Merge branch 'develop' into dependabot/pip/develop/ruff-0.3.3
sailhenz Mar 21, 2024
7e91767
Merge pull request #724 from mendix/dependabot/pip/develop/ruff-0.3.3
sailhenz Mar 21, 2024
fde4c3a
Bump cryptography from 42.0.4 to 42.0.5 (#726)
dependabot[bot] Mar 25, 2024
3dfb1e1
Bump ruff from 0.3.3 to 0.3.4 (#725)
dependabot[bot] Mar 25, 2024
071cd93
Bump ruff from 0.3.4 to 0.3.5 (#729)
dependabot[bot] Apr 10, 2024
e06d8e5
Bump requests-mock from 1.11.0 to 1.12.1 (#727)
dependabot[bot] Apr 10, 2024
646b9ae
Bump Python version to 3.10.13 (#730)
jeohist Apr 11, 2024
ba4acaf
Bump ruff from 0.3.5 to 0.3.7 (#732)
dependabot[bot] Apr 17, 2024
aae405b
Bump idna from 3.6 to 3.7 (#731)
dependabot[bot] Apr 17, 2024
b32de81
Bump cryptography from 42.0.5 to 42.0.6 (#740)
dependabot[bot] May 8, 2024
66a6f81
Bump ruff from 0.3.7 to 0.4.3 (#739)
dependabot[bot] May 8, 2024
18a4faa
Bump pytest from 8.1.1 to 8.2.0 (#737)
dependabot[bot] May 8, 2024
df37f4c
Bump jinja2 from 3.1.3 to 3.1.4 (#738)
dependabot[bot] May 8, 2024
bb1c459
Bump pylint from 3.1.0 to 3.1.1 (#743)
dependabot[bot] May 15, 2024
2d87946
Bump ruff from 0.4.3 to 0.4.4 (#742)
dependabot[bot] May 15, 2024
114c8d9
Bump cryptography from 42.0.6 to 42.0.7 (#741)
dependabot[bot] May 15, 2024
8fca95c
Bump pytest from 8.2.0 to 8.2.1 (#745)
dependabot[bot] May 22, 2024
19dac50
Bump pylint from 3.1.1 to 3.2.2 (#746)
dependabot[bot] May 22, 2024
5eb053b
Bump requests from 2.31.0 to 2.32.2 (#748)
dependabot[bot] May 22, 2024
d35f3e9
AppDynamics agents updated to the version 24.4
May 21, 2024
6fb8e7a
Merge pull request #747 from mendix/LM-1796_update_appdynamics
ekremsekerci May 27, 2024
7d0c7f1
Bump ruff from 0.4.4 to 0.4.5 (#749)
dependabot[bot] May 29, 2024
0449452
Merge branch 'master' into develop
sailhenz May 30, 2024
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.6
python-version: 3.10.13
cache: pip
- name: Install Python requirements
run: make install_requirements
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.6
python-version: 3.10.13
cache: pip
- name: Install Python requirements
run: make install_requirements
Expand Down
1 change: 1 addition & 0 deletions buildpack/infrastructure/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ def get_database_jdbc_url(self):
url = self.credentials.get("url", "")
pattern = r"jdbc:sap://(?P<host>[^:]+):(?P<port>[0-9]+)/?(?P<q>\?(?P<params>.*))?$" # noqa:C0301
match = re.search(pattern, url)
q = None
if match is None:
logging.error("Unable to parse Hana JDBC url string for parameters")
raise Exception("Unable to parse Hana JDBC url string for parameters")
Expand Down
1 change: 1 addition & 0 deletions buildpack/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
)
BUILD_DIR = os.path.abspath(sys.argv[1])
CACHE_DIR = os.path.abspath(os.path.join(sys.argv[2], "bust"))
DEPS_DIR = None
DOT_LOCAL_LOCATION = os.path.abspath(os.path.join(BUILD_DIR, ".local"))
if len(sys.argv) >= 5:
DEPS_DIR = os.path.abspath(sys.argv[3])
Expand Down
8 changes: 4 additions & 4 deletions dependencies-stage.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- name: python
version: 3.10.6
uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.6_linux_x64_cflinuxfs4_62e69f06.tgz
sha256: 62e69f0664e0bbb05a6351d4d96dc9ea6b959c4c2e4ccdb124f932d0bdac0e41
version: 3.10.13
uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.13_linux_x64_cflinuxfs4_04ab8c1b.tgz
sha256: 04ab8c1b6b0d1f8fd8a03d932bf8cc6744843ad12bb5e801784b7ff470aa7401
cf_stacks:
- cflinuxfs4
source_sha256: 848cb06a5caa85da5c45bd7a9221bb821e33fc2bdcba088c127c58fad44e6343
source_sha256: 698ec55234c1363bd813b460ed53b0f108877c7a133d48bde9a50a1eb57b7e65
3 changes: 2 additions & 1 deletion dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ dependencies:
appdynamics:
agent:
artifact: appdynamics/appdynamics-agent-1.8-{{ version }}.zip
version: 24.4.1
machine-agent:
artifact: appdynamics/appdynamics-machineagent-bundle-{{ version }}.zip
version: 22.1.0
version: 24.4.0
databroker:
debezium:
artifact: experimental/databroker/debezium-{{ version }}.tar.gz
Expand Down
21 changes: 11 additions & 10 deletions lib/m2ee/profileutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,17 @@ def __str__(self):

def pretty_format(self, print_queries=True):
if print_queries:
queries = "\n\n".join(
[
"query: %s \nduration:%s" % (x["query"], x["duration"])
for x in self.queries
]
)
elif not print_queries:
queries = "Omitting, %s queries in total" % len(self.queries)
elif len(self.queries) == 0:
queries = " None"
if len(self.queries) > 0:
queries = "\n\n".join(
[
f"query: {x['query']} \nduration: {x['duration']}"
for x in self.queries
]
)
else:
queries = " None"
else:
queries = f"Omitting, {len(self.queries)} queries in total"

if hasattr(self, "user_roles"):
userroles = ",".join(self.user_roles) # pylint: disable=no-member
Expand Down
12 changes: 6 additions & 6 deletions requirements-dev.in
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
click==8.1.7
idna==3.6
pytest==8.0.1
idna==3.7
pytest==8.2.1
pytest-timer==1.0.0
pytest-timeout==2.2.0
pylint==3.0.3
pytest-timeout==2.3.1
pylint==3.2.2
pyopenssl==24.0.0
randomname==0.2.1
requests-mock==1.11.0
ruff==0.2.2
requests-mock==1.12.1
ruff==0.4.5
parameterized==0.9.0
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
backoff==2.2.1
certifi==2024.2.2
cryptography==42.0.4
cryptography==42.0.7
distro==1.9.0
httplib2==0.22.0
jinja2==3.1.4
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ cffi==1.14.4
# via cryptography
charset-normalizer==2.0.3
# via requests
cryptography==42.0.4
cryptography==42.0.7
# via -r requirements.in
distro==1.9.0
# via -r requirements.in
httplib2==0.22.0
# via -r requirements.in
idna==2.8
idna==3.7
# via requests
jinja2==3.1.4
# via -r requirements.in
Expand Down
Loading