Skip to content

Release v4.10.36

Choose a tag to compare

@github-actions github-actions released this 12 Dec 14:16
· 7 commits to main since this release

🌟 Branch-Based Release Strategy with Conditional Major Increment

πŸ“Š Release Information

  • πŸ”€ Branch: main
  • 🏷️ Version: v4.10.36
  • πŸ“¦ Previous Version: v4.10.35
  • πŸš€ Release Type: main
  • πŸ€– Trigger: push
  • πŸ“ Commit: 7f2992a3724a7e43aa14bab089cd8527c8ebf301

🎯 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.35...v4.10.36