Skip to content

Commit 8d80986

Browse files
authored
Merge pull request #96 from TacoRocket/chore/release-1.4.0
chore: prepare v1.4.0 release
2 parents 862f922 + 97ea677 commit 8d80986

40 files changed

Lines changed: 55 additions & 39 deletions

CHANGELOG.md

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

3+
## [1.4.0] - 2026-04-12
4+
5+
### Added
6+
- Shipped the new `compute-control` chain family so AzureFox can join compute footholds to
7+
defended Azure-control follow-on paths in one operator-facing view.
8+
- Added first-class `container-apps` and `container-instances` flat commands so those runtime
9+
surfaces are visible directly instead of only through shared compute follow-on logic.
10+
11+
### Changed
12+
- Tightened `compute-control` admission, mixed-identity handling, terminal wording, and fixture
13+
coverage so live output stays truthful while still surfacing the strongest defended control path.
14+
- Refreshed help text, README chain guidance, fixtures, and golden outputs to match the shipped
15+
chain and container-runtime surface.
16+
- Bumped the published package and output schema version to `1.4.0` for the completed minor
17+
release boundary.
18+
319
## [1.3.0] - 2026-04-08
420

521
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "azurefox"
7-
version = "1.3.0"
7+
version = "1.4.0"
88
description = "AzureFox - offensive-focused Azure situational awareness CLI"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/azurefox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ["__version__"]
44

5-
__version__ = "1.3.0"
5+
__version__ = "1.4.0"

src/azurefox/models/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from pydantic import BaseModel, Field, model_validator
88

9-
SCHEMA_VERSION = "1.3.0"
9+
SCHEMA_VERSION = "1.4.0"
1010

1111

1212
class OutputMode(StrEnum):

tests/golden/acr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"metadata": {
55
"command": "acr",
66
"generated_at": "<generated_at>",
7-
"schema_version": "1.3.0",
7+
"schema_version": "1.4.0",
88
"subscription_id": "22222222-2222-2222-2222-222222222222",
99
"tenant_id": "11111111-1111-1111-1111-111111111111",
1010
"token_source": null

tests/golden/aks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"metadata": {
8080
"command": "aks",
8181
"generated_at": "<generated_at>",
82-
"schema_version": "1.3.0",
82+
"schema_version": "1.4.0",
8383
"subscription_id": "22222222-2222-2222-2222-222222222222",
8484
"tenant_id": "11111111-1111-1111-1111-111111111111",
8585
"token_source": null

tests/golden/api-mgmt.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"metadata": {
5757
"command": "api-mgmt",
5858
"generated_at": "<generated_at>",
59-
"schema_version": "1.3.0",
59+
"schema_version": "1.4.0",
6060
"subscription_id": "22222222-2222-2222-2222-222222222222",
6161
"tenant_id": "11111111-1111-1111-1111-111111111111",
6262
"token_source": null

tests/golden/app-services.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"metadata": {
5757
"command": "app-services",
5858
"generated_at": "<generated_at>",
59-
"schema_version": "1.3.0",
59+
"schema_version": "1.4.0",
6060
"subscription_id": "22222222-2222-2222-2222-222222222222",
6161
"tenant_id": "11111111-1111-1111-1111-111111111111",
6262
"token_source": null

tests/golden/application-gateway.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"metadata": {
119119
"command": "application-gateway",
120120
"generated_at": "<generated_at>",
121-
"schema_version": "1.3.0",
121+
"schema_version": "1.4.0",
122122
"subscription_id": "22222222-2222-2222-2222-222222222222",
123123
"tenant_id": "11111111-1111-1111-1111-111111111111",
124124
"token_source": null

tests/golden/arm-deployments.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"command": "arm-deployments",
121121
"devops_organization": null,
122122
"generated_at": "<generated_at>",
123-
"schema_version": "1.3.0",
123+
"schema_version": "1.4.0",
124124
"subscription_id": "22222222-2222-2222-2222-222222222222",
125125
"tenant_id": "11111111-1111-1111-1111-111111111111",
126126
"token_source": null

0 commit comments

Comments
 (0)