exonware-xwsystem 0.1.0.3__py3-none-any.whl → 0.1.0.5__py3-none-any.whl

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.
Files changed (282) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/conf.py +1 -1
  3. exonware/xwsystem/__init__.py +1 -1
  4. exonware/xwsystem/base.py +1 -1
  5. exonware/xwsystem/caching/__init__.py +1 -1
  6. exonware/xwsystem/caching/base.py +1 -1
  7. exonware/xwsystem/caching/bloom_cache.py +1 -1
  8. exonware/xwsystem/caching/cache_manager.py +1 -1
  9. exonware/xwsystem/caching/conditional.py +1 -1
  10. exonware/xwsystem/caching/contracts.py +1 -1
  11. exonware/xwsystem/caching/decorators.py +1 -1
  12. exonware/xwsystem/caching/defs.py +1 -1
  13. exonware/xwsystem/caching/disk_cache.py +1 -1
  14. exonware/xwsystem/caching/distributed.py +1 -1
  15. exonware/xwsystem/caching/errors.py +1 -1
  16. exonware/xwsystem/caching/events.py +1 -1
  17. exonware/xwsystem/caching/eviction_strategies.py +1 -1
  18. exonware/xwsystem/caching/external_caching_python.py +1 -1
  19. exonware/xwsystem/caching/facade.py +1 -1
  20. exonware/xwsystem/caching/factory.py +1 -1
  21. exonware/xwsystem/caching/fluent.py +1 -1
  22. exonware/xwsystem/caching/integrity.py +1 -1
  23. exonware/xwsystem/caching/lfu_cache.py +1 -1
  24. exonware/xwsystem/caching/lfu_optimized.py +1 -1
  25. exonware/xwsystem/caching/lru_cache.py +1 -1
  26. exonware/xwsystem/caching/memory_bounded.py +1 -1
  27. exonware/xwsystem/caching/metrics_exporter.py +1 -1
  28. exonware/xwsystem/caching/observable_cache.py +1 -1
  29. exonware/xwsystem/caching/pluggable_cache.py +1 -1
  30. exonware/xwsystem/caching/rate_limiter.py +1 -1
  31. exonware/xwsystem/caching/read_through.py +1 -1
  32. exonware/xwsystem/caching/secure_cache.py +1 -1
  33. exonware/xwsystem/caching/serializable.py +1 -1
  34. exonware/xwsystem/caching/stats.py +1 -1
  35. exonware/xwsystem/caching/tagging.py +1 -1
  36. exonware/xwsystem/caching/ttl_cache.py +1 -1
  37. exonware/xwsystem/caching/two_tier_cache.py +1 -1
  38. exonware/xwsystem/caching/utils.py +1 -1
  39. exonware/xwsystem/caching/validation.py +1 -1
  40. exonware/xwsystem/caching/warming.py +1 -1
  41. exonware/xwsystem/caching/write_behind.py +1 -1
  42. exonware/xwsystem/config/__init__.py +1 -1
  43. exonware/xwsystem/config/base.py +1 -1
  44. exonware/xwsystem/config/contracts.py +1 -1
  45. exonware/xwsystem/config/defaults.py +1 -1
  46. exonware/xwsystem/config/defs.py +1 -1
  47. exonware/xwsystem/config/errors.py +1 -1
  48. exonware/xwsystem/config/logging.py +1 -1
  49. exonware/xwsystem/config/logging_setup.py +1 -1
  50. exonware/xwsystem/config.py +1 -1
  51. exonware/xwsystem/console/__init__.py +1 -1
  52. exonware/xwsystem/console/base.py +1 -1
  53. exonware/xwsystem/console/cli/__init__.py +1 -1
  54. exonware/xwsystem/console/cli/args.py +1 -1
  55. exonware/xwsystem/console/cli/base.py +1 -1
  56. exonware/xwsystem/console/cli/colors.py +1 -1
  57. exonware/xwsystem/console/cli/console.py +1 -1
  58. exonware/xwsystem/console/cli/contracts.py +1 -1
  59. exonware/xwsystem/console/cli/defs.py +1 -1
  60. exonware/xwsystem/console/cli/errors.py +1 -1
  61. exonware/xwsystem/console/cli/event_logger.py +1 -1
  62. exonware/xwsystem/console/cli/progress.py +1 -1
  63. exonware/xwsystem/console/cli/prompts.py +1 -1
  64. exonware/xwsystem/console/cli/tables.py +1 -1
  65. exonware/xwsystem/console/contracts.py +1 -1
  66. exonware/xwsystem/console/defs.py +1 -1
  67. exonware/xwsystem/console/errors.py +1 -1
  68. exonware/xwsystem/console/event_logger.py +1 -1
  69. exonware/xwsystem/console/writer.py +1 -1
  70. exonware/xwsystem/contracts.py +1 -1
  71. exonware/xwsystem/data_structures/__init__.py +1 -1
  72. exonware/xwsystem/data_structures/trie.py +1 -1
  73. exonware/xwsystem/data_structures/union_find.py +1 -1
  74. exonware/xwsystem/defs.py +1 -1
  75. exonware/xwsystem/errors.py +1 -1
  76. exonware/xwsystem/facade.py +1 -1
  77. exonware/xwsystem/http_client/__init__.py +1 -1
  78. exonware/xwsystem/http_client/advanced_client.py +1 -1
  79. exonware/xwsystem/http_client/base.py +1 -1
  80. exonware/xwsystem/http_client/client.py +1 -1
  81. exonware/xwsystem/http_client/contracts.py +1 -1
  82. exonware/xwsystem/http_client/defs.py +1 -1
  83. exonware/xwsystem/http_client/errors.py +1 -1
  84. exonware/xwsystem/http_client/facade.py +1 -1
  85. exonware/xwsystem/io/__init__.py +1 -1
  86. exonware/xwsystem/io/archive/__init__.py +1 -1
  87. exonware/xwsystem/io/archive/archive.py +1 -1
  88. exonware/xwsystem/io/archive/archive_files.py +1 -1
  89. exonware/xwsystem/io/archive/archivers.py +1 -1
  90. exonware/xwsystem/io/archive/base.py +1 -1
  91. exonware/xwsystem/io/archive/codec_integration.py +1 -1
  92. exonware/xwsystem/io/archive/compression.py +1 -1
  93. exonware/xwsystem/io/archive/facade.py +1 -1
  94. exonware/xwsystem/io/archive/formats/__init__.py +1 -1
  95. exonware/xwsystem/io/archive/formats/brotli_format.py +1 -1
  96. exonware/xwsystem/io/archive/formats/lz4_format.py +1 -1
  97. exonware/xwsystem/io/archive/formats/rar.py +1 -1
  98. exonware/xwsystem/io/archive/formats/sevenzip.py +1 -1
  99. exonware/xwsystem/io/archive/formats/squashfs_format.py +1 -1
  100. exonware/xwsystem/io/archive/formats/tar.py +1 -1
  101. exonware/xwsystem/io/archive/formats/wim_format.py +1 -1
  102. exonware/xwsystem/io/archive/formats/zip.py +1 -1
  103. exonware/xwsystem/io/archive/formats/zpaq_format.py +1 -1
  104. exonware/xwsystem/io/archive/formats/zstandard.py +1 -1
  105. exonware/xwsystem/io/base.py +1 -1
  106. exonware/xwsystem/io/codec/__init__.py +1 -1
  107. exonware/xwsystem/io/codec/base.py +1 -1
  108. exonware/xwsystem/io/codec/contracts.py +1 -1
  109. exonware/xwsystem/io/codec/registry.py +1 -1
  110. exonware/xwsystem/io/common/__init__.py +1 -1
  111. exonware/xwsystem/io/common/base.py +1 -1
  112. exonware/xwsystem/io/common/lock.py +1 -1
  113. exonware/xwsystem/io/common/watcher.py +1 -1
  114. exonware/xwsystem/io/contracts.py +1 -1
  115. exonware/xwsystem/io/contracts_1.py +1 -1
  116. exonware/xwsystem/io/data_operations.py +1 -1
  117. exonware/xwsystem/io/defs.py +1 -1
  118. exonware/xwsystem/io/errors.py +1 -1
  119. exonware/xwsystem/io/facade.py +1 -1
  120. exonware/xwsystem/io/file/__init__.py +1 -1
  121. exonware/xwsystem/io/file/base.py +1 -1
  122. exonware/xwsystem/io/file/conversion.py +1 -1
  123. exonware/xwsystem/io/file/file.py +1 -1
  124. exonware/xwsystem/io/file/paged_source.py +1 -1
  125. exonware/xwsystem/io/file/paging/__init__.py +1 -1
  126. exonware/xwsystem/io/file/paging/byte_paging.py +1 -1
  127. exonware/xwsystem/io/file/paging/line_paging.py +1 -1
  128. exonware/xwsystem/io/file/paging/record_paging.py +1 -1
  129. exonware/xwsystem/io/file/paging/registry.py +1 -1
  130. exonware/xwsystem/io/file/source.py +1 -1
  131. exonware/xwsystem/io/filesystem/__init__.py +1 -1
  132. exonware/xwsystem/io/filesystem/base.py +1 -1
  133. exonware/xwsystem/io/filesystem/local.py +1 -1
  134. exonware/xwsystem/io/folder/__init__.py +1 -1
  135. exonware/xwsystem/io/folder/base.py +1 -1
  136. exonware/xwsystem/io/folder/folder.py +1 -1
  137. exonware/xwsystem/io/indexing/__init__.py +1 -1
  138. exonware/xwsystem/io/indexing/facade.py +1 -1
  139. exonware/xwsystem/io/path_parser.py +1 -1
  140. exonware/xwsystem/io/serialization/__init__.py +1 -1
  141. exonware/xwsystem/io/serialization/auto_serializer.py +1 -1
  142. exonware/xwsystem/io/serialization/base.py +1 -1
  143. exonware/xwsystem/io/serialization/contracts.py +1 -1
  144. exonware/xwsystem/io/serialization/defs.py +1 -1
  145. exonware/xwsystem/io/serialization/errors.py +1 -1
  146. exonware/xwsystem/io/serialization/flyweight.py +1 -1
  147. exonware/xwsystem/io/serialization/format_detector.py +1 -1
  148. exonware/xwsystem/io/serialization/formats/__init__.py +1 -1
  149. exonware/xwsystem/io/serialization/formats/binary/bson.py +1 -1
  150. exonware/xwsystem/io/serialization/formats/binary/cbor.py +1 -1
  151. exonware/xwsystem/io/serialization/formats/binary/marshal.py +1 -1
  152. exonware/xwsystem/io/serialization/formats/binary/msgpack.py +1 -1
  153. exonware/xwsystem/io/serialization/formats/binary/pickle.py +1 -1
  154. exonware/xwsystem/io/serialization/formats/binary/plistlib.py +1 -1
  155. exonware/xwsystem/io/serialization/formats/database/dbm.py +1 -1
  156. exonware/xwsystem/io/serialization/formats/database/shelve.py +1 -1
  157. exonware/xwsystem/io/serialization/formats/database/sqlite3.py +1 -1
  158. exonware/xwsystem/io/serialization/formats/tabular/__init__.py +1 -1
  159. exonware/xwsystem/io/serialization/formats/tabular/base.py +1 -1
  160. exonware/xwsystem/io/serialization/formats/tabular/csv.py +1 -1
  161. exonware/xwsystem/io/serialization/formats/tabular/df.py +1 -1
  162. exonware/xwsystem/io/serialization/formats/tabular/excel.py +1 -1
  163. exonware/xwsystem/io/serialization/formats/tabular/googlesheets.py +1 -1
  164. exonware/xwsystem/io/serialization/formats/text/configparser.py +1 -1
  165. exonware/xwsystem/io/serialization/formats/text/csv.py +1 -1
  166. exonware/xwsystem/io/serialization/formats/text/formdata.py +1 -1
  167. exonware/xwsystem/io/serialization/formats/text/json.py +1 -1
  168. exonware/xwsystem/io/serialization/formats/text/json5.py +1 -1
  169. exonware/xwsystem/io/serialization/formats/text/jsonlines.py +1 -1
  170. exonware/xwsystem/io/serialization/formats/text/multipart.py +1 -1
  171. exonware/xwsystem/io/serialization/formats/text/toml.py +1 -1
  172. exonware/xwsystem/io/serialization/formats/text/xml.py +1 -1
  173. exonware/xwsystem/io/serialization/formats/text/yaml.py +1 -1
  174. exonware/xwsystem/io/serialization/registry.py +1 -1
  175. exonware/xwsystem/io/serialization/serializer.py +1 -1
  176. exonware/xwsystem/io/serialization/universal_options.py +1 -1
  177. exonware/xwsystem/io/serialization/utils/__init__.py +1 -1
  178. exonware/xwsystem/io/serialization/utils/path_ops.py +1 -1
  179. exonware/xwsystem/io/stream/__init__.py +1 -1
  180. exonware/xwsystem/io/stream/async_operations.py +1 -1
  181. exonware/xwsystem/io/stream/base.py +1 -1
  182. exonware/xwsystem/io/stream/codec_io.py +1 -1
  183. exonware/xwsystem/ipc/async_fabric.py +1 -1
  184. exonware/xwsystem/ipc/base.py +1 -1
  185. exonware/xwsystem/ipc/contracts.py +1 -1
  186. exonware/xwsystem/ipc/defs.py +1 -1
  187. exonware/xwsystem/ipc/errors.py +1 -1
  188. exonware/xwsystem/monitoring/base.py +1 -1
  189. exonware/xwsystem/monitoring/contracts.py +1 -1
  190. exonware/xwsystem/monitoring/defs.py +1 -1
  191. exonware/xwsystem/monitoring/errors.py +1 -1
  192. exonware/xwsystem/monitoring/facade.py +1 -1
  193. exonware/xwsystem/monitoring/performance_manager_generic.py +1 -1
  194. exonware/xwsystem/monitoring/system_monitor.py +1 -1
  195. exonware/xwsystem/monitoring/tracing.py +1 -1
  196. exonware/xwsystem/monitoring/tracker.py +1 -1
  197. exonware/xwsystem/operations/__init__.py +1 -1
  198. exonware/xwsystem/operations/base.py +1 -1
  199. exonware/xwsystem/operations/defs.py +1 -1
  200. exonware/xwsystem/operations/diff.py +1 -1
  201. exonware/xwsystem/operations/merge.py +1 -1
  202. exonware/xwsystem/operations/patch.py +1 -1
  203. exonware/xwsystem/patterns/base.py +1 -1
  204. exonware/xwsystem/patterns/contracts.py +1 -1
  205. exonware/xwsystem/patterns/defs.py +1 -1
  206. exonware/xwsystem/patterns/errors.py +1 -1
  207. exonware/xwsystem/patterns/registry.py +1 -1
  208. exonware/xwsystem/plugins/__init__.py +1 -1
  209. exonware/xwsystem/plugins/base.py +1 -1
  210. exonware/xwsystem/plugins/contracts.py +1 -1
  211. exonware/xwsystem/plugins/defs.py +1 -1
  212. exonware/xwsystem/plugins/errors.py +1 -1
  213. exonware/xwsystem/query/__init__.py +1 -1
  214. exonware/xwsystem/query/contracts.py +1 -1
  215. exonware/xwsystem/query/errors.py +1 -1
  216. exonware/xwsystem/query/registry.py +1 -1
  217. exonware/xwsystem/runtime/__init__.py +1 -1
  218. exonware/xwsystem/runtime/base.py +1 -1
  219. exonware/xwsystem/runtime/contracts.py +1 -1
  220. exonware/xwsystem/runtime/defs.py +1 -1
  221. exonware/xwsystem/runtime/env.py +1 -1
  222. exonware/xwsystem/runtime/errors.py +1 -1
  223. exonware/xwsystem/runtime/reflection.py +1 -1
  224. exonware/xwsystem/security/audit.py +1 -1
  225. exonware/xwsystem/security/base.py +1 -1
  226. exonware/xwsystem/security/contracts.py +1 -1
  227. exonware/xwsystem/security/crypto.py +1 -1
  228. exonware/xwsystem/security/defs.py +1 -1
  229. exonware/xwsystem/security/errors.py +1 -1
  230. exonware/xwsystem/security/facade.py +1 -1
  231. exonware/xwsystem/security/file_security.py +1 -1
  232. exonware/xwsystem/security/hazmat.py +1 -1
  233. exonware/xwsystem/security/monitor.py +1 -1
  234. exonware/xwsystem/security/policy.py +1 -1
  235. exonware/xwsystem/security/validator.py +1 -1
  236. exonware/xwsystem/shared/__init__.py +1 -1
  237. exonware/xwsystem/shared/base.py +1 -1
  238. exonware/xwsystem/shared/contracts.py +1 -1
  239. exonware/xwsystem/shared/defs.py +1 -1
  240. exonware/xwsystem/shared/errors.py +1 -1
  241. exonware/xwsystem/shared/xwobject.py +1 -1
  242. exonware/xwsystem/structures/base.py +1 -1
  243. exonware/xwsystem/structures/contracts.py +1 -1
  244. exonware/xwsystem/structures/defs.py +1 -1
  245. exonware/xwsystem/structures/errors.py +1 -1
  246. exonware/xwsystem/threading/async_primitives.py +1 -1
  247. exonware/xwsystem/threading/base.py +1 -1
  248. exonware/xwsystem/threading/contracts.py +1 -1
  249. exonware/xwsystem/threading/defs.py +1 -1
  250. exonware/xwsystem/threading/errors.py +1 -1
  251. exonware/xwsystem/threading/facade.py +1 -1
  252. exonware/xwsystem/utils/__init__.py +1 -1
  253. exonware/xwsystem/utils/base.py +1 -1
  254. exonware/xwsystem/utils/contracts.py +1 -1
  255. exonware/xwsystem/utils/dt/__init__.py +1 -1
  256. exonware/xwsystem/utils/dt/base.py +1 -1
  257. exonware/xwsystem/utils/dt/contracts.py +1 -1
  258. exonware/xwsystem/utils/dt/defs.py +1 -1
  259. exonware/xwsystem/utils/dt/errors.py +1 -1
  260. exonware/xwsystem/utils/dt/formatting.py +1 -1
  261. exonware/xwsystem/utils/dt/humanize.py +1 -1
  262. exonware/xwsystem/utils/dt/parsing.py +1 -1
  263. exonware/xwsystem/utils/dt/timezone_utils.py +1 -1
  264. exonware/xwsystem/utils/errors.py +1 -1
  265. exonware/xwsystem/utils/string.py +1 -1
  266. exonware/xwsystem/utils/test_runner.py +1 -1
  267. exonware/xwsystem/utils/utils_contracts.py +1 -1
  268. exonware/xwsystem/utils/web.py +1 -1
  269. exonware/xwsystem/validation/__init__.py +1 -1
  270. exonware/xwsystem/validation/base.py +1 -1
  271. exonware/xwsystem/validation/contracts.py +1 -1
  272. exonware/xwsystem/validation/declarative.py +1 -1
  273. exonware/xwsystem/validation/defs.py +1 -1
  274. exonware/xwsystem/validation/errors.py +1 -1
  275. exonware/xwsystem/validation/facade.py +1 -1
  276. exonware/xwsystem/validation/fluent_validator.py +1 -1
  277. exonware/xwsystem/version.py +2 -2
  278. {exonware_xwsystem-0.1.0.3.dist-info → exonware_xwsystem-0.1.0.5.dist-info}/METADATA +2 -2
  279. exonware_xwsystem-0.1.0.5.dist-info/RECORD +337 -0
  280. exonware_xwsystem-0.1.0.3.dist-info/RECORD +0 -337
  281. {exonware_xwsystem-0.1.0.3.dist-info → exonware_xwsystem-0.1.0.5.dist-info}/WHEEL +0 -0
  282. {exonware_xwsystem-0.1.0.3.dist-info → exonware_xwsystem-0.1.0.5.dist-info}/licenses/LICENSE +0 -0
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 2025-01-27
10
10
 
