Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [1.5.0] - 2026-04-18

### Added
- Added strict grouped `chains` artifact reuse for compatible local source JSON so repeated family
reruns can reuse already-produced evidence truthfully instead of recollecting every backing
command.
- Added YAML-backed Azure DevOps pipeline evidence so `devops` and `chains deployment-path` can
admit repo-backed Azure service connections and variable groups from real Azure Repos pipeline
definitions and same-repo local templates.

### Changed
- Batched the expensive Graph fanout behind `role-trusts`, which keeps live grouped `chains`
families responsive on fresh runs instead of stalling on serial trust-edge collection.
- Tightened reduced-view and maintenance-mode truthfulness across `permissions`,
`tokens-credentials`, `credential-path`, `deployment-path`, `functions`, `arm-deployments`, and
`resource-trusts` so reduced or partial visibility reads as exactly that instead of broader proof.
- Bumped the published package and output schema version to `1.5.0` for the completed minor
release boundary.

## [1.4.0] - 2026-04-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "azurefox"
version = "1.4.0"
version = "1.5.0"
description = "AzureFox - offensive-focused Azure situational awareness CLI"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/azurefox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["__version__"]

__version__ = "1.4.0"
__version__ = "1.5.0"
2 changes: 1 addition & 1 deletion src/azurefox/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from pydantic import BaseModel, Field, model_validator

SCHEMA_VERSION = "1.4.0"
SCHEMA_VERSION = "1.5.0"


class OutputMode(StrEnum):
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/acr.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"metadata": {
"command": "acr",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/aks.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"metadata": {
"command": "aks",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/api-mgmt.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"metadata": {
"command": "api-mgmt",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/app-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"metadata": {
"command": "app-services",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/application-gateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"metadata": {
"command": "application-gateway",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/arm-deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"command": "arm-deployments",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/auth-policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"metadata": {
"command": "auth-policies",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/automation.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "automation",
"generated_at": "<generated_at>",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/container-apps.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "container-apps",
"generated_at": "<generated_at>",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/container-instances.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "container-instances",
"generated_at": "<generated_at>",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/cross-tenant.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"command": "cross-tenant",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/databases.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"metadata": {
"command": "databases",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/devops.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "devops",
"generated_at": "<generated_at>",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/dns.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"metadata": {
"command": "dns",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"command": "endpoints",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/env-vars.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"command": "env-vars",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/functions.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"metadata": {
"command": "functions",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/inventory.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "inventory",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/keyvault.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"command": "keyvault",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/lighthouse.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"command": "lighthouse",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/managed-identities.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "managed-identities",
"generated_at": "2026-04-12T04:41:01.427084Z",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/network-effective.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"command": "network-effective",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/network-ports.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"metadata": {
"command": "network-ports",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/nics.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"metadata": {
"command": "nics",
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/permissions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "permissions",
"generated_at": "2026-04-13T04:16:02.407341Z",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/principals.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"command": "principals",
"devops_organization": null,
"generated_at": "2026-04-12T18:56:06.240867Z",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/privesc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"command": "privesc",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/rbac.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "rbac",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/resource-trusts.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"command": "resource-trusts",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/role-trusts.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "role-trusts",
"generated_at": "2026-04-13T04:32:36.867098Z",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/snapshots-disks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"metadata": {
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"command": "snapshots-disks",
"generated_at": "<generated_at>",
"tenant_id": "11111111-1111-1111-1111-111111111111",
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/storage.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"command": "storage",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/tokens-credentials.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"command": "tokens-credentials",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/vms.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"command": "vms",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/vmss.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"command": "vmss",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/whoami.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"command": "whoami",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": "fixture"
Expand Down
2 changes: 1 addition & 1 deletion tests/golden/workloads.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"command": "workloads",
"devops_organization": null,
"generated_at": "<generated_at>",
"schema_version": "1.4.0",
"schema_version": "1.5.0",
"subscription_id": "22222222-2222-2222-2222-222222222222",
"tenant_id": "11111111-1111-1111-1111-111111111111",
"token_source": null
Expand Down
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


def test_schema_version() -> None:
assert SCHEMA_VERSION == "1.4.0"
assert SCHEMA_VERSION == "1.5.0"


def test_collection_issue_scope_defaults_from_context_collector() -> None:
Expand Down
Loading