Skip to content

Commit 4178bb8

Browse files
authored
v0.16.3 Release (#4600)
* v0.16.3 release prep
1 parent 66fd136 commit 4178bb8

File tree

7 files changed

+92
-5
lines changed

7 files changed

+92
-5
lines changed

CHANGELOG.md

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

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

14+
## [0.16.3](https://github.com/opsmill/infrahub/tree/v0.16.3) - 2024-10-10
15+
16+
### Removed
17+
18+
- Removed `infrahub.toml` configuration file from Docker builds.
19+
20+
### Fixed
21+
22+
- Save a diff in smaller pieces instead of all at once to prevent out-of-memory error. ([#4511](https://github.com/opsmill/infrahub/issues/4511))
23+
- Fixes exception handling section in the Python SDK batch guide.
24+
1425
## [0.16.2](https://github.com/opsmill/infrahub/tree/v0.16.2) - 2024-10-01
1526

1627
### Fixed

changelog/+sdk-batch-docs.fixed.md

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

changelog/4511.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
title: Release 0.16.3
3+
---
4+
<table>
5+
<tbody>
6+
<tr>
7+
<th>Release Number</th>
8+
<td>0.16.3</td>
9+
</tr>
10+
<tr>
11+
<th>Release Date</th>
12+
<td>October 10th, 2024</td>
13+
</tr>
14+
<tr>
15+
<th>Release Codename</th>
16+
<td>Beta #5, Patch #3</td>
17+
</tr>
18+
<tr>
19+
<th>Tag</th>
20+
<td>[infrahub-v0.16.3](https://github.com/opsmill/infrahub/releases/tag/infrahub-v0.16.3)</td>
21+
</tr>
22+
</tbody>
23+
</table>
24+
25+
# Release 0.16.3
26+
27+
We are thrilled to announce the latest release of Infrahub, version *0.16.3*!
28+
29+
This release focuses largely on bug fixes and is driven by our Beta Test users,
30+
and as always we greatly appreciate their feedback and time!
31+
32+
## Main changes
33+
34+
The complete list of changes can always be found in the `CHANGELOG.md` file in the Infrahub Git repository.
35+
36+
### Removed
37+
38+
- Removed `infrahub.toml` configuration file from Docker builds.
39+
40+
### Fixed
41+
42+
- Save a diff in smaller pieces instead of all at once to prevent out-of-memory error. ([#4511](https://github.com/opsmill/infrahub/issues/4511))
43+
- Fixes exception handling section in the Python SDK batch guide.
44+
45+
## Migration guide
46+
47+
To migrate your instance of Infrahub to the latest version, please run the following commands and restart all instances of Infrahub.
48+
49+
<!-- vale off -->
50+
```shell
51+
infrahub db migrate
52+
infrahub db update-core-schema
53+
```
54+
<!-- vale on -->
55+
56+
> if you are running in docker these commands need to run from the container where Infrahub is installed
57+
58+
### Migration of the demo instance
59+
60+
If you are using the demo environment, you can migrate to the latest version with the following commands
61+
62+
```shell
63+
invoke demo.stop
64+
invoke demo.build
65+
invoke demo.migrate
66+
invoke demo.start
67+
```
68+
69+
If you don't want to keep your data, you can start a clean instance with the following command
70+
71+
```shell
72+
invoke demo.destroy demo.build demo.start demo.load-infra-schema demo.load-infra-data
73+
```
74+
75+
> All data will be lost, please make sure to backup everything you need before running this command.
76+
77+
The repository https://github.com/opsmill/infrahub-demo-edge has also been updated, it's recommended to pull the latest changes into your fork.

docs/sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ const sidebars: SidebarsConfig = {
308308
},
309309
items: [
310310
// 'release-notes/infrahub/release-1_0-DRAFT',
311+
'release-notes/infrahub/release-0_16_3',
311312
'release-notes/infrahub/release-0_16_2',
312313
'release-notes/infrahub/release-0_16_1',
313314
'release-notes/infrahub/release-0_16',

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: 2.7.1
17+
version: 2.7.2
1818
# This is the version number of the application being deployed. This version number should be
1919
# incremented each time you make changes to the application. Versions are not expected to
2020
# follow Semantic Versioning. They should reflect the version the application is using.
2121
# It is recommended to use it with quotes.
22-
appVersion: "0.16.2"
22+
appVersion: "0.16.3"
2323

2424
dependencies:
2525
- name: neo4j

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "infrahub"
3-
version = "0.16.2"
3+
version = "0.16.3"
44
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."
55
authors = ["OpsMill <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)