11
11
  Console module contracts - interfaces for console functionality.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 2025-01-27
10
10
 
11
11
  Type definitions and constants for console module.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 2025-01-27
10
10
 
11
11
  Console module errors - exception classes for console functionality.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 2025-01-27
10
10
 
11
11
  Console Event Logger implementation for structured logging.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 2025-01-27
10
10
 
11
11
  Console Writer implementation for user interaction (not logging).
@@ -6,7 +6,7 @@ High-level, cross-cutting interfaces for xwsystem.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.1.0.3
9
+ Version: 0.1.0.5
10
10
  Last Updated: 29-Jan-2026
11
11
 
12
12
  MANDATORY (GUIDE_31_DEV.md): interfaces in `contracts.py` MUST use `Protocol`.
@@ -10,7 +10,7 @@ Provides reusable data structures that can be used by any library:
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.1.0.3
13
+ Version: 0.1.0.5
14
14
  Generation Date: 26-Jan-2025
15
15
  """
16
16
 
@@ -9,7 +9,7 @@ Generic Trie node implementation that can be used by any library.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.1.0.3
12
+ Version: 0.1.0.5
13
13
  Generation Date: 26-Jan-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ Generic Union-Find implementation that can be used by any library.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.1.0.3
12
+ Version: 0.1.0.5
13
13
  Generation Date: 26-Jan-2025
14
14
  """
