Skip to content

Release v4.10.43

Latest

Choose a tag to compare

@github-actions github-actions released this 16 Dec 22:56

🌟 Branch-Based Release Strategy with Conditional Major Increment

πŸ“Š Release Information

  • πŸ”€ Branch: main
  • 🏷️ Version: v4.10.43
  • πŸ“¦ Previous Version: v4.10.42
  • πŸš€ Release Type: main
  • πŸ€– Trigger: push
  • πŸ“ Commit: 6d0ab1baf1dece10152fe7201316fa356aeb9189

🎯 Release Strategy Applied

Main Branch: Conditional major increment (only if minor=0 AND patch=0, otherwise increment patch with overflow logic)

Main Branch Logic (NEW RULE)

  • If minor=0 AND patch=0: Increment major β†’ major+1.0.0
  • If minorβ‰ 0 OR patchβ‰ 0: Keep major, increment patch β†’ major.minor.(patch+1)
  • Overflow handling: If patch > 99 β†’ minor+1, patch=0; if minor > 99 β†’ major+1, minor=0

Feature/Fix Branch Overflow Logic

  • Feature branches: If patch + commits > 99 β†’ patch = 0, minor += 1
  • Fix branches: If minor + commits > 99 β†’ minor = 0, major += 1
  • Cascading overflow: If minor overflows during patch overflow β†’ minor = 0, major += 1

πŸ“¦ Artifacts

  • πŸ“„ Bicep templates compiled to ARM templates
  • πŸ—οΈ Infrastructure deployment files
  • πŸ“‹ Release metadata and documentation

πŸ”— Links

Full Changelog: v4.10.42...v4.10.43