Skip to content

Commit b5acff9

Browse files
committed
changelog updates
1 parent 93094cf commit b5acff9

File tree

9 files changed

+20
-9
lines changed

9 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang
1111

1212
<!-- towncrier release notes start -->
1313

14+
## [1.0.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.0.0) - 2024-10-31
15+
16+
### Removed
17+
18+
- Breaking change: Removed all exports from infrahub_sdk/__init__.py except InfrahubClient, InfrahubClientSync and Config. If you previously imported other classes such as InfrahubNode from the root level these need to change to instead be an absolute path.
19+
20+
### Added
21+
22+
- Add support for specific timeout per request on InfrahubClient and InfrahubNode function calls. ([#25](https://github.com/opsmill/infrahub-sdk-python/issues/25))
23+
- Added `infrahubctl menu` command to load menu definitions into Infrahub
24+
25+
### Fixed
26+
27+
- Fix SDK playback hash generation to read the correct filename ([#64](https://github.com/opsmill/infrahub-sdk-python/issues/64))
28+
- CTL: Return friendly error on encoding violations when reading files. ([#102](https://github.com/opsmill/infrahub-sdk-python/issues/102))
29+
- Changed the default connection timeout in the SDK to 60s.
30+
- Fixes an issue where InfrahubClient was not properly URL encoding URL parameters.
31+
1432
## [0.14.1](https://github.com/opsmill/infrahub-sdk-python/tree/v0.14.1) - 2024-10-22
1533

1634
### Fixed
@@ -22,7 +40,7 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang
2240

2341
### Removed
2442

25-
- Removed depreceted methods InfrahubClient.init and InfrahubClientSync.init ([#33](https://github.com/opsmill/infrahub-sdk-python/issues/33))
43+
- Removed deprecated methods InfrahubClient.init and InfrahubClientSync.init ([#33](https://github.com/opsmill/infrahub-sdk-python/issues/33))
2644

2745
### Changed
2846

changelog/+8dff6891.removed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/+connection-timeout.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/+infrahubctl-menu.added.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/+urlencode-url-parameters.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/102.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/25.added.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/64.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

infrahub_sdk/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class NodeStoreBase:
2424
"""Internal Store for InfrahubNode objects.
2525
2626
Often while creating a lot of new objects,
27-
we need to save them in order to reuse them laterto associate them with another node for example.
27+
we need to save them in order to reuse them later to associate them with another node for example.
2828
"""
2929

3030
def __init__(self) -> None:

0 commit comments

Comments
 (0)