fluidattacks_utils_logger 3.0.7__tar.gz → 3.0.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/PKG-INFO +2 -2
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/__init__.py +1 -1
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/pyproject.toml +2 -2
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/uv.lock +11 -14
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/.envrc +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/build/default.nix +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/build/filter.nix +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/flake.lock +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/flake.nix +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/env.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/handlers.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/levels.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/logger.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/py.typed +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/mypy.ini +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/ruff.toml +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/__init__.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/arch/__init__.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/arch/arch.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/arch/test_arch.py +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/py.typed +0 -0
- {fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/tests/test_logger.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fluidattacks_utils_logger
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.8
|
|
4
4
|
Summary: Common logger handlers
|
|
5
5
|
Author-email: Product Team <development@fluidattacks.com>
|
|
6
6
|
Requires-Python: >=3.11
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Requires-Dist: fluidattacks-core >=12.0.0, <13.0.0
|
|
8
|
+
Requires-Dist: fluidattacks-core-logging >=12.0.0, <13.0.0
|
|
9
9
|
Requires-Dist: fa-purity >=2.5.2, <3.0.0
|
|
10
10
|
Requires-Dist: python-json-logger >=3.3.0, <5.0.0
|
|
@@ -4,7 +4,7 @@ authors = [{ name = "Product Team", email = "development@fluidattacks.com" }]
|
|
|
4
4
|
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
5
5
|
requires-python = ">=3.11"
|
|
6
6
|
dependencies = [
|
|
7
|
-
"fluidattacks-core >=12.0.0, <13.0.0",
|
|
7
|
+
"fluidattacks-core-logging >=12.0.0, <13.0.0",
|
|
8
8
|
"fa-purity >=2.5.2, <3.0.0",
|
|
9
9
|
"python-json-logger >=3.3.0, <5.0.0",
|
|
10
10
|
]
|
|
@@ -27,4 +27,4 @@ dev = [
|
|
|
27
27
|
|
|
28
28
|
[tool.uv]
|
|
29
29
|
exclude-newer = "7 days"
|
|
30
|
-
exclude-newer-package = { fluidattacks-core = "2099-01-02T00:00:00Z", fluid-blends = "2099-01-02T00:00:00Z" }
|
|
30
|
+
exclude-newer-package = { fluidattacks-core-logging = "2099-01-02T00:00:00Z", fluid-blends = "2099-01-02T00:00:00Z" }
|
|
@@ -7,12 +7,12 @@ resolution-markers = [
|
|
|
7
7
|
]
|
|
8
8
|
|
|
9
9
|
[options]
|
|
10
|
-
exclude-newer = "
|
|
10
|
+
exclude-newer = "0001-01-01T00:00:00Z" # This has no effect and is included for backwards compatibility when using relative exclude-newer values.
|
|
11
11
|
exclude-newer-span = "P7D"
|
|
12
12
|
|
|
13
13
|
[options.exclude-newer-package]
|
|
14
14
|
fluid-blends = "2099-01-02T00:00:00Z"
|
|
15
|
-
fluidattacks-core = "2099-01-02T00:00:00Z"
|
|
15
|
+
fluidattacks-core-logging = "2099-01-02T00:00:00Z"
|
|
16
16
|
|
|
17
17
|
[[package]]
|
|
18
18
|
name = "arch-lint"
|
|
@@ -163,19 +163,16 @@ wheels = [
|
|
|
163
163
|
]
|
|
164
164
|
|
|
165
165
|
[[package]]
|
|
166
|
-
name = "fluidattacks-core"
|
|
166
|
+
name = "fluidattacks-core-logging"
|
|
167
167
|
version = "12.0.0"
|
|
168
168
|
source = { registry = "https://pypi.org/simple" }
|
|
169
|
+
dependencies = [
|
|
170
|
+
{ name = "python-json-logger" },
|
|
171
|
+
{ name = "simplejson" },
|
|
172
|
+
]
|
|
173
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8f/f8/44e7ea918f76785c80eab6ab7e27b49d35f2911b7946b1c49409ae8ce64f/fluidattacks_core_logging-12.0.0.tar.gz", hash = "sha256:ed0537a07bceda1e5c2344ce419b6c033834c30d845a32360d6da792251957ed", size = 56327, upload-time = "2026-08-19T20:48:14.339Z" }
|
|
169
174
|
wheels = [
|
|
170
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
171
|
-
{ url = "https://files.pythonhosted.org/packages/19/7c/03abc7db148f16266d9340986fdf3fb8078f89a93f90e4bb0f9b3c9e9ac7/fluidattacks_core-12.0.0-cp311-cp311-manylinux_2_39_aarch64.whl", hash = "sha256:bc5d1ff55b744bff731b921843d1551888ddb73ffc91c729c3cb87d612d6576b", size = 7707462, upload-time = "2026-08-20T18:28:56.852Z" },
|
|
172
|
-
{ url = "https://files.pythonhosted.org/packages/f9/24/0fa3ff2d4a8e0ec03a41af6ba86ac0b6cf16c861497a491bf084021cb129/fluidattacks_core-12.0.0-cp311-cp311-manylinux_2_39_x86_64.whl", hash = "sha256:3a013ba68444b7550a7d0514f6dc5b067c87e391e1eff52b37f963bebf0e44d2", size = 7754126, upload-time = "2026-08-20T18:28:48.694Z" },
|
|
173
|
-
{ url = "https://files.pythonhosted.org/packages/82/05/d44b887d2f0e95952d43dfbddd635475e342ee2ed40c577d5e59b2b98345/fluidattacks_core-12.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b3b6f2a12e404bea5d4b0c09b1095d164d480b9dbfa323cd7f169f08a84d12a1", size = 6892146, upload-time = "2026-08-20T19:50:37.218Z" },
|
|
174
|
-
{ url = "https://files.pythonhosted.org/packages/7b/f4/592cb0257f45c68af949859aea6a1d6201d74afcfeff9eb85112a5794c1d/fluidattacks_core-12.0.0-cp312-cp312-manylinux_2_39_aarch64.whl", hash = "sha256:dc77da26132a3c23094ff38c9cc8b8d3dc8e32d7bd27a3532f1a24d0d8286ad8", size = 7704322, upload-time = "2026-08-20T18:28:50.514Z" },
|
|
175
|
-
{ url = "https://files.pythonhosted.org/packages/b7/10/c92baacdd0fa6e549a48533fd05da64dc5d66159ac59a7eaae728fa0fb83/fluidattacks_core-12.0.0-cp312-cp312-manylinux_2_39_x86_64.whl", hash = "sha256:76c74740692a5a492d4094e20ada3fd7205efde4f63780142979a43a03b0a7bb", size = 7747340, upload-time = "2026-08-20T18:28:53.685Z" },
|
|
176
|
-
{ url = "https://files.pythonhosted.org/packages/3f/45/696caa3625879fdfa7283a35ec6fcf6bf72131de8389e6f9c35d8c9792f9/fluidattacks_core-12.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:79bd824697d0c23f8c0386073e1775f88a349195ab7eeb0e2adcec8c2c684c63", size = 6890432, upload-time = "2026-08-20T19:50:33.281Z" },
|
|
177
|
-
{ url = "https://files.pythonhosted.org/packages/e7/20/0e293804a580c4f67f47a1cbe861b619f06a7d58ab5bd262bb8972da0786/fluidattacks_core-12.0.0-cp313-cp313-manylinux_2_39_aarch64.whl", hash = "sha256:08208c2cf9a0c626dc08b63e7488554fc74dcba9998bc6ca27e2400d2121e7f9", size = 7703255, upload-time = "2026-08-20T18:28:55.242Z" },
|
|
178
|
-
{ url = "https://files.pythonhosted.org/packages/1a/29/f93a0d4193fbd58793174afecba1bffd9e0332805b930711dfa1dd9ee955/fluidattacks_core-12.0.0-cp313-cp313-manylinux_2_39_x86_64.whl", hash = "sha256:2df935e0fbfa12f7f00548deace80d8ddc4f659f57b24683ede0a2f02c3ab6a3", size = 7746834, upload-time = "2026-08-20T18:28:51.961Z" },
|
|
175
|
+
{ url = "https://files.pythonhosted.org/packages/f6/8f/703f5c5aaaa1c280f4f3e6710c78512f0a3c0ba087eb46c82b7f8450d536/fluidattacks_core_logging-12.0.0-py3-none-any.whl", hash = "sha256:dcd96f88cee041564b209f8c34efc6b7d923f7d6edcd83e00da53f096eff46de", size = 9831, upload-time = "2026-08-19T20:48:13.456Z" },
|
|
179
176
|
]
|
|
180
177
|
|
|
181
178
|
[[package]]
|
|
@@ -183,7 +180,7 @@ name = "fluidattacks-utils-logger"
|
|
|
183
180
|
source = { editable = "." }
|
|
184
181
|
dependencies = [
|
|
185
182
|
{ name = "fa-purity" },
|
|
186
|
-
{ name = "fluidattacks-core" },
|
|
183
|
+
{ name = "fluidattacks-core-logging" },
|
|
187
184
|
{ name = "python-json-logger" },
|
|
188
185
|
]
|
|
189
186
|
|
|
@@ -200,7 +197,7 @@ dev = [
|
|
|
200
197
|
[package.metadata]
|
|
201
198
|
requires-dist = [
|
|
202
199
|
{ name = "fa-purity", specifier = ">=2.5.2,<3.0.0" },
|
|
203
|
-
{ name = "fluidattacks-core", specifier = ">=12.0.0,<13.0.0" },
|
|
200
|
+
{ name = "fluidattacks-core-logging", specifier = ">=12.0.0,<13.0.0" },
|
|
204
201
|
{ name = "python-json-logger", specifier = ">=3.3.0,<5.0.0" },
|
|
205
202
|
]
|
|
206
203
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fluidattacks_utils_logger-3.0.7 → fluidattacks_utils_logger-3.0.8}/fluidattacks_utils_logger/env.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|