Skip to content

Commit 1d6783a

Browse files
committed
prep release 1.2.11
1 parent 6944dc9 commit 1d6783a

File tree

8 files changed

+70
-6
lines changed

8 files changed

+70
-6
lines changed

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: 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: 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_11',
221222
'release-notes/infrahub/release-1_2_9',
222223
'release-notes/infrahub/release-1_2_8',
223224
'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)