kiarina-lib-cloudflare-auth 1.6.2__tar.gz → 1.6.3__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.
@@ -25,6 +25,7 @@ htmlcov/
25
25
  # Project specific
26
26
  *.log
27
27
  tmp/
28
+ packages/*/test_settings.yaml
28
29
 
29
30
  # Test data
30
31
  tests/data/large/
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.6.3] - 2025-10-13
11
+
12
+ ### Changed
13
+ - Updated `pydantic-settings-manager` dependency from `>=2.1.0` to `>=2.3.0`
14
+
10
15
  ## [1.6.2] - 2025-10-10
11
16
 
12
17
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kiarina-lib-cloudflare-auth
3
- Version: 1.6.2
3
+ Version: 1.6.3
4
4
  Summary: Cloudflare client library for kiarina namespace
5
5
  Project-URL: Homepage, https://github.com/kiarina/kiarina-python
6
6
  Project-URL: Repository, https://github.com/kiarina/kiarina-python
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
20
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
21
  Classifier: Typing :: Typed
22
22
  Requires-Python: >=3.12
23
- Requires-Dist: pydantic-settings-manager>=2.1.0
23
+ Requires-Dist: pydantic-settings-manager>=2.3.0
24
24
  Requires-Dist: pydantic-settings>=2.10.1
25
25
  Description-Content-Type: text/markdown
26
26
 
@@ -214,16 +214,7 @@ settings_manager: SettingsManager[CloudflareAuthSettings]
214
214
  ```
215
215
 
216
216
  Global settings manager instance for Cloudflare authentication.
217
-
218
- **Properties:**
219
- - `settings`: Get the current active settings
220
- - `user_config`: Get/set user configuration
221
- - `cli_args`: Get/set CLI arguments for runtime overrides
222
- - `active_key`: Get/set active configuration key (for multi-config mode)
223
-
224
- **Methods:**
225
- - `clear()`: Clear cached settings
226
- - `get_settings_by_key(key: str)`: Get settings by specific key
217
+ See: [pydantic-settings-manager](https://github.com/kiarina/pydantic-settings-manager)
227
218
 
228
219
  ## Development
229
220
 
@@ -188,16 +188,7 @@ settings_manager: SettingsManager[CloudflareAuthSettings]
188
188
  ```
189
189
 
190
190
  Global settings manager instance for Cloudflare authentication.
191
-
192
- **Properties:**
193
- - `settings`: Get the current active settings
194
- - `user_config`: Get/set user configuration
195
- - `cli_args`: Get/set CLI arguments for runtime overrides
196
- - `active_key`: Get/set active configuration key (for multi-config mode)
197
-
198
- **Methods:**
199
- - `clear()`: Clear cached settings
200
- - `get_settings_by_key(key: str)`: Get settings by specific key
191
+ See: [pydantic-settings-manager](https://github.com/kiarina/pydantic-settings-manager)
201
192
 
202
193
  ## Development
203
194
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kiarina-lib-cloudflare-auth"
3
- version = "1.6.2"
3
+ version = "1.6.3"
4
4
  description = "Cloudflare client library for kiarina namespace"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -24,7 +24,7 @@ classifiers = [
24
24
  requires-python = ">=3.12"
25
25
  dependencies = [
26
26
  "pydantic-settings>=2.10.1",
27
- "pydantic-settings-manager>=2.1.0",
27
+ "pydantic-settings-manager>=2.3.0",
28
28
  ]
29
29
 
30
30
  [project.urls]