15
15
 
exonware/xwsystem/defs.py CHANGED
@@ -6,7 +6,7 @@ Package-level definitions (constants, enums, TypedDicts) for xwsystem.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.1.0.3
9
+ Version: 0.1.0.5
10
10
  Last Updated: 29-Jan-2026
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Package-level errors for xwsystem.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.1.0.3
9
+ Version: 0.1.0.5
10
10
  Last Updated: 29-Jan-2026
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Package-level facade(s) for xwsystem.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.1.0.3
9
+ Version: 0.1.0.5
10
10
  Last Updated: 29-Jan-2026
11
11
 
12
12
  This module provides a stable, high-level entry point for composing major
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  XSystem HTTP Package
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Advanced HTTP client with HTTP/2, streaming, pluggable transports, and modern features.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: September 04, 2025
9
9
 
10
10
  HTTP module base classes - abstract classes for HTTP client functionality.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  HTTP client with retry mechanisms, connection pooling, and error handling.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  HTTP module contracts - interfaces and enums for HTTP client functionality.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: 07-Sep-2025
10
10
 
11
11
  HTTP types and enums for XWSystem.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: September 04, 2025
9
9
 
10
10
  HTTP module errors - exception classes for HTTP client functionality.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: January 2026
8
8
 
9
9
  XWHTTP - Unified HTTP Client Facade
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: 30-Oct-2025
8
8
 
