rackfish 1.0.0__tar.gz → 1.0.1__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.
- {rackfish-1.0.0 → rackfish-1.0.1}/CHANGELOG.md +14 -1
- {rackfish-1.0.0 → rackfish-1.0.1}/PKG-INFO +4 -4
- {rackfish-1.0.0 → rackfish-1.0.1}/README.md +3 -3
- {rackfish-1.0.0 → rackfish-1.0.1}/pyproject.toml +1 -1
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish/__init__.py +1 -1
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish.egg-info/PKG-INFO +4 -4
- {rackfish-1.0.0 → rackfish-1.0.1}/CONTRIBUTING.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/LICENSE +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/MANIFEST.in +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/COMPLETION_SUMMARY.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/EXAMPLES.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/INDEX.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/OEM_LINKS_SURFACING.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/TESTS.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/docs/USE_CASES.md +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/examples/demo_surfacing_comprehensive.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/examples/example_oem_links.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/examples/examples_comprehensive.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish/client.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish.egg-info/SOURCES.txt +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish.egg-info/dependency_links.txt +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish.egg-info/requires.txt +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/rackfish.egg-info/top_level.txt +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/requirements.txt +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/setup.cfg +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/tests/__init__.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/tests/test_common_usage.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/tests/test_oem_links_surfacing.py +0 -0
- {rackfish-1.0.0 → rackfish-1.0.1}/tests/test_recursion_fix.py +0 -0
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [1.0.1] - 2025-10-15
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Updated version metadata for proper PyPI package versioning
|
13
|
+
- Corrected git tag alignment with actual version numbers
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
- Improved release process documentation
|
18
|
+
- Enhanced version consistency across project files
|
19
|
+
|
8
20
|
## [1.0.0] - 2025-10-15
|
9
21
|
|
10
22
|
### Added
|
@@ -40,4 +52,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
40
52
|
- Comprehensive README
|
41
53
|
- GitHub/PyPI ready structure
|
42
54
|
|
43
|
-
[1.0.
|
55
|
+
[1.0.1]: https://github.com/thefrolov/rackfish/releases/tag/v1.0.1
|
56
|
+
[1.0.0]: https://github.com/thefrolov/rackfish/releases/tag/v1.0.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: rackfish
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: A lightweight, dynamic Python client for Redfish BMC APIs
|
5
5
|
Author-email: Dmitrii Frolov <thefrolov@mts.ru>
|
6
6
|
License: MIT
|
@@ -41,8 +41,8 @@ Dynamic: license-file
|
|
41
41
|
[](https://pypi.org/project/rackfish/)
|
42
42
|
[](https://pypi.org/project/rackfish/)
|
43
43
|
[](https://opensource.org/licenses/MIT)
|
44
|
-
[](https://github.com/thefrolov/rackfish/actions)
|
45
|
+
[](https://codecov.io/gh/thefrolov/rackfish)
|
46
46
|
[](https://github.com/psf/black)
|
47
47
|
|
48
48
|
A lightweight, dynamic Python client for interacting with Redfish BMC (Baseboard Management Controller) APIs. Provides intuitive access to server hardware management through lazy-loaded object graphs, automatic OEM property surfacing, and validated action invocation.
|
@@ -80,7 +80,7 @@ pip install rackfish
|
|
80
80
|
### From source
|
81
81
|
|
82
82
|
```bash
|
83
|
-
git clone https://github.com/
|
83
|
+
git clone https://github.com/thefrolov/rackfish.git
|
84
84
|
cd rackfish
|
85
85
|
pip install -e .
|
86
86
|
```
|
@@ -3,8 +3,8 @@
|
|
3
3
|
[](https://pypi.org/project/rackfish/)
|
4
4
|
[](https://pypi.org/project/rackfish/)
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
6
|
-
[](https://github.com/thefrolov/rackfish/actions)
|
7
|
+
[](https://codecov.io/gh/thefrolov/rackfish)
|
8
8
|
[](https://github.com/psf/black)
|
9
9
|
|
10
10
|
A lightweight, dynamic Python client for interacting with Redfish BMC (Baseboard Management Controller) APIs. Provides intuitive access to server hardware management through lazy-loaded object graphs, automatic OEM property surfacing, and validated action invocation.
|
@@ -42,7 +42,7 @@ pip install rackfish
|
|
42
42
|
### From source
|
43
43
|
|
44
44
|
```bash
|
45
|
-
git clone https://github.com/
|
45
|
+
git clone https://github.com/thefrolov/rackfish.git
|
46
46
|
cd rackfish
|
47
47
|
pip install -e .
|
48
48
|
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: rackfish
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: A lightweight, dynamic Python client for Redfish BMC APIs
|
5
5
|
Author-email: Dmitrii Frolov <thefrolov@mts.ru>
|
6
6
|
License: MIT
|
@@ -41,8 +41,8 @@ Dynamic: license-file
|
|
41
41
|
[](https://pypi.org/project/rackfish/)
|
42
42
|
[](https://pypi.org/project/rackfish/)
|
43
43
|
[](https://opensource.org/licenses/MIT)
|
44
|
-
[](https://github.com/thefrolov/rackfish/actions)
|
45
|
+
[](https://codecov.io/gh/thefrolov/rackfish)
|
46
46
|
[](https://github.com/psf/black)
|
47
47
|
|
48
48
|
A lightweight, dynamic Python client for interacting with Redfish BMC (Baseboard Management Controller) APIs. Provides intuitive access to server hardware management through lazy-loaded object graphs, automatic OEM property surfacing, and validated action invocation.
|
@@ -80,7 +80,7 @@ pip install rackfish
|
|
80
80
|
### From source
|
81
81
|
|
82
82
|
```bash
|
83
|
-
git clone https://github.com/
|
83
|
+
git clone https://github.com/thefrolov/rackfish.git
|
84
84
|
cd rackfish
|
85
85
|
pip install -e .
|
86
86
|
```
|
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
|
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
|