Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v0.16.2 #4512

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [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
Expand Down
1 change: 0 additions & 1 deletion changelog/4323.fixed.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/4438.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4454.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4460.fixed.md

This file was deleted.

78 changes: 78 additions & 0 deletions docs/docs/release-notes/infrahub/release-0_16_2.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
title: Release 0.16.2
---
<table>
<tbody>
<tr>
<th>Release Number</th>
<td>0.16.2</td>
</tr>
<tr>
<th>Release Date</th>
<td>October 1st, 2024</td>
</tr>
<tr>
<th>Release Codename</th>
<td>Beta #5, Patch #2</td>
</tr>
<tr>
<th>Tag</th>
<td>[infrahub-v0.16.2](https://github.com/opsmill/infrahub/releases/tag/infrahub-v0.16.2)</td>
</tr>
</tbody>
</table>

# 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](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))

## Migration guide

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

<!-- vale off -->
```shell
infrahub db migrate
infrahub db update-core-schema
```
<!-- vale on -->

> 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.
1 change: 1 addition & 0 deletions docs/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down
Loading