Releases: GoCodeAlone/modular
Releases · GoCodeAlone/modular
Modular v1.12.3
Release v1.12.3
Changes
API Contract Changes
ℹ️ No public API surface changes detected.
# API Contract Diff: modular
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
Raw Contract JSON Diff
{
"package_name": "modular",
"summary": {
"total_breaking_changes": 0,
"total_additions": 0,
"total_modifications": 0,
"has_breaking_changes": false
}
}Modular v1.12.2
Release v1.12.2
Changes
- feat: implement v2 interfaces across modules (v1.12.1) (#85) (4a9fdbf)
- chore: post-release core cleanup for v1.12.1 (#84) (3b42836)
API Contract Changes
ℹ️ No public API surface changes detected.
# API Contract Diff: modular
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
Raw Contract JSON Diff
{
"package_name": "modular",
"summary": {
"total_breaking_changes": 0,
"total_additions": 0,
"total_modifications": 0,
"has_breaking_changes": false
}
}Modular v1.12.1
Release v1.12.1
Changes
- feat: Modular v2 enhancements — 12 gaps + modernization (#83) (d0a62e8)
- Replace realistic-looking DB credentials and hostnames with generic placeholders (#82) (7866c7c)
- feat: reimplement dropped features (reload, health, tenant guard) (#81) (bcb82fb)
API Contract Changes
ℹ️ No public API surface changes detected.
# API Contract Diff: modular
## Summary
- **Breaking Changes**: 0
- **Additions**: 63
- **Modifications**: 0
## ➕ Additions
- **interface**: SlogAdapter - New interface SlogAdapter was added
- **interface**: SecretResolver - New interface SecretResolver was added
- **interface**: Drainable - New interface Drainable was added
- **interface**: ReloadableApp - New interface ReloadableApp was added
- **interface**: PluginWithServices - New interface PluginWithServices was added
- **interface**: MetricsProvider - New interface MetricsProvider was added
- **interface**: Reloadable - New interface Reloadable was added
- **interface**: PluginWithHooks - New interface PluginWithHooks was added
- **interface**: PhaseAware - New interface PhaseAware was added
- **interface**: MetricsCollector - New interface MetricsCollector was added
- **interface**: TenantGuard - New interface TenantGuard was added
- **interface**: HealthProvider - New interface HealthProvider was added
- **interface**: Plugin - New interface Plugin was added
- **interface**: ReloadOrchestrator - New interface ReloadOrchestrator was added
- **interface**: ContractVerifier - New interface ContractVerifier was added
- **type**: AggregateHealthService - New type AggregateHealthService was added
- **type**: ConfigDiff - New type ConfigDiff was added
- **type**: HealthReport - New type HealthReport was added
- **type**: HealthStatus - New type HealthStatus was added
- **type**: AggregatedHealth - New type AggregatedHealth was added
- **type**: FieldChange - New type FieldChange was added
- **type**: Severity - New type Severity was added
- **type**: ReloadTrigger - New type ReloadTrigger was added
- **type**: StandardTenantGuard - New type StandardTenantGuard was added
- **type**: TenantGuardConfig - New type TenantGuardConfig was added
- **type**: TenantViolation - New type TenantViolation was added
- **type**: AppPhase - New type AppPhase was added
- **type**: ConfigChange - New type ConfigChange was added
- **type**: ContractViolation - New type ContractViolation was added
- **type**: ReloadRequest - New type ReloadRequest was added
- **type**: ViolationType - New type ViolationType was added
- **type**: HealthServiceOption - New type HealthServiceOption was added
- **type**: TenantGuardMode - New type TenantGuardMode was added
- **type**: StandardContractVerifier - New type StandardContractVerifier was added
- **type**: TenantGuardOption - New type TenantGuardOption was added
- **type**: ServiceDefinition - New type ServiceDefinition was added
- **type**: ChangeType - New type ChangeType was added
- **type**: ModuleMetrics - New type ModuleMetrics was added
- **method**: StdApplication.Phase - New method Phase was added to type StdApplication
- **method**: StdApplication.CollectAllMetrics - New method CollectAllMetrics was added to type StdApplication
- **method**: StdApplication.RequestReload - New method RequestReload was added to type StdApplication
- **method**: EnhancedServiceRegistry.RegisterServiceForModule - New method RegisterServiceForModule was added to type EnhancedServiceRegistry
- **method**: EnhancedServiceRegistry.OnServiceReady - New method OnServiceReady was added to type EnhancedServiceRegistry
- **function**: GetTypedService - New function GetTypedService was added
- **function**: RegisterTypedService - New function RegisterTypedService was added
- **function**: ExpandSecrets - New function ExpandSecrets was added
- **variable**: ErrReloadStopped - New variable ErrReloadStopped was added
- **variable**: ErrReloadTimeout - New variable ErrReloadTimeout was added
- **variable**: ErrTenantContextMissing - New variable ErrTenantContextMissing was added
- **variable**: ErrReloadChannelFull - New variable ErrReloadChannelFull was added
- **variable**: ErrTenantIsolationViolation - New variable ErrTenantIsolationViolation was added
- **variable**: ErrDynamicReloadNotEnabled - New variable ErrDynamicReloadNotEnabled was added
- **variable**: ErrReloadCircuitBreakerOpen - New variable ErrReloadCircuitBreakerOpen was added
- **variable**: ForceHealthRefreshKey - New variable ForceHealthRefreshKey was added
- **variable**: ErrReloadInProgress - New variable ErrReloadInProgress was added
- **constant**: EventTypeConfigReloadCompleted - New constant EventTypeConfigReloadCompleted was added
- **constant**: EventTypeConfigReloadStarted - New constant EventTypeConfigReloadStarted was added
- **constant**: EventTypeTenantViolation - New constant EventTypeTenantViolation was added
- **constant**: EventTypeConfigReloadFailed - New constant EventTypeConfigReloadFailed was added
- **constant**: EventTypeHealthStatusChanged - New constant EventTypeHealthStatusChanged was added
- **constant**: EventTypeConfigReloadNoop - New constant EventTypeConfigReloadNoop was added
- **constant**: EventTypeHealthEvaluated - New constant EventTypeHealthEvaluated was added
- **constant**: EventTypeAppPhaseChanged - New constant EventTypeAppPhaseChanged was added
Raw Contract JSON Diff
{
"package_name": "modular",
"added_items": [
{
"type": "interface",
"item": "HealthProvider",
"description": "New interface HealthProvider was added"
},
{
"type": "interface",
"item": "SlogAdapter",
"description": "New interface SlogAdapter was added"
},
{
"type": "interface",
"item": "MetricsCollector",
"description": "New interface MetricsCollector was added"
},
{
"type": "interface",
"item": "ReloadOrchestrator",
"description": "New interface ReloadOrchestrator was added"
},
{
"type": "interface",
"item": "Plugin",
"description": "New interface Plugin was added"
},
{
"type": "interface",
"item": "Drainable",
"description": "New interface Drainable was added"
},
{
"type": "interface",
"item": "PluginWithHooks",
"description": "New interface PluginWithHooks was added"
},
{
"type": "interface",
"item": "TenantGuard",
"description": "New interface TenantGuard was added"
},
{
"type": "interface",
"item": "ContractVerifier",
"description": "New interface ContractVerifier was added"
},
{
"type": "interface",
"item": "PhaseAware",
"description": "New interface PhaseAware was added"
},
{
"type": "interface",
"item": "MetricsProvider",
"description": "New interface MetricsProvider was added"
},
{
"type": "interface",
"item": "PluginWithServices",
"description": "New interface PluginWithServices was added"
},
{
"type": "interface",
"item": "ReloadableApp",
"description": "New interface ReloadableApp was added"
},
{
"type": "interface",
"item": "Reloadable",
"description": "New interface Reloadable was added"
},
{
"type": "interface",
"item": "SecretResolver",
"description": "New interface SecretResolver was added"
},
{
"type": "type",
"item": "AppPhase",
"description": "New type AppPhase was added"
},
{
"type": "type",
"item": "ChangeType",
"description": "New type ChangeType was added"
},
{
"type": "type",
"item": "ReloadRequest",
"description": "New type ReloadRequest was added"
},
{
"type": "type",
"item": "ConfigDiff",
"description": "New type ConfigDiff was added"
},
{
"type": "type",
"item": "FieldChange",
"description": "New type FieldChange was added"
},
{
"type": "type",
"item": "TenantGuardMode",
"description": "New type TenantGuardMode was added"
},
{
"type": "type",
"item": "ContractViolation",
"description": "New type ContractViolation was added"
},
{
"type": "type",
"item": "HealthServiceOption",
"description": "New type HealthServiceOption was added"
},
{
"type": "type",
"item": "Severity",
"description": "New type Severity was added"
},
{
"type": "type",
"item": "StandardContractVerifier",
"description": "New type StandardContractVerifier was added"
},
{
"type": "type",
"item": "AggregatedHealth",
"description": "New type AggregatedHealth was added"
},
{
"type": "type",
"item": "HealthStatus",
"description": "New type HealthStatus was added"
},
{
"type": "type",
"item": "ModuleMetrics",
"description": "New type ModuleMetrics was added"
},
{
"type": "type",
"item": "HealthReport",
"description": "New type HealthReport was added"
},
{
"type": "type",
"item": "TenantGuardConfig",
"description": "New type TenantGuardConfig was added"
},
{
"type": "type",
"item": "TenantViolation",
"description": "New type TenantViolation was added"
},
{
"type": "type",
"item": "AggregateHealthService",
"description": "New type AggregateHealthService was added"
},
{
"type": "type",
"item": "ReloadTrigger",
"description": "New type ReloadTrigger was added"
},
{
"type": "type",
"item": "TenantGuardOption",
"description": "New type TenantGuardOption was added"
},
{
"type": "type",
"item": "StandardTenantGuard",
"description": "New type StandardTenantGuard was added"
},
{
"type": "type",
...scheduler v1.14.0
scheduler modules/scheduler/v1.14.0
Changes
- chore: bump module dependencies to v1.12.2 (#86) (42f5fa5)
- feat: implement v2 interfaces across modules (v1.12.1) (#85) (4a9fdbf)
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/scheduler.jsonRaw Contract JSON Diff
# API Contract Diff: scheduler
## Summary
- **Breaking Changes**: 0
- **Additions**: 2
- **Modifications**: 0
## ➕ Additions
- **method**: SchedulerModule.CollectMetrics - New method CollectMetrics was added to interface SchedulerModule
- **method**: SchedulerModule.PreStop - New method PreStop was added to interface SchedulerModule
scheduler v1.13.0
scheduler modules/scheduler/v1.13.0
Changes
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/scheduler.jsonRaw Contract JSON Diff
# API Contract Diff: scheduler
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
reverseproxy v2.7.0
reverseproxy modules/reverseproxy/v2.7.0
Changes
- chore: bump module dependencies to v1.12.2 (#86) (42f5fa5)
- feat: implement v2 interfaces across modules (v1.12.1) (#85) (4a9fdbf)
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/reverseproxy.jsonRaw Contract JSON Diff
# API Contract Diff: reverseproxy
## Summary
- **Breaking Changes**: 0
- **Additions**: 2
- **Modifications**: 0
## ➕ Additions
- **method**: ReverseProxyModule.PreStop - New method PreStop was added to interface ReverseProxyModule
- **method**: ReverseProxyModule.CollectMetrics - New method CollectMetrics was added to interface ReverseProxyModule
reverseproxy v2.6.0
reverseproxy modules/reverseproxy/v2.6.0
Changes
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/reverseproxy.jsonRaw Contract JSON Diff
# API Contract Diff: reverseproxy
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
logmasker v1.14.0
logmasker modules/logmasker/v1.14.0
Changes
- chore: bump module dependencies to v1.12.2 (#86) (42f5fa5)
- feat: implement v2 interfaces across modules (v1.12.1) (#85) (4a9fdbf)
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/logmasker.jsonRaw Contract JSON Diff
# API Contract Diff: logmasker
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
logmasker v1.13.0
logmasker modules/logmasker/v1.13.0
Changes
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/logmasker.jsonRaw Contract JSON Diff
# API Contract Diff: logmasker
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0
letsencrypt v1.14.0
letsencrypt modules/letsencrypt/v1.14.0
Changes
- chore: bump module dependencies to v1.12.2 (#86) (42f5fa5)
- feat: implement v2 interfaces across modules (v1.12.1) (#85) (4a9fdbf)
API Contract Changes
✅ Additive, backward-compatible changes (minor bump).
Contract diff saved to artifacts/diffs/letsencrypt.jsonRaw Contract JSON Diff
# API Contract Diff: letsencrypt
## Summary
- **Breaking Changes**: 0
- **Additions**: 0
- **Modifications**: 0