9
9
  I/O utilities for safe file operations, path management, and codec integration.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Archive and compression with REGISTRY PATTERN!
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Archive facade using registry pattern.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Archive FILES - File persistence for archives.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Archive codecs - In-memory archive processors.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Base classes and registries for archive system.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  Archive-Codec Integration - Register archivers with CodecRegistry.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Compression operations for gzip, bz2, and lzma.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: January 2026
8
8
 
9
9
  XWArchive - Unified Archiving Facade
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  Archive format implementations - COMPREHENSIVE 2025 SUPPORT.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  Brotli (.br) compression format - RANK #6 WEB COMPRESSION.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  LZ4 compression format - RANK #7 FASTEST COMPRESSION.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  RAR5 archive format implementation - RANK #3 PROPRIETARY COMPRESSION.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  7z archive format implementation - High compression ratio.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  SquashFS filesystem format - RANK #10 EMBEDDED SYSTEMS.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  TAR archive format implementation.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  WIM (Windows Imaging) format - RANK #9 SYSTEM IMAGES.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  ZIP archive format implementation.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  ZPAQ journaled compression format - RANK #8 EXTREME COMPRESSION.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  Zstandard (.zst) compression format - RANK #2 MODERN STANDARD.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  IO module base classes - abstract classes for input/output functionality.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: October 30, 2025
10
10
 
