Skip to content

Commit f39c3cc

Browse files
authored
Merge pull request #6602 from opsmill/prep-release-1.2.12
Prep release 1.2.12
2 parents fd550ca + 16afe52 commit f39c3cc

File tree

11 files changed

+63
-9
lines changed

11 files changed

+63
-9
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+
## [Infrahub - v1.2.12](https://github.com/opsmill/infrahub/tree/infrahub-v1.2.12) - 2025-06-03
15+
16+
### Fixed
17+
18+
- Remove uniqueness constraint on generic templates to support upsert mutations ([#6478](https://github.com/opsmill/infrahub/issues/6478))
19+
- Add a migration to clean up duplicated data from improper merges of branches containing node schemas with an updated kind or inheritance ([#6502](https://github.com/opsmill/infrahub/issues/6502))
20+
- Update the cypher query that saves a diff to use less memory. ([#6568](https://github.com/opsmill/infrahub/issues/6568))
21+
- Add missing database session instantiations
22+
- Display generic relationships with cardinality one in the object detail view.
23+
- Fixes schema migration to add new attributes, so that it no longer adds that attribute to nodes that have been deleted. Includes a migration to clean up those illegal edges.
24+
1425
## [Infrahub - v1.2.11](https://github.com/opsmill/infrahub/tree/infrahub-v1.2.11) - 2025-05-23
1526

1627
### Added

changelog/+add-missing-sessions.fixed.md

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

changelog/+generic-one.fixed.md

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

changelog/+posthumous-edges.fixed.md

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

changelog/6478.fixed.md

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

changelog/6502.fixed.md

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

changelog/6568.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: Release 1.2.12
3+
---
4+
<table>
5+
<tbody>
6+
<tr>
7+
<th>Release Number</th>
8+
<td>1.2.12</td>
9+
</tr>
10+
<tr>
11+
<th>Release Date</th>
12+
<td>June 3rd, 2025</td>
13+
</tr>
14+
<tr>
15+
<th>Release Codename</th>
16+
<td>Chicago, Patch #12</td>
17+
</tr>
18+
<tr>
19+
<th>Tag</th>
20+
<td>[infrahub-v1.2.12](https://github.com/opsmill/infrahub/releases/tag/infrahub-v1.2.12)</td>
21+
</tr>
22+
</tbody>
23+
</table>
24+
25+
# Release 1.2.12
26+
27+
This release brings some changes and bug-fixes to resolve issues found in Infrahub v1.2.11 and prior.
28+
29+
## Main changes
30+
31+
The complete list of changes can always be found in the `CHANGELOG.md` file in the Infrahub Git repository.
32+
33+
### Fixed
34+
35+
- Remove uniqueness constraint on generic templates to support upsert mutations ([#6478](https://github.com/opsmill/infrahub/issues/6478))
36+
- Add a migration to clean up duplicated data from improper merges of branches containing node schemas with an updated kind or inheritance ([#6502](https://github.com/opsmill/infrahub/issues/6502))
37+
- Update the cypher query that saves a diff to use less memory. ([#6568](https://github.com/opsmill/infrahub/issues/6568))
38+
- Add missing database session instantiations
39+
- Display generic relationships with cardinality one in the object detail view.
40+
- Fixes schema migration to add new attributes, so that it no longer adds that attribute to nodes that have been deleted. Includes a migration to clean up those illegal edges.
41+
42+
## Upgrade guide
43+
44+
Please refer to the Upgrade Guide in the documentation for more information on how to upgrade your Infrahub instance.
45+
46+
https://docs.infrahub.app/guides/upgrade
47+
48+
**After the upgrade, it is strongly recommended to rebase any open branches in Infrahub once the system is online again.**

docs/sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ const sidebars: SidebarsConfig = {
218218
slug: 'release-notes/infrahub',
219219
},
220220
items: [
221+
'release-notes/infrahub/release-1_2_12',
221222
'release-notes/infrahub/release-1_2_11',
222223
'release-notes/infrahub/release-1_2_10',
223224
'release-notes/infrahub/release-1_2_9',

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-server"
3-
version = "1.2.11"
3+
version = "1.2.12"
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)