Skip to content

Commit 2007a27

Browse files
authored
release prep for v0.16.1 (#4450)
1 parent 7958888 commit 2007a27

26 files changed

+199
-35
lines changed

.vale/styles/spelling-exceptions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ graphiql
4343
graphql
4444
greymatter
4545
hfid
46+
hfids
4647
hostname
4748
httpx
4849
human_friendly_id

CHANGELOG.md

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

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

14+
## [0.16.1](https://github.com/opsmill/infrahub/tree/v0.16.1) - 2024-09-24
15+
16+
The largest change in this version is the movement of the Infrahub SDK into a
17+
[separate repository](https://github.com/opsmill/infrahub-sdk-python) and package.
18+
19+
[Documentation for the SDK](https://docs.infrahub.app/python-sdk/) remains in the main Infrahub documentation at this time.
20+
21+
Developers may need to take the following steps to ensure their development environment has the proper SDK in place:
22+
23+
```shell
24+
git checkout develop
25+
git pull
26+
rm -rf python_sdk
27+
git submodule update --init
28+
```
29+
30+
### Removed
31+
32+
- Removed Python SDK from Infrahub repository and migrated to dedicated repository at [https://github.com/opsmill/infrahub-sdk-python](https://github.com/opsmill/infrahub-sdk-python).
33+
([#4232](https://github.com/opsmill/infrahub/issues/4232))
34+
35+
### Added
36+
37+
- - In list views, always show relationships of type "Parent."
38+
- In the details view of an object, hide the "Parent" relationship if the parent is the current object itself.
39+
40+
([#3891](https://github.com/opsmill/infrahub/issues/3891))
41+
- Add ability to construct HFIDs from payload for upsert mutations ([#4167](https://github.com/opsmill/infrahub/issues/4167))
42+
- Add HFID to schema view in the frontend ([#4172](https://github.com/opsmill/infrahub/issues/4172))
43+
- Update action buttons in details view and relationships views
44+
- in the details view, we can edit / delete the object and manage its groups
45+
- in the relationships views, we can add new relationships (it replaces the "+" button at the bottom)
46+
47+
([#4362](https://github.com/opsmill/infrahub/issues/4362))
48+
- Prevent the form from being closed if there are unsaved changes. ([#4419](https://github.com/opsmill/infrahub/issues/4419))
49+
50+
### Fixed
51+
52+
- GraphQL results when querying nodes with `updated_at` named attributes will now return correct values instead of null/None ([#3730](https://github.com/opsmill/infrahub/issues/3730))
53+
- Loading a schema with a SchemaNode referencing an incorrect menu placement now returns a proper HTTP 422 error ([#4089](https://github.com/opsmill/infrahub/issues/4089))
54+
- GraphQL mutations to update a many relationship that is required on the peer will succeed or fail with the correct error ([#4124](https://github.com/opsmill/infrahub/issues/4124))
55+
- Infer human-friendly ID for a schema if it includes a uniqueness constraint of a single attribute ([#4174](https://github.com/opsmill/infrahub/issues/4174))
56+
- Account for uniqueness constraints of a single attribute when validating human-friendly ID ([#4181](https://github.com/opsmill/infrahub/issues/4181))
57+
- Synchronize uniqueness_constraints and unique attributes during schema processing ([#4182](https://github.com/opsmill/infrahub/issues/4182))
58+
- Ensure schema uniqueness_constraints are created if they are missing and human_friendly_id has been specified for the node ([#4186](https://github.com/opsmill/infrahub/issues/4186))
59+
- Deleting a node that is linked to a mandatory relationship on a generic schema will now fail with an error message ([#4207](https://github.com/opsmill/infrahub/issues/4207))
60+
- Fixed incorrect consumer timeout for RabbitMQ queue infrahub.rpcs
61+
62+
If you are upgrading from a previous version of Infrahub and using the provided Docker Compose files you don't have to take any additional action. However if you are using your own setup for RabbitMQ you will need to manually delete the queue yourself.
63+
64+
Swap the container name and credentials to RabbitMQ if they are different in your setup:
65+
66+
```bash
67+
docker exec -it infrahub-message-queue-1 rabbitmqadmin --username infrahub --password infrahub delete queue name=infrahub.rpcs
68+
```
69+
70+
After this step Infrahub and the Git agents need to be restarted, when doing so the correct queue will be recreated. ([#4308](https://github.com/opsmill/infrahub/issues/4308))
71+
- Add documentation links for Generator Definition and Generator Instance pages to Generator topic ([#4316](https://github.com/opsmill/infrahub/issues/4316))
72+
- Hierarchical node that don't have a parent or a children defined in the schema will properly enforce that constraint ([#4325](https://github.com/opsmill/infrahub/issues/4325))
73+
- Properly raise errors instead of just logging them during repository import failures so that the "sync status" gets updated even if we've caught the errors. ([#4334](https://github.com/opsmill/infrahub/issues/4334))
74+
- Display label composed of an attribute of type Enum will now render correctly ([#4382](https://github.com/opsmill/infrahub/issues/4382))
75+
- Removed database index in Attribute Value to attribute larger than 8167 bytes ([#4399](https://github.com/opsmill/infrahub/issues/4399))
76+
- Added cancel button in repository form ([#4402](https://github.com/opsmill/infrahub/issues/4402))
77+
- Fixes the tasks pagination in the proposed changes tab ([#4434](https://github.com/opsmill/infrahub/issues/4434))
78+
1479
## [0.16.0](https://github.com/opsmill/infrahub/tree/v0.16.0) - 2024-09-11
1580

1681
### Removed

changelog/3730.fixed.md

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

changelog/3891.added.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/4089.fixed.md

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

changelog/4124.fixed.md

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

changelog/4167.added.md

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

changelog/4172.added.md

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

changelog/4174.fixed.md

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

changelog/4181.fixed.md

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

0 commit comments

Comments
 (0)