From f04291c01ad07e6a4fda30b046ec8156e1471c77 Mon Sep 17 00:00:00 2001 From: Tenshin Higashi Date: Tue, 7 May 2024 11:21:52 -0400 Subject: [PATCH] Updating Deps (Werkzeug) Signed-off-by: Tenshin Higashi --- DEPENDENCIES.md | 10 +++++----- python/requirements.txt | 8 ++++---- tools/src/py-mkopensource/main.go | 10 +++++----- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index 9ee6830d54..4bd42e5431 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -181,11 +181,11 @@ libraries: ---- ------- ---------- Cython 0.29.37 Apache License 2.0 Flask 3.0.3 3-clause BSD license - Jinja2 3.1.3 3-clause BSD license + Jinja2 3.1.4 3-clause BSD license MarkupSafe 2.1.5 3-clause BSD license PyYAML 6.0.1 MIT license - Werkzeug 3.0.2 3-clause BSD license - blinker 1.8.1 MIT license + Werkzeug 3.0.3 3-clause BSD license + blinker 1.8.2 MIT license build 1.2.1 MIT license certifi 2024.2.2 Mozilla Public License 2.0 charset-normalizer 3.3.2 MIT license @@ -197,12 +197,12 @@ libraries: itsdangerous 2.2.0 3-clause BSD license jsonpatch 1.33 3-clause BSD license jsonpointer 2.4 3-clause BSD license - orjson 3.10.1 Apache License 2.0, MIT license + orjson 3.10.3 Apache License 2.0, MIT license packaging 23.1 2-clause BSD license, Apache License 2.0 pip-tools 7.3.0 3-clause BSD license prometheus_client 0.20.0 Apache License 2.0 pyparsing 3.0.9 MIT license - pyproject_hooks 1.0.0 MIT license + pyproject_hooks 1.1.0 MIT license python-json-logger 2.0.7 2-clause BSD license requests 2.31.0 Apache License 2.0 semantic-version 2.10.0 2-clause BSD license diff --git a/python/requirements.txt b/python/requirements.txt index edc69c434f..2b840a4d96 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -4,7 +4,7 @@ # # pip-compile --allow-unsafe # -blinker==1.8.1 +blinker==1.8.2 # via flask certifi==2024.2.2 # via requests @@ -26,7 +26,7 @@ idna==3.7 # via requests itsdangerous==2.2.0 # via flask -jinja2==3.1.3 +jinja2==3.1.4 # via flask jsonpatch==1.33 # via -r requirements.in @@ -36,7 +36,7 @@ markupsafe==2.1.5 # via # jinja2 # werkzeug -orjson==3.10.1 +orjson==3.10.3 # via -r requirements.in packaging==24.0 # via gunicorn @@ -54,7 +54,7 @@ typing-extensions==4.11.0 # via -r requirements.in urllib3==2.2.1 # via requests -werkzeug==3.0.2 +werkzeug==3.0.3 # via flask # The following packages are considered to be unsafe in a requirements file: diff --git a/tools/src/py-mkopensource/main.go b/tools/src/py-mkopensource/main.go index fadf14acf4..f323b8ab64 100644 --- a/tools/src/py-mkopensource/main.go +++ b/tools/src/py-mkopensource/main.go @@ -33,14 +33,14 @@ func parseLicenses(name, version, license string) map[License]struct{} { // of the BSD license is it?). We pin the exact versions so // that a human has to go make sure that the license didn't // change when upgrading. - {"blinker", "1.8.1", ""}: {MIT}, + {"blinker", "1.8.2", ""}: {MIT}, {"build", "1.2.1", ""}: {MIT}, {"CacheControl", "0.12.6", "UNKNOWN"}: {Apache2}, {"CacheControl", "0.12.10", "UNKNOWN"}: {Apache2}, {"Click", "7.0", "BSD"}: {BSD3}, {"Flask", "3.0.3", ""}: {BSD3}, {"GitPython", "3.1.11", "UNKNOWN"}: {BSD3}, - {"Jinja2", "3.1.3", "BSD"}: {BSD3}, + {"Jinja2", "3.1.4", ""}: {BSD3}, {"colorama", "0.4.3", "BSD"}: {BSD3}, {"colorama", "0.4.4", "BSD"}: {BSD3}, {"decorator", "4.4.2", "new BSD License"}: {BSD2}, @@ -62,7 +62,7 @@ func parseLicenses(name, version, license string) map[License]struct{} { {"pyasn1-modules", "0.3.0", "BSD"}: {BSD2}, {"pycparser", "2.20", "BSD"}: {BSD3}, {"pyparsing", "3.0.9", ""}: {MIT}, - {"pyproject_hooks", "1.0.0", ""}: {MIT}, + {"pyproject_hooks", "1.1.0", ""}: {MIT}, {"python-dateutil", "2.8.1", "Dual License"}: {BSD3, Apache2}, {"python-dateutil", "2.8.2", "Dual License"}: {BSD3, Apache2}, {"python-json-logger", "2.0.7", "BSD"}: {BSD2}, @@ -74,13 +74,13 @@ func parseLicenses(name, version, license string) map[License]struct{} { {"webencodings", "0.5.1", "BSD"}: {BSD3}, {"websocket-client", "0.57.0", "BSD"}: {BSD3}, {"websocket-client", "1.2.3", "Apache-2.0"}: {Apache2}, - {"Werkzeug", "3.0.2", ""}: {BSD3}, + {"Werkzeug", "3.0.3", ""}: {BSD3}, {"zipp", "3.11.0", "None"}: {MIT}, {"gunicorn", "22.0.0", "None"}: {MIT}, // These are packages with non-trivial strings to parse, and // it's easier to just hard-code it. - {"orjson", "3.10.1", "Apache-2.0 OR MIT"}: {Apache2, MIT}, + {"orjson", "3.10.3", "Apache-2.0 OR MIT"}: {Apache2, MIT}, {"packaging", "23.1", ""}: {BSD2, Apache2}, {"packaging", "24.0", ""}: {BSD2, Apache2}, }[tuple{name, version, license}]