Context
This issue tracks the adaptation of OptimalControl to work with CTModels v0.7.x as part of the breaking change migration.
Related to: control-toolbox/CTModels.jl#247
Objectives
- Adapt OptimalControl code to work with CTModels v0.7.x API
- Integrate CTSolvers v0.2.x as a new dependency
- Update code to use CTSolvers functionality
- Widen compat constraints to support both CTModels 0.6 and 0.7
Version Changes
- Before: OptimalControl v1.1.8-beta
- After: OptimalControl v2.0.0-beta (major version bump)
Major Changes
1. Ecosystem Restructuring
- Integration of new CTSolvers package
- New solver architecture
- Separation of concerns (solvers moved to dedicated package)
2. Breaking Dependency Updates
- CTModels v0.7.x (breaking changes)
- CTDirect v0.18.x (major version bump)
- New dependency: CTSolvers v0.2.x
3. API Changes
- Adaptation to new CTModels API
- Integration of CTSolvers functionality
- Potential breaking changes in user-facing API
Project.toml Changes
# Before
version = "1.1.8-beta"
[compat]
CTDirect = "0.17"
CTFlows = "0.8"
CTModels = "0.6"
CTParser = "0.8"
CTBase = "0.17"
# After
version = "2.0.0-beta"
[compat]
CTDirect = "0.17, 0.18"
CTFlows = "0.8"
CTModels = "0.6, 0.7"
CTParser = "0.8"
CTSolvers = "0.2" # NEW
CTBase = "0.17"
Tasks
Migration Status
Phase 1: CTFlows v0.8.11-beta ✅
Phase 2: CTModels v0.7.0-beta ✅
Phase 3: CTDirect v0.18.0-beta ✅
Phase 3.5: CTSolvers v0.2.0-beta ✅
Phase 4: OptimalControl v2.0.0-beta 🔄 (this issue)
Phase 5: Stabilization ⏳
References
Context
This issue tracks the adaptation of OptimalControl to work with CTModels v0.7.x as part of the breaking change migration.
Related to: control-toolbox/CTModels.jl#247
Objectives
Version Changes
Major Changes
1. Ecosystem Restructuring
2. Breaking Dependency Updates
3. API Changes
Project.toml Changes
Tasks
Migration Status
References