11
11
  Universal Codec Abstraction for eXonware.
@@ -5,7 +5,7 @@
5
5
  Company: eXonware.com
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Email: connect@exonware.com
8
- Version: 0.1.0.3
8
+ Version: 0.1.0.5
9
9
  Generation Date: October 30, 2025
10
10
 
11
11
  Base classes, registry, adapters, and helper functions for codec system.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Codec module contracts - interfaces for codec operations.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: November 04, 2025
8
8
 
9
9
  Universal Codec Registry - High-performance registry for all codec types.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Common utilities shared across IO operations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Base classes and utilities for common IO operations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  File locking implementation for concurrent access control.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  File watching implementation for change monitoring.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  IO module contracts - interfaces and enums for input/output operations.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  IO module contracts - interfaces and enums for input/output operations.
@@ -16,7 +16,7 @@ lazy, paged, and atomic access features without re-implementing I/O logic.
16
16
  Company: eXonware.com
17
17
  Author: Eng. Muhammad AlShehri
18
18
  Email: connect@exonware.com
19
- Version: 0.1.0.3
19
+ Version: 0.1.0.5
20
20
  Generation Date: 15-Dec-2025
21
21
  """
22
22
 
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: 30-Oct-2025
8
8
 
9
9
  IO module definitions - ALL enums and types in ONE place.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: 30-Oct-2025
8
8
 
9
9
  IO module errors - ALL exceptions in ONE place.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  XWIO - Main facade for all I/O operations (MANDATORY facade pattern).
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  File-specific implementations and utilities.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Base classes for file operations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: November 1, 2025
9
9
 
10
10
  File Format Conversion - Convert between compatible formats.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.1.0.3
6
+ Version: 0.1.0.5
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  XWFile - Concrete implementation of file operations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Paged file source with MODULAR paging system.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Modular paging system with strategy pattern.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Byte-based paging strategy.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Line-based paging strategy.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.1.0.3
7
+ Version: 0.1.0.5
8
8
  Generation Date: 30-Oct-2025
9
9
 
10
10
  Record-based paging strategy for structured formats.