From 1a6ef0d0452eb20b2c49ba5fc012a1021cc0568d Mon Sep 17 00:00:00 2001 From: Brett Lykins Date: Tue, 1 Oct 2024 18:38:57 -0400 Subject: [PATCH] release v0.16.2 prep --- CHANGELOG.md | 13 ++ changelog/4323.fixed.md | 1 - changelog/4438.fixed.md | 4 - changelog/4454.fixed.md | 1 - changelog/4460.fixed.md | 1 - .../release-notes/infrahub/release-0_16_2.mdx | 131 ++++++++++++++++++ docs/sidebars.ts | 1 + helm/Chart.yaml | 4 +- pyproject.toml | 2 +- 9 files changed, 148 insertions(+), 10 deletions(-) delete mode 100644 changelog/4323.fixed.md delete mode 100644 changelog/4438.fixed.md delete mode 100644 changelog/4454.fixed.md delete mode 100644 changelog/4460.fixed.md create mode 100644 docs/docs/release-notes/infrahub/release-0_16_2.mdx diff --git a/CHANGELOG.md b/CHANGELOG.md index f7fb71681a..2cde8ba712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,19 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [0.16.2](https://github.com/opsmill/infrahub/tree/v0.16.2) - 2024-10-01 + +### Fixed + +- Loading a schema with an invalid order_by field raise a proper error. ([#4323](https://github.com/opsmill/infrahub/issues/4323)) +- Updates internal logic to improve performance when generating a diff. + + BREAKING CHANGE: Diff data, including conflict selections, will be deleted. We recommend merging + any outstanding proposed changes before upgrading to this version. ([#4438](https://github.com/opsmill/infrahub/issues/4438)) +- Fix performance issue for GraphQL queries that only count nodes. ([#4454](https://github.com/opsmill/infrahub/issues/4454)) +- Fix ability to construct HFID for upsert mutations where a number attribute is used. ([#4460](https://github.com/opsmill/infrahub/issues/4460)) + + ## [0.16.1](https://github.com/opsmill/infrahub/tree/v0.16.1) - 2024-09-24 The largest change in this version is the movement of the Infrahub SDK into a diff --git a/changelog/4323.fixed.md b/changelog/4323.fixed.md deleted file mode 100644 index 4c1ea1d4c1..0000000000 --- a/changelog/4323.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Loading a schema with an invalid order_by field raise a proper error diff --git a/changelog/4438.fixed.md b/changelog/4438.fixed.md deleted file mode 100644 index fc954f7f6e..0000000000 --- a/changelog/4438.fixed.md +++ /dev/null @@ -1,4 +0,0 @@ -Updates internal logic to improve performance when generating a diff. - -BREAKING CHANGE: Diff data, including conflict selections, will be deleted. We recommend merging -any outstanding proposed changes before upgrading to this version. \ No newline at end of file diff --git a/changelog/4454.fixed.md b/changelog/4454.fixed.md deleted file mode 100644 index 5a8a191247..0000000000 --- a/changelog/4454.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fix performance issue for GraphQL queries that only count nodes. diff --git a/changelog/4460.fixed.md b/changelog/4460.fixed.md deleted file mode 100644 index 46f5b65046..0000000000 --- a/changelog/4460.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fix ability to construct HFID for upsert mutations where a number attribute is used. diff --git a/docs/docs/release-notes/infrahub/release-0_16_2.mdx b/docs/docs/release-notes/infrahub/release-0_16_2.mdx new file mode 100644 index 0000000000..49f23cb8a4 --- /dev/null +++ b/docs/docs/release-notes/infrahub/release-0_16_2.mdx @@ -0,0 +1,131 @@ +--- +title: Release 0.16.2 +--- + + + + + + + + + + + + + + + + + + + +
Release Number0.16.2
Release DateOctober 1st, 2024
Release CodenameBeta #5, Patch #2
Tag[infrahub-v0.16.2](https://github.com/opsmill/infrahub/releases/tag/infrahub-v0.16.2)
+ +# Release 0.16.2 + +We are thrilled to announce the latest release of Infrahub, version *0.16.2*! + +This release focuses largely on bug fixes and is driven by our Beta Test users, +and as always we greatly appreciate their feedback and time! + +## Main changes + +The largest change in this version is the movement of the Infrahub SDK into a +[separate repository](https://github.com/opsmill/infrahub-sdk-python) and package. + +[Documentation for the SDK](https://docs.infrahub.app/python-sdk/) remains in the main Infrahub documentation at this time. + +Developers may need to take the following steps to ensure their development environment has the proper SDK in place: + +```shell +git checkout develop +git pull +rm -rf python_sdk +git submodule update --init +``` + +The complete list of changes can always be found in the `CHANGELOG.md` file in the Infrahub Git repository. + +### Removed + +- 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). + ([#4232](https://github.com/opsmill/infrahub/issues/4232)) + +### Added + +- - In list views, always show relationships of type "Parent." + - In the details view of an object, hide the "Parent" relationship if the parent is the current object itself. + + ([#3891](https://github.com/opsmill/infrahub/issues/3891)) +- Add ability to construct HFIDs from payload for upsert mutations ([#4167](https://github.com/opsmill/infrahub/issues/4167)) +- Add HFID to schema view in the frontend ([#4172](https://github.com/opsmill/infrahub/issues/4172)) +- Update action buttons in details view and relationships views + - in the details view, we can edit / delete the object and manage its groups + - in the relationships views, we can add new relationships (it replaces the "+" button at the bottom) + + ([#4362](https://github.com/opsmill/infrahub/issues/4362)) +- Prevent the form from being closed if there are unsaved changes. ([#4419](https://github.com/opsmill/infrahub/issues/4419)) + +### Fixed + +- 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)) +- 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)) +- 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)) +- 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)) +- Account for uniqueness constraints of a single attribute when validating human-friendly ID ([#4181](https://github.com/opsmill/infrahub/issues/4181)) +- Synchronize uniqueness_constraints and unique attributes during schema processing ([#4182](https://github.com/opsmill/infrahub/issues/4182)) +- 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)) +- 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)) +- Fixed incorrect consumer timeout for RabbitMQ queue infrahub.rpcs + + 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. + + Swap the container name and credentials to RabbitMQ if they are different in your setup: + + ```bash + docker exec -it infrahub-message-queue-1 rabbitmqadmin --username infrahub --password infrahub delete queue name=infrahub.rpcs + ``` + + 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)) +- Add documentation links for Generator Definition and Generator Instance pages to Generator topic ([#4316](https://github.com/opsmill/infrahub/issues/4316)) +- 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)) +- 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)) +- Display label composed of an attribute of type Enum will now render correctly ([#4382](https://github.com/opsmill/infrahub/issues/4382)) +- Removed database index in Attribute Value to attribute larger than 8167 bytes ([#4399](https://github.com/opsmill/infrahub/issues/4399)) +- Added cancel button in repository form ([#4402](https://github.com/opsmill/infrahub/issues/4402)) +- Fixes the tasks pagination in the proposed changes tab ([#4434](https://github.com/opsmill/infrahub/issues/4434)) + +## Migration guide + +To migrate your instance of Infrahub to the latest version, please run the following commands and restart all instances of Infrahub. + + +```shell +infrahub db migrate +infrahub db update-core-schema +``` + + +> if you are running in docker these commands need to run from the container where Infrahub is installed + +### Migration of the demo instance + +If you are using the demo environment, you can migrate to the latest version with the following commands + +```shell +invoke demo.stop +invoke demo.build +invoke demo.migrate +invoke demo.start +``` + +If you don't want to keep your data, you can start a clean instance with the following command + +```shell +invoke demo.destroy demo.build demo.start demo.load-infra-schema demo.load-infra-data +``` + +> All data will be lost, please make sure to backup everything you need before running this command. + +The repository https://github.com/opsmill/infrahub-demo-edge has also been updated, it's recommended to pull the latest changes into your fork. diff --git a/docs/sidebars.ts b/docs/sidebars.ts index e2097d1334..35442be736 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -308,6 +308,7 @@ const sidebars: SidebarsConfig = { }, items: [ // 'release-notes/infrahub/release-1_0-DRAFT', + 'release-notes/infrahub/release-0_16_2', 'release-notes/infrahub/release-0_16_1', 'release-notes/infrahub/release-0_16', 'release-notes/infrahub/release-0_15_3', diff --git a/helm/Chart.yaml b/helm/Chart.yaml index c29cb9a3d8..3cf60f1250 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -14,12 +14,12 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.7.0 +version: 2.7.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.16.1" +appVersion: "0.16.2" dependencies: - name: neo4j diff --git a/pyproject.toml b/pyproject.toml index 32227133a2..679ed29034 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "infrahub" -version = "0.16.1" +version = "0.16.2" description = "Infrahub is taking a new approach to Infrastructure Management by providing a new generation of datastore to organize and control all the data that defines how an infrastructure should run." authors = ["OpsMill "] readme = "README.md"