Skip to content

Commit e7abf9b

Browse files
authored
Merge pull request #6523 from opsmill/prep-release-1.2.11
Prepare release 1.2.11
2 parents 6944dc9 + 52a33ca commit e7abf9b

File tree

10 files changed

+122
-6
lines changed

10 files changed

+122
-6
lines changed

.vale/styles/spelling-exceptions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Infrahub's
6969
infrahubctl
7070
IP
7171
IPAddress
72+
IPHost
7273
IPAM
7374
is_empty
7475
is_ip_within

CHANGELOG.md

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

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

14+
## [Infrahub - v1.2.11](https://github.com/opsmill/infrahub/tree/infrahub-v1.2.11) - 2025-05-23
15+
16+
### Added
17+
18+
- Add the `CoreWeightedPoolResource` generic to better control which resource should be used when allocating from a pool. The higher the weight of the resource, the more likely it is to be selected for allocation.
19+
20+
### Changed
21+
22+
- The scrollbar in the infinite scroll tables, is now only visible when your mouse hovers the table.
23+
24+
### Fixed
25+
26+
- Fix a problem in the logic to calculate a diff that could cause it to quit too early under certain unlikely circumstances
27+
- Fixes an issue where the next page of data was loaded even when the infinite scroll table wasn't scrolled.
28+
1429
## [Infrahub - v1.2.10](https://github.com/opsmill/infrahub/tree/infrahub-v1.2.10) - 2025-05-13
1530

1631
### Added

changelog/+diff_batch_bug.fixed.md

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

changelog/+pool_weighted_allocation.added.md

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

changelog/infinite-scroll.fixed.md

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: Release 1.2.10
3+
---
4+
<table>
5+
<tbody>
6+
<tr>
7+
<th>Release Number</th>
8+
<td>1.2.10</td>
9+
</tr>
10+
<tr>
11+
<th>Release Date</th>
12+
<td>May 14th, 2025</td>
13+
</tr>
14+
<tr>
15+
<th>Release Codename</th>
16+
<td>Chicago, Patch #10</td>
17+
</tr>
18+
<tr>
19+
<th>Tag</th>
20+
<td>[infrahub-v1.2.10](https://github.com/opsmill/infrahub/releases/tag/infrahub-v1.2.10)</td>
21+
</tr>
22+
</tbody>
23+
</table>
24+
25+
# Release 1.2.10
26+
27+
This release brings some changes and bug-fixes to resolve issues found in Infrahub v1.2.9 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+
### Added
34+
35+
- Added the ability to use alternative value types for all attribute types with computed attributes. For attributes of type IPHost or Dropdown you can now access the `ip` or `label` fields and not only the `value` field. ([#5769](https://github.com/opsmill/infrahub/issues/5769))
36+
- Computed Attribute of kind Jinja will only be recalculated during a schema update if the template itself has been updated.
37+
38+
### Fixed
39+
40+
- Fixes an issue where the signature of a webhook event was calculated wrongly. ([#6323](https://github.com/opsmill/infrahub/issues/6323))
41+
- Display "dissociate" action only if possible on relationships table's row actions
42+
- Fixed an issue where it wasn't possible to have a high number of choices in the Dropdown schema kinds. Previously the payload was limited to 4096 characters.
43+
- Prevent creating duplicate edges on the database when adding a relationship to or deleting a relationship from a node that had its kind or inheritance updated
44+
- Update diff and merge logic to correctly support nodes that have had their kind migrated on a branch## Upgrade guide
45+
46+
Please refer to the Upgrade Guide in the documentation for more information on how to upgrade your Infrahub instance.
47+
48+
https://docs.infrahub.app/guides/upgrade
49+
50+
**After the upgrade, it is strongly recommended to rebase any open branches in Infrahub once the system is online again.**
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Release 1.2.11
3+
---
4+
<table>
5+
<tbody>
6+
<tr>
7+
<th>Release Number</th>
8+
<td>1.2.11</td>
9+
</tr>
10+
<tr>
11+
<th>Release Date</th>
12+
<td>May 23rd, 2025</td>
13+
</tr>
14+
<tr>
15+
<th>Release Codename</th>
16+
<td>Chicago, Patch #11</td>
17+
</tr>
18+
<tr>
19+
<th>Tag</th>
20+
<td>[infrahub-v1.2.11](https://github.com/opsmill/infrahub/releases/tag/infrahub-v1.2.11)</td>
21+
</tr>
22+
</tbody>
23+
</table>
24+
25+
# Release 1.2.11
26+
27+
This release brings some changes and bug-fixes to resolve issues found in Infrahub v1.2.10 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+
### Added
34+
35+
- Add the `CoreWeightedPoolResource` generic to better control which resource should be used when allocating from a pool. The higher the weight of the resource, the more likely it is to be selected for allocation.
36+
37+
### Changed
38+
39+
- The scrollbar in the infinite scroll tables, is now only visible when your mouse hovers the table.
40+
41+
### Fixed
42+
43+
- Fix a problem in the logic to calculate a diff that could cause it to quit too early under certain unlikely circumstances
44+
- Fixes an issue where the next page of data was loaded even when the infinite scroll table wasn't scrolled.
45+
46+
## Upgrade guide
47+
48+
Please refer to the Upgrade Guide in the documentation for more information on how to upgrade your Infrahub instance.
49+
50+
https://docs.infrahub.app/guides/upgrade
51+
52+
**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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ const sidebars: SidebarsConfig = {
218218
slug: 'release-notes/infrahub',
219219
},
220220
items: [
221+
'release-notes/infrahub/release-1_2_11',
222+
'release-notes/infrahub/release-1_2_10',
221223
'release-notes/infrahub/release-1_2_9',
222224
'release-notes/infrahub/release-1_2_8',
223225
'release-notes/infrahub/release-1_2_7',

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.10"
3+
version = "1.2.11"
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"

python_testcontainers/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires-python = ">=3.9"
55

66
[tool.poetry]
77
name = "infrahub-testcontainers"
8-
version = "1.2.10"
8+
version = "1.2.11"
99
description = "Testcontainers instance for Infrahub to easily build integration tests"
1010
authors = ["OpsMill <[email protected]>"]
1111
readme = "README.md"

0 commit comments

Comments
 (0)