Skip to content

Releases: opsmill/infrahub

Infrahub - v0.16.4

17 Oct 12:50
82daaca
Compare
Choose a tag to compare

Release 0.16.4

We are thrilled to announce the latest release of Infrahub, version 0.16.4!

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 complete list of changes can always be found in the CHANGELOG.md file in the Infrahub Git repository.

Fixed

  • Fixed an issue on the UI where a new relationship was being added to the main branch instead of the current branch. (#4598)

Migration guide

To migrate your instance of Infrahub to the latest version, please run the following commands and restart all instances of Infrahub.

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

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

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.

Infrahub - v0.16.3

10 Oct 19:35
4178bb8
Compare
Choose a tag to compare

Release 0.16.3

We are thrilled to announce the latest release of Infrahub, version 0.16.3!

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 complete list of changes can always be found in the CHANGELOG.md file in the Infrahub Git repository.

Removed

  • Removed infrahub.toml configuration file from Docker builds.

Fixed

  • Save a diff in smaller pieces instead of all at once to prevent out-of-memory error. (#4511)
  • Fixes exception handling section in the Python SDK batch guide.

Migration guide

To migrate your instance of Infrahub to the latest version, please run the following commands and restart all instances of Infrahub.

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

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

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.

Full Changelog: infrahub-v0.16.2...infrahub-v0.16.3

Infrahub - v0.16.2

01 Oct 23:03
Compare
Choose a tag to compare

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 complete list of changes can always be found in the CHANGELOG.md file in the Infrahub Git repository.

Fixed

  • Loading a schema with an invalid order_by field raise a proper error. (#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)

  • Fix performance issue for GraphQL queries that only count nodes. (#4454)

  • Fix ability to construct HFID for upsert mutations where a number attribute is used. (#4460)

Migration guide

To migrate your instance of Infrahub to the latest version, please run the following commands and restart all instances of Infrahub.

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

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

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.

Infrahub - v0.16.1

25 Sep 00:45
Compare
Choose a tag to compare

Release Notes

See the v0.16.1 Release Notes for additional information on new features and bug fixes.

What's Changed

Full Changelog: infrahub-v0.16.0...infrahub-v0.16.1

The largest change in this version is the movement of the Infrahub SDK into a
separate repository and package.

Documentation for the 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:

git checkout develop
git pull
rm -rf python_sdk
git submodule update --init

Removed

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)

  • Add ability to construct HFIDs from payload for upsert mutations (#4167)

  • Add HFID to schema view in the frontend (#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)

  • Prevent the form from being closed if there are unsaved changes. (#4419)

Fixed

  • GraphQL results when querying nodes with updated_at named attributes will now return correct values instead of null/None (#3730)

  • Loading a schema with a SchemaNode referencing an incorrect menu placement now returns a proper HTTP 422 error (#4089)

  • GraphQL mutations to update a many relationship that is required on the peer will succeed or fail with the correct error (#4124)

  • Infer human-friendly ID for a schema if it includes a uniqueness constraint of a single attribute (#4174)

  • Account for uniqueness constraints of a single attribute when validating human-friendly ID (#4181)

  • Synchronize uniqueness_constraints and unique attributes during schema processing (#4182)

  • Ensure schema uniqueness_constraints are created if they are missing and human_friendly_id has been specified for the node (#4186)

  • Deleting a node that is linked to a mandatory relationship on a generic schema will now fail with an error message (#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:

    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)

  • Add documentation links for Generator Definition and Generator Instance pages to Generator topic (#4316)

  • Hierarchical node that don't have a parent or a children defined in the schema will properly enforce that constraint (#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)

  • Display label composed of an attribute of type Enum will now render correctly (#4382)

  • Removed database index in Attribute Value to attribute larger than 8167 bytes (#4399)

  • Added cancel button in repository form (#4402)

  • Fixes the tasks pagination in the proposed changes tab (#4434)

Detailed Changelog

Python SDK - v0.13.0

12 Sep 09:35
78f7166
Compare
Choose a tag to compare

Added

  • Add support to search a node by human friendly ID using client's get method (#3908)
  • Add support for Number resource pool

Changed

  • Fix infrahubctl not displaying error message under certain conditions

Fixed

  • Fix fetching relationship attributes when relationship inherits from a generic (#3900)
  • Fix the retrieving on schema and nodes on the right branch (#4056)

Detailed changelog

Infrahub - v0.16.0

11 Sep 21:58
Compare
Choose a tag to compare

Release Notes

See the v0.16.0 Release Notes for additional information on new features.

New Contributors

What's Changed

Full Changelog: infrahub-v0.15.3...infrahub-v0.16.0

Removed

  • Removed isolated branch information from schema topic in the documentation. (#3968)

Added

  • Allow adding multiple profiles to an object in the UI. (#3061)
  • Added "disabled" attribute to accounts to allow more granular user management. (#3505)
  • Added capabilities to manage API tokens in the Infrahub UI. (#3527)
  • Added filtering and search to IPAM view. (#3740)
  • Add number of prefixes to IPAM tree view. (#3741)
  • Allow navigation to related node in list view. (#3889)
  • Add support to search a node by human friendly ID within a GraphQL query. (#3908)
  • Added DB migrations for objects changed to Generic type in 0.16. (#3915)
  • Add clickable items in the Proposed Change list view. (#3990)
  • Added the ability to filter out Infrahub internal groups. (#4027)
  • Add action button to Repository objects. (#4066)
  • Added documentation for creating custom Infrahub Docker images. (#4077)
  • Add support for numbers bigger or smaller than signed integers. (#4179)

Changed

  • Move GraphQL queries to .infrahub.yml for Repository imports. (#1938)
  • Improve UI of Git repository form. (#3893)
  • Consistency improvements in Repository interactions. (#4068)
  • Enhancements to Repository status reporting. (#4069)
  • Simplified the Repository view to only show crucial information. (#4071)
  • Increased visibility during Git sync. (#4072)

Fixed

  • Add ability to import repositories with default branch other than 'main'. (#3435)
  • SchemasLoadAPI should not inherited from SchemaRoot but from BaseModel. (#3821)
  • Resolve inconsistencies when loading same schema twice. (#3892)
  • HFID of a node is not properly set by prefetch_relationship in Python SDK. (#3900)
  • Comment input is not cleared upon submission of Proposed Change form. (#3942)
  • Can not assign Profile when editing Node in the web UI. (#3999)
  • Allow users to add a new generic to an existing node. (#4051)
  • Allow users to run artifacts and generators on nodes without name attribute (#4062)
  • Allow bare Git URL and automatically add .git. (#4070)
  • Schema diff view not functioning in branch detail page. (#4093)
  • Removed erroneous approval button on Diff view. (#4094)
  • Edit node form displays empty input field for mandatory relationship of cardinality many. (#4102)
  • GraphQL query does not appear on Detail page. (#4105)
  • Do not allow '/' character in repository name to avoid sync failure. (#4120)
  • Can't close a comment thread on an Artifact. (#4189)

Detailed Changelog

Read more

Python SDK - Version 0.13.0 - Beta 1

27 Aug 16:26
5c78e2b
Compare
Choose a tag to compare
Pre-release

🐛 Bug Fixes

🧰 Maintenance

Python SDK - v0.12.4

19 Aug 10:10
1e3907c
Compare
Choose a tag to compare

🐛 Bug Fixes

Infrahub - v0.15.3

13 Aug 13:57
Compare
Choose a tag to compare

Added

  • Add usage of Towncrier to generate Changelog as part of the release process.
    For detailed information, see the Documentation. (#4023)
  • Serve Swagger & Redoc files locally so that the REST-API docs work offline or when isolated from the internet. (#4063)

Fixed

  • Fix attribute uniqueness check that was incorrectly running against schema nodes, (#3986)
  • Provide better information when available during schema conflicts in the pipeline. (#3987)
  • Fix schema sync issue between worker nodes. (#3994)
  • Updates the profile type select when creating a profile, to display more relevant information about the related nodes. (#4001)
  • Fix logic that prevented existing inherited attribute / relationships from being updated. (#4004)
  • Fix attribute uniqueness validator to not run in isolated mode. (#4025)
  • Update getting-started/branches referencing the wrong org from previous step.
    Update getting-started/resource-manager referencing the wrong button.
    Regenerate the screenshots for the tutorial. (#4035)
  • Fix object creation for schema node using enum attribute in uniqueness constraint groups. (#4054)

What's Changed

New Contributors

Full Changelog: infrahub-v0.15.2...infrahub-v0.15.3

Python SDK - v0.12.3

12 Aug 10:02
0eddeb1
Compare
Choose a tag to compare

🐛 Bug Fixes