Skip to content

Commit 353a3a4

Browse files
chore(main): release 1.8.0
1 parent 698f15c commit 353a3a4

4 files changed

Lines changed: 40 additions & 3 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.7.0"
2+
".": "1.8.0"
33
}

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Changelog
22

3+
## [1.8.0](https://github.com/equinor/dm-job/compare/v1.7.0...v1.8.0) (2026-08-17)
4+
5+
6+
### Features
7+
8+
* **azure:** FastAPI handlers map Azure errors to 502/503 ([2773f73](https://github.com/equinor/dm-job/commit/2773f7386f3bde5fa8d27e2ee8522e04185f7bc8))
9+
* **azure:** local GUID validation in _check_required_config ([cbac430](https://github.com/equinor/dm-job/commit/cbac4307d2402a693f3a1d81f4761e6ed13c0fdf))
10+
* **azure:** typed AzureHandlerProvisionError for non-auth ARM failures ([e1c4140](https://github.com/equinor/dm-job/commit/e1c4140c74a174300a1a5af2967cbd2fdf40bdd7))
11+
12+
13+
### Bug Fixes
14+
15+
* **azure:** clamp compute resources instead of silently defaulting ([12d3c1c](https://github.com/equinor/dm-job/commit/12d3c1ca0b0b36b0e61a31e4794236bf712301ea))
16+
* **azure:** cover all ACI container states in progress() match ([30c7aef](https://github.com/equinor/dm-job/commit/30c7aeffebb92348d2255cdbfdf392b380690625))
17+
* **azure:** proper error/status handling in remove() ([7291ba2](https://github.com/equinor/dm-job/commit/7291ba23f38c0b8dc6b01664b116ec9622db59ce))
18+
* **azure:** raise TimeoutError when start() poll never reaches Running ([9ff7717](https://github.com/equinor/dm-job/commit/9ff7717fa9dcd7d73279ed31f3a1950f3691beab))
19+
* **azure:** treat negative container exit codes as FAILED ([c221792](https://github.com/equinor/dm-job/commit/c2217927aaa2062ffdd6bd9599f450edeb93dfb1))
20+
21+
22+
### Performance Improvements
23+
24+
* **azure:** single ARM fetch in progress(), skip logs until useful ([b43d16d](https://github.com/equinor/dm-job/commit/b43d16d9499d1af484994cef662cc47203beb390))
25+
26+
27+
### Miscellaneous Chores
28+
29+
* **main:** release 1.7.0 ([19d8ce5](https://github.com/equinor/dm-job/commit/19d8ce5f452d790096420a87552917da6d5bf69d))
30+
* nudge github merge check ([9122cbb](https://github.com/equinor/dm-job/commit/9122cbba21d81f71cba9da3f93a898cc569e8238))
31+
32+
33+
### Code Refactoring
34+
35+
* **azure:** drop print() duplicates of logger calls ([2a52082](https://github.com/equinor/dm-job/commit/2a520823905ebc03bce8b2fea4ace5bb1fd9ea36))
36+
* **azure:** drop racy logger.setLevel toggles ([7610d3e](https://github.com/equinor/dm-job/commit/7610d3ee99e36e5a0fbb73aa6537773bdba77bb8))
37+
* **azure:** lazy credential init + typed auth/config errors ([51ccd5a](https://github.com/equinor/dm-job/commit/51ccd5a6c7fc2cf8657b31c29dd1347071bd53f8))
38+
* **azure:** structured job_uid logging via LoggerAdapter ([7fca842](https://github.com/equinor/dm-job/commit/7fca842a4561ea47a650529329836af2ad73561b))
39+
340
## [1.7.0](https://github.com/equinor/dm-job/compare/v1.6.9...v1.7.0) (2026-08-17)
441

542

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dm-job"
3-
version = "1.7.0" # x-release-please-version
3+
version = "1.8.0" # x-release-please-version
44
description = "REST API running jobs in development framework"
55
authors = [ {name = "Equinor", email = "fg_team_hermes@equinor.com"}]
66
license = { text = "MIT" }

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def create_app():
4242
app = FastAPI(
4343
title="Data Modelling Job API",
4444
responses=responses,
45-
version="1.7.0", # x-release-please-version
45+
version="1.8.0", # x-release-please-version
4646
description="REST API used with the Data Modelling framework to schedule jobs",
4747
exception_handlers={
4848
RequestValidationError: validation_exception_handler,

0 commit comments

Comments
 (0)