Skip to content

Release v1.2.0: Promote preview to main#42

Open
StreckerCM wants to merge 26 commits intomasterfrom
preview
Open

Release v1.2.0: Promote preview to main#42
StreckerCM wants to merge 26 commits intomasterfrom
preview

Conversation

@StreckerCM
Copy link
Copy Markdown
Owner

Summary

Promote previewmain with all recent work.

Included Changes

Pipeline

feature/* → development → preview → main
                                     ↑ this PR

Test plan

  • All changes passed through development and preview via reviewed PRs
  • Final manual smoke test before merge

StreckerCM and others added 14 commits February 2, 2026 15:23
* Add PR comment requirements to personas documentation

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

* docs: Add CLAUDE.md and complete missing documentation sections

- Add CLAUDE.md for Claude Code guidance (consistent with other projects)
- Add "Persona Combinations (Sequential)" section to PERSONAS.md
- Add "Full 11-Persona Rotation (Comprehensive)" section to ROTATING_FEATURE.md

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

---------

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Happy <yesreply@happy.engineering>
Issue #9: Extracted common COF coefficient parsing into ParseCOFCoefficients()
- Eliminated duplicate code between EMM and standard COF parsing
- Added spherical harmonic validation (degree >= 1, order between 0 and degree)
- Fixed file header comment (FileReader.cs → ModelReader.cs)

Issue #12: Added comprehensive unit tests for ModelReader
- Tests for WMM2015, WMM2020, WMM2025, WMMHR file parsing
- Tests for error handling (null path, file not found, unsupported type)
- Tests for coefficient validation and model structure
- Tests for CheckStringForModel extension method
- Tests for spherical harmonic validation

All 57 tests pass (56 pass, 1 skipped for missing DAT file).

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Reduce ModelReader code duplication and add unit tests
- Add XML documentation comments to all public APIs across GeoMagSharp library
- Replace BGGM/BGS attributions with NOAA WMM references
- Fix exception class documentation (formatting and inaccurate descriptions)
- Fix Longitude copy constructor parameter type (Latitude -> Longitude)
- Fix MagneticModel copy constructor copying from self instead of other
- Fix Distance.ToString returning "mi" for kilometer instead of "km"
- Clean up file headers (trailing whitespace, incorrect filenames, empty fields)
- Update README.md credits

Closes #11
Added Tools sections to 8 personas:
- #2 PROJECT_MANAGER: /verification-before-completion
- #3 UI_UX_DESIGNER: /frontend-design
- #4 UI_IMPLEMENTER: /frontend-design
- #5 IMPLEMENTER: /brainstorming, /test-driven-development
- #7 TESTER: /test-driven-development, /systematic-debugging
- #8 DEBUGGER: /systematic-debugging
- #9 REVIEWER: /code-review, /receiving-code-review
- #10 SECURITY_AUDITOR: /code-review

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Happy <yesreply@happy.engineering>
Replace monolithic build.yml with 3 focused workflows:\n- build.yml: dev CI for development/feature branches (test on failure, 3-day retention)\n- preview-release.yml: WiX MSI + GitHub Pre-release (90-day retention)\n- production-release.yml: WiX MSI + GitHub Release (90-day retention)\n\nVersion managed via Version.props, branch triggers updated for 4-branch flow.
* ci: Standardize CI/CD - split into 3 workflows with artifact retention

- Split single build.yml into build, preview-release, production-release
- Dev builds: test results only on failure (3-day retention), no build artifacts
- Preview: MSI + GitHub Pre-release (90-day retention)
- Production: MSI + GitHub Release (90-day retention)
- Add development branch to pipeline: feature/* -> development -> preview -> master

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

* ci: Add Claude Code permissions, slim CLAUDE.md

- CLAUDE.md: 129 → 80 lines (Ralph Loop moved to @refs, architecture in AGENTS.md)
- New .claude/settings.json with scoped read/edit/bash permissions
- VS 2022 full-path MSBuild/vstest fallback rules
- Add Session Start Protocol for cross-session continuity
- .gitignore: track .claude/settings.json, ignore local files

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

* ci: Trim ROTATING_FEATURE.md - remove verbose examples

Reduced from ~190 to ~70 lines by removing project-specific examples
that duplicated the template with filled-in brackets. Kept standard
and compact rotation variants and commit/PR format reference.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

---------

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Happy <yesreply@happy.engineering>
Add async versions of all long-running operations (model reading, calculations, file saving) with StatusStrip progress bar, Cancel button, Escape key cancellation, auto-clearing status messages with model names, and 20 new async unit tests. Fix 3 pre-existing bugs in Load Model workflow. Closes #24.
Promote development to preview
Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
chore: Bump version to 1.2.0
@StreckerCM StreckerCM changed the title Release: Promote preview to main Release v1.2.0: Promote preview to main Feb 13, 2026
StreckerCM and others added 12 commits February 13, 2026 17:31
Extract GeoMagSharp library into standalone NuGet package
(StreckerCM/GeoMagSharp) and consume it as a PackageReference.

- Remove GeoMagSharp and GeoMagSharp-UnitTests projects from solution
- Replace ProjectReference with PackageReference to GeoMagSharp 1.4.0
- Add nuget.config with local feed for development testing
- Simplify CI workflows: remove GeoMagSharp AssemblyInfo updates,
  remove test steps (tests now live in GeoMagSharp repo),
  change build platform from Mixed Platforms to x86

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
GeoMagSharp 1.4.0 is published to NuGet.org, local feed no longer needed.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Update solution structure, dependencies, and architecture diagram
to reflect GeoMagSharp library now consumed via NuGet package.
Add note and links to the standalone GeoMagSharp repository.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Add recommended Claude model (Opus/Sonnet/Haiku) to each of the 11
personas based on a 3-tier strategy:
- Judgment (Opus): Reviewer, Security Auditor
- Execution (Sonnet): Implementer, Tester, UI/UX, etc.
- Coordination (Haiku): Project Manager, Documenter, Business Analyst

Annotate all rotation tables (6-persona, 4-persona, 11-persona) with
model tags. Add Model Hints section explaining rationale and Task tool
usage. Update custom persona template to include Model field.

Saves ~60-70% on token costs while keeping quality where it matters.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Extract GeoMagSharp into standalone NuGet package (#38)
Only run CI when code merges to development, not on every push
to feature branches or PR updates. Saves unnecessary Actions minutes.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
[skip ci] Promote CI/CD fixes to preview
- Update GeoMagSharp NuGet package 1.4.0 → 1.5.0 (adds uncertainty estimation)
- Bump GUI version to 1.3.0 in Version.props
- Add versioning rules to CLAUDE.md (bump after release, clean stale previews)
- Update CLAUDE.md architecture/build/deps to reflect post-repo-split state

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Promotion flow: feature/* → development → preview → master

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bump GeoMagSharp to 1.5.0, update CLAUDE.md
Release v1.3.0 - GeoMagSharp 1.5.0 upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant