Skip to content

Commit 0a1d3eb

Browse files
authored
Merge pull request #530 from opsmill/develop
Merge develop into infrahub-develop
2 parents 5349382 + ac60214 commit 0a1d3eb

33 files changed

+2659
-1168
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
with:
139139
submodules: true
140140
- name: Install NodeJS
141-
uses: actions/setup-node@v4
141+
uses: actions/setup-node@v5
142142
with:
143143
node-version: 20
144144
cache: 'npm'
@@ -165,7 +165,7 @@ jobs:
165165
with:
166166
submodules: true
167167
- name: Set up Python
168-
uses: actions/setup-python@v5
168+
uses: actions/setup-python@v6
169169
with:
170170
python-version: "3.12"
171171
- name: "Setup Python environment"
@@ -229,7 +229,7 @@ jobs:
229229
- name: "Check out repository code"
230230
uses: "actions/checkout@v5"
231231
- name: Set up Python ${{ matrix.python-version }}
232-
uses: actions/setup-python@v5
232+
uses: actions/setup-python@v6
233233
with:
234234
python-version: ${{ matrix.python-version }}
235235
- name: "Setup environment"
@@ -278,7 +278,7 @@ jobs:
278278
- name: "Check out repository code"
279279
uses: "actions/checkout@v5"
280280
- name: Set up Python
281-
uses: actions/setup-python@v5
281+
uses: actions/setup-python@v6
282282
with:
283283
python-version: "3.12"
284284
- name: "Set environment variables"
@@ -331,7 +331,7 @@ jobs:
331331
# submodules: true
332332

333333
# - name: Set up Python
334-
# uses: actions/setup-python@v5
334+
# uses: actions/setup-python@v6
335335
# with:
336336
# python-version: "3.12"
337337

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/labeler@v5.0.0
15+
- uses: actions/labeler@v6.0.1
1616
with:
1717
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1818
sync-labels: true

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
needs: prepare-environment
3838
steps:
3939
- name: "Set up Python"
40-
uses: "actions/setup-python@v5"
40+
uses: "actions/setup-python@v6"
4141
with:
4242
python-version: "3.12"
4343

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
submodules: true
2727

2828
- name: "Set up Python"
29-
uses: "actions/setup-python@v5"
29+
uses: "actions/setup-python@v6"
3030
with:
3131
python-version: "3.12"
3232

CHANGELOG.md

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

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

14+
## [1.14.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.14.0) - 2025-08-26
15+
16+
### Added
17+
18+
- Added `infrahubctl repository init` command to allow the initialization of an Infrahub repository using [infrahub-template](https://github.com/opsmill/infrahub-template). ([#466](https://github.com/opsmill/infrahub-sdk-python/issues/466))
19+
- add support for NumberPool attributes in generated protocols
20+
21+
### Fixed
22+
23+
- Fix value lookup using a flat notation like `foo__bar__value` with relationships of cardinality one ([#6882](https://github.com/opsmill/infrahub-sdk-python/issues/6882))
24+
- Create a new batch while fetching relationships instead of using the reusing the same one.
25+
- Update internal calls to `count` to include the branch parameter so that the query is performed on the correct branch
26+
- Update offset in process_page() which was causing a race condition in rare case. ([#514](https://github.com/opsmill/infrahub-sdk-python/pull/514))
27+
1428
## [1.13.5](https://github.com/opsmill/infrahub-sdk-python/tree/v1.13.5) - 2025-07-23
1529

1630
### Fixed

changelog/+add_numberpool_support_protocols.added.md

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

changelog/+batch.fixed.md

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

changelog/+branch-in-count.fixed.md

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

changelog/236.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Respect default branch for client.query_gql_query() and client.set_context_properties()

changelog/374.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix branch creation with the sync client while setting `wait_until_completion=False`

0 commit comments

Comments
 (0)