sublime_pkg_tools 0.0.27

Package and version management toolkit for Node.js projects with changeset support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
//! Version resolution types and logic for calculating next package versions.
//!
//! **What**: Provides types and logic for resolving package versions based on changesets,
//! including `VersionResolution`, `PackageUpdate`, `UpdateReason`, and the core resolution
//! algorithm that determines which packages need version updates.
//!
//! **How**: Takes a changeset with a version bump type and a list of affected packages,
//! then calculates the next version for each package based on their current version and
//! the bump type. Returns a complete resolution with all updates and their reasons.
//!
//! **Why**: To provide a clear, type-safe representation of version changes before they
//! are applied, enabling dry-run previews, validation, and safe version updates with
//! full traceability of why each package is being updated.
//!
//! # Resolution Process
//!
//! The resolution process follows these steps:
//!
//! 1. **Validation**: Verify all packages in changeset exist and have valid versions
//! 2. **Direct Resolution**: Calculate next versions for packages in the changeset
//! 3. **Update Creation**: Create `PackageUpdate` entries with reasons
//! 4. **Result Assembly**: Return complete `VersionResolution` with all updates
//!
//! # Examples
//!
//! ## Basic Resolution
//!
//! ```rust,ignore
//! use sublime_pkg_tools::version::resolution::{resolve_versions, VersionResolution};
//! use sublime_pkg_tools::types::{Changeset, VersionBump, PackageInfo};
//! use std::collections::HashMap;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut changeset = Changeset::new("main", VersionBump::Minor, vec!["production".to_string()]);
//! changeset.add_package("@myorg/core");
//! changeset.add_package("@myorg/utils");
//!
//! let packages = HashMap::new(); // Load from filesystem
//!
//! let resolution = resolve_versions(&changeset, &packages).await?;
//!
//! for update in &resolution.updates {
//!     println!("{}: {} -> {}",
//!         update.name,
//!         update.current_version,
//!         update.next_version
//!     );
//! }
//! # Ok(())
//! # }
//! ```

use crate::error::{VersionError, VersionResult};
use crate::types::{
    Changeset, CircularDependency, DependencyUpdate, PackageInfo, UpdateReason, Version,
    VersionBump, VersioningStrategy,
};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::path::PathBuf;

/// Result of version resolution operation.
///
/// Contains all packages that will be updated with their new versions and the reasons
/// for each update. This type provides a complete preview of version changes before
/// they are applied to package.json files.
///
/// # Fields
///
/// * `updates` - All packages to be updated with their version changes
/// * `circular_dependencies` - Circular dependencies detected during resolution (if any)
///
/// # Examples
///
/// ```rust,ignore
/// use sublime_pkg_tools::version::resolution::VersionResolution;
///
/// # fn example(resolution: VersionResolution) {
/// println!("Packages to update: {}", resolution.updates.len());
///
/// for update in &resolution.updates {
///     println!("  {}: {} -> {}",
///         update.name,
///         update.current_version,
///         update.next_version
///     );
/// }
///
/// if !resolution.circular_dependencies.is_empty() {
///     println!("Warning: {} circular dependencies detected",
///         resolution.circular_dependencies.len()
///     );
/// }
/// # }
/// ```
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct VersionResolution {
    /// All packages to be updated.
    ///
    /// Each entry contains the package name, current version, next version,
    /// and the reason for the update.
    pub updates: Vec<PackageUpdate>,

    /// Circular dependencies detected (if any).
    ///
    /// Contains cycles in the dependency graph. Empty if no circular
    /// dependencies were found.
    pub circular_dependencies: Vec<CircularDependency>,
}

impl VersionResolution {
    /// Creates a new empty version resolution.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use sublime_pkg_tools::version::VersionResolution;
    ///
    /// let resolution = VersionResolution::new();
    /// assert!(resolution.updates.is_empty());
    /// assert!(resolution.circular_dependencies.is_empty());
    /// ```
    #[must_use]
    pub fn new() -> Self {
        Self { updates: Vec::new(), circular_dependencies: Vec::new() }
    }

    /// Returns whether any packages will be updated.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use sublime_pkg_tools::version::VersionResolution;
    ///
    /// let resolution = VersionResolution::new();
    /// assert!(!resolution.has_updates());
    /// ```
    #[must_use]
    pub fn has_updates(&self) -> bool {
        !self.updates.is_empty()
    }

    /// Returns the number of packages to be updated.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use sublime_pkg_tools::version::VersionResolution;
    ///
    /// let resolution = VersionResolution::new();
    /// assert_eq!(resolution.update_count(), 0);
    /// ```
    #[must_use]
    pub fn update_count(&self) -> usize {
        self.updates.len()
    }

    /// Returns whether circular dependencies were detected.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use sublime_pkg_tools::version::VersionResolution;
    ///
    /// let resolution = VersionResolution::new();
    /// assert!(!resolution.has_circular_dependencies());
    /// ```
    #[must_use]
    pub fn has_circular_dependencies(&self) -> bool {
        !self.circular_dependencies.is_empty()
    }

    /// Adds a package update to the resolution.
    ///
    /// This is an internal helper method used during resolution building.
    ///
    /// # Arguments
    ///
    /// * `update` - The package update to add
    pub(crate) fn add_update(&mut self, update: PackageUpdate) {
        self.updates.push(update);
    }

    /// Adds circular dependencies to the resolution.
    ///
    /// This is an internal helper method used during resolution building.
    ///
    /// # Arguments
    ///
    /// * `circular` - The circular dependencies to add
    ///
    /// # Note
    ///
    /// This method is used to add circular dependencies detected during dependency graph
    /// analysis. Circular dependencies are detected by Story 5.3 implementation.
    #[allow(dead_code)]
    pub(crate) fn add_circular_dependencies(&mut self, circular: Vec<CircularDependency>) {
        self.circular_dependencies.extend(circular);
    }
}

impl Default for VersionResolution {
    fn default() -> Self {
        Self::new()
    }
}

/// A single package version update in the resolution.
///
/// Contains all information about a package that will receive a version update,
/// including the current version, next version, and why the update is happening.
///
/// # Fields
///
/// * `name` - Package name (e.g., "@myorg/core")
/// * `path` - Absolute path to package directory
/// * `current_version` - Current version from package.json
/// * `next_version` - Next version after applying the bump
/// * `reason` - Why this package is being updated
/// * `dependency_updates` - Dependency version updates in this package (populated by propagation)
///
/// # Examples
///
/// ```rust,ignore
/// use sublime_pkg_tools::version::resolution::{PackageUpdate, UpdateReason};
/// use sublime_pkg_tools::types::Version;
/// use std::path::PathBuf;
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let update = PackageUpdate {
///     name: "@myorg/core".to_string(),
///     path: PathBuf::from("/workspace/packages/core"),
///     current_version: Version::parse("1.2.3")?,
///     next_version: Version::parse("1.3.0")?,
///     reason: UpdateReason::DirectChange,
///     dependency_updates: vec![],
/// };
///
/// println!("{}: {} -> {}",
///     update.name,
///     update.current_version,
///     update.next_version
/// );
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct PackageUpdate {
    /// Package name (e.g., "@myorg/core").
    pub name: String,

    /// Absolute path to package directory.
    pub path: PathBuf,

    /// Current version (from package.json).
    pub current_version: Version,

    /// Next version after bump.
    pub next_version: Version,

    /// Why this package is being updated.
    pub reason: UpdateReason,

    /// Dependency version updates in this package.
    ///
    /// This field is populated during dependency propagation (Story 5.5).
    /// It contains updates to dependency version specs in package.json.
    pub dependency_updates: Vec<DependencyUpdate>,
}

impl PackageUpdate {
    /// Creates a new package update.
    ///
    /// # Arguments
    ///
    /// * `name` - Package name
    /// * `path` - Absolute path to package directory
    /// * `current_version` - Current version from package.json
    /// * `next_version` - Next version after bump
    /// * `reason` - Why this package is being updated
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// use sublime_pkg_tools::version::resolution::{PackageUpdate, UpdateReason};
    /// use sublime_pkg_tools::types::Version;
    /// use std::path::PathBuf;
    ///
    /// # fn example() -> Result<(), Box<dyn std::error::Error>> {
    /// let update = PackageUpdate::new(
    ///     "@myorg/core".to_string(),
    ///     PathBuf::from("/workspace/packages/core"),
    ///     Version::parse("1.2.3")?,
    ///     Version::parse("1.3.0")?,
    ///     UpdateReason::DirectChange,
    /// );
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn new(
        name: String,
        path: PathBuf,
        current_version: Version,
        next_version: Version,
        reason: UpdateReason,
    ) -> Self {
        Self { name, path, current_version, next_version, reason, dependency_updates: Vec::new() }
    }

    /// Returns whether this is a direct change from the changeset.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// use sublime_pkg_tools::version::resolution::{PackageUpdate, UpdateReason};
    ///
    /// # fn example(update: PackageUpdate) {
    /// if update.is_direct_change() {
    ///     println!("Direct change: {}", update.name);
    /// } else {
    ///     println!("Propagated change: {}", update.name);
    /// }
    /// # }
    /// ```
    #[must_use]
    pub fn is_direct_change(&self) -> bool {
        matches!(self.reason, UpdateReason::DirectChange)
    }

    /// Returns whether this is a propagated change from a dependency.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// use sublime_pkg_tools::version::resolution::PackageUpdate;
    ///
    /// # fn example(update: PackageUpdate) {
    /// if update.is_propagated() {
    ///     println!("Propagated from dependency update");
    /// }
    /// # }
    /// ```
    #[must_use]
    pub fn is_propagated(&self) -> bool {
        matches!(self.reason, UpdateReason::DependencyPropagation { .. })
    }

    /// Adds a dependency update to this package update.
    ///
    /// This is used during dependency propagation to track changes in dependency
    /// version specifications when a package is updated due to propagation.
    ///
    /// # Arguments
    ///
    /// * `dep_update` - The dependency update to add
    pub(crate) fn add_dependency_update(&mut self, dep_update: DependencyUpdate) {
        self.dependency_updates.push(dep_update);
    }
}

/// Resolves versions for packages in a changeset.
///
/// This is the core resolution function that calculates next versions for all packages
/// in the changeset based on their current versions and the bump type.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package name to package info (with current versions)
/// * `strategy` - Versioning strategy (independent or unified)
///
/// # Returns
///
/// Returns a `VersionResolution` containing all package updates or an error if:
/// - A package in the changeset doesn't exist in the packages map
/// - A package has an invalid current version
/// - Version bump fails for any package
///
/// # Errors
///
/// Returns `VersionError::PackageNotFound` if a package in the changeset is not found.
/// Returns `VersionError::InvalidVersion` if a package version cannot be parsed.
/// Returns `VersionError::BumpError` if version bump fails.
///
/// # Examples
///
/// ```rust,ignore
/// use sublime_pkg_tools::version::resolution::resolve_versions;
/// use sublime_pkg_tools::types::{Changeset, VersionBump, VersioningStrategy};
/// use std::collections::HashMap;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let mut changeset = Changeset::new("main", VersionBump::Minor, vec!["production".to_string()]);
/// changeset.add_package("@myorg/core");
///
/// let packages = HashMap::new(); // Load from filesystem
///
/// let resolution = resolve_versions(
///     &changeset,
///     &packages,
///     VersioningStrategy::Independent,
/// ).await?;
///
/// for update in &resolution.updates {
///     println!("{}: {} -> {}",
///         update.name,
///         update.current_version,
///         update.next_version
///     );
/// }
/// # Ok(())
/// # }
/// ```
pub async fn resolve_versions(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    strategy: VersioningStrategy,
) -> VersionResult<VersionResolution> {
    // Validate all packages exist
    validate_packages_exist(changeset, packages)?;

    // Resolve based on strategy
    match strategy {
        VersioningStrategy::Independent => resolve_independent(changeset, packages).await,
        VersioningStrategy::Unified => resolve_unified(changeset, packages).await,
    }
}

/// Validates that all packages in the changeset exist in the packages map.
///
/// # Arguments
///
/// * `changeset` - The changeset to validate
/// * `packages` - Map of available packages
///
/// # Errors
///
/// Returns `VersionError::PackageNotFound` if any package in the changeset is not found.
/// Returns error if version parsing or bumping fails.
fn validate_packages_exist(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
) -> VersionResult<()> {
    for package_name in &changeset.packages {
        if !packages.contains_key(package_name) {
            return Err(VersionError::PackageNotFound {
                name: package_name.clone(),
                workspace_root: PathBuf::from("."),
            });
        }
    }
    Ok(())
}

/// Resolves versions with optional prerelease support.
///
/// # What
///
/// Version resolution entry point that supports prerelease configurations.
///
/// # Arguments
///
/// * `changeset` - Changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `strategy` - Versioning strategy (Independent or Unified)
/// * `prerelease_config` - Optional prerelease configuration
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
pub async fn resolve_versions_with_prerelease(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    strategy: VersioningStrategy,
    prerelease_config: Option<&crate::types::prerelease::PrereleaseConfig>,
) -> VersionResult<VersionResolution> {
    // Validate all packages exist
    validate_packages_exist(changeset, packages)?;

    // Resolve based on strategy
    match strategy {
        VersioningStrategy::Independent => {
            resolve_independent_with_prerelease(changeset, packages, prerelease_config).await
        }
        VersioningStrategy::Unified => {
            resolve_unified_with_prerelease(changeset, packages, prerelease_config).await
        }
    }
}

/// Resolves versions using independent strategy.
///
/// Each package is bumped independently based on the changeset bump type.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for all packages in the changeset.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_independent(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    for package_name in &changeset.packages {
        let package_info =
            packages.get(package_name).ok_or_else(|| VersionError::PackageNotFound {
                name: package_name.clone(),
                workspace_root: PathBuf::from("."),
            })?;

        let current_version = package_info.version();
        let next_version = current_version.bump(changeset.bump)?;

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            next_version,
            UpdateReason::DirectChange,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}

/// Resolves versions using unified strategy with prerelease support.
///
/// # What
///
/// All packages are bumped to the same version, with optional prerelease configuration.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `prerelease_config` - Optional prerelease configuration
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for affected packages.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_unified_with_prerelease(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    prerelease_config: Option<&crate::types::prerelease::PrereleaseConfig>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    // Find the highest current version across ALL workspace packages
    let mut highest_version: Option<Version> = None;

    for package_info in packages.values() {
        let current_version = package_info.version();

        highest_version = match highest_version {
            None => Some(current_version),
            Some(ref h) if current_version > *h => Some(current_version),
            Some(h) => Some(h),
        };
    }

    // Bump the highest version with prerelease support
    let unified_next_version = if let Some(version) = highest_version {
        version.bump_with_prerelease(changeset.bump, prerelease_config)?
    } else {
        // No packages - shouldn't happen due to validation, but handle gracefully
        return Ok(resolution);
    };

    // Apply unified version to ALL workspace packages (not just those in changeset)
    // This is the core principle of unified strategy: all packages move together
    for (package_name, package_info) in packages {
        let current_version = package_info.version();

        // Determine update reason: packages in changeset are direct changes,
        // others are unified strategy propagation
        let reason = if changeset.packages.contains(package_name) {
            UpdateReason::DirectChange
        } else {
            UpdateReason::UnifiedStrategy
        };

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            unified_next_version.clone(),
            reason,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}

/// Resolves version updates with automatic prerelease mode inference.
///
/// Similar to `resolve_versions_with_prerelease`, but automatically determines
/// the appropriate prerelease mode (create, increment) based on each package's
/// current version state:
///
/// - If current version is stable → **Create** new prerelease
/// - If current version has same prerelease tag → **Increment**
/// - If current version has different prerelease tag → **Create** new
///
/// This provides a simpler API where only the tag is needed.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `strategy` - Versioning strategy (Independent or Unified)
/// * `prerelease_tag` - Optional prerelease tag (e.g., "alpha", "beta", "rc")
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for affected packages.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
pub async fn resolve_versions_with_prerelease_auto(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    strategy: VersioningStrategy,
    prerelease_tag: Option<&str>,
) -> VersionResult<VersionResolution> {
    // Validate all packages exist
    validate_packages_exist(changeset, packages)?;

    // Resolve based on strategy
    match strategy {
        VersioningStrategy::Independent => {
            resolve_independent_with_prerelease_auto(changeset, packages, prerelease_tag).await
        }
        VersioningStrategy::Unified => {
            resolve_unified_with_prerelease_auto(changeset, packages, prerelease_tag).await
        }
    }
}

/// Resolves versions using independent strategy with prerelease support.
///
/// # What
///
/// Each package is bumped independently, with optional prerelease configuration.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `prerelease_config` - Optional prerelease configuration
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for all packages in the changeset.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_independent_with_prerelease(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    prerelease_config: Option<&crate::types::prerelease::PrereleaseConfig>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    for package_name in &changeset.packages {
        let package_info =
            packages.get(package_name).ok_or_else(|| VersionError::PackageNotFound {
                name: package_name.clone(),
                workspace_root: PathBuf::from("."),
            })?;

        let current_version = package_info.version();

        // Use bump_with_prerelease to support prerelease versions
        let next_version =
            current_version.bump_with_prerelease(changeset.bump, prerelease_config)?;

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            next_version,
            UpdateReason::DirectChange,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}

/// Resolves versions using independent strategy with automatic prerelease mode.
///
/// Each package is bumped individually based on its own version, with
/// automatic prerelease mode inference.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `prerelease_tag` - Optional prerelease tag (e.g., "alpha", "beta", "rc")
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for all packages in the changeset.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_independent_with_prerelease_auto(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    prerelease_tag: Option<&str>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    for package_name in &changeset.packages {
        let package_info =
            packages.get(package_name).ok_or_else(|| VersionError::PackageNotFound {
                name: package_name.clone(),
                workspace_root: PathBuf::from("."),
            })?;

        let current_version = package_info.version();

        // Use bump_with_prerelease_auto for automatic mode inference
        let next_version =
            current_version.bump_with_prerelease_auto(changeset.bump, prerelease_tag)?;

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            next_version,
            UpdateReason::DirectChange,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}

/// Resolves versions using unified strategy with automatic prerelease mode.
///
/// All packages are bumped to the same version, with automatic prerelease
/// mode inference based on the highest version.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
/// * `prerelease_tag` - Optional prerelease tag (e.g., "alpha", "beta", "rc")
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for all packages in the changeset,
/// all using the same next version.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_unified_with_prerelease_auto(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
    prerelease_tag: Option<&str>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    // Find the highest current version across ALL workspace packages
    let mut highest_version: Option<Version> = None;

    for package_info in packages.values() {
        let current_version = package_info.version();

        highest_version = match highest_version {
            None => Some(current_version),
            Some(ref h) if current_version > *h => Some(current_version),
            Some(h) => Some(h),
        };
    }

    // Calculate the unified next version using automatic prerelease mode
    let unified_next_version = if let Some(version) = highest_version {
        version.bump_with_prerelease_auto(changeset.bump, prerelease_tag)?
    } else {
        // No packages, start at 1.0.0 or 1.0.0-{tag}.0
        let base = Version::new(1, 0, 0);
        if let Some(tag) = prerelease_tag {
            base.bump_with_prerelease_auto(VersionBump::None, Some(tag))?
        } else {
            base
        }
    };

    // Apply unified version to ALL workspace packages (not just those in changeset)
    // This is the core principle of unified strategy: all packages move together
    for (package_name, package_info) in packages {
        let current_version = package_info.version();

        // Determine update reason: packages in changeset are direct changes,
        // others are unified strategy propagation
        let reason = if changeset.packages.contains(package_name) {
            UpdateReason::DirectChange
        } else {
            UpdateReason::UnifiedStrategy
        };

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            unified_next_version.clone(),
            reason,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}

/// Resolves versions using unified strategy.
///
/// All packages are bumped to the same version, which is the highest next version
/// among all packages after applying the bump.
///
/// # Arguments
///
/// * `changeset` - The changeset containing packages and bump type
/// * `packages` - Map of package info
///
/// # Returns
///
/// Returns a `VersionResolution` with updates for all packages in the changeset,
/// all using the same next version.
///
/// # Errors
///
/// Returns error if version parsing or bumping fails.
async fn resolve_unified(
    changeset: &Changeset,
    packages: &HashMap<String, PackageInfo>,
) -> VersionResult<VersionResolution> {
    let mut resolution = VersionResolution::new();

    // Find the highest current version across ALL workspace packages
    let mut highest_version: Option<Version> = None;

    for package_info in packages.values() {
        let current_version = package_info.version();

        highest_version = match highest_version {
            Some(ref existing) => {
                if &current_version > existing {
                    Some(current_version)
                } else {
                    highest_version
                }
            }
            None => Some(current_version),
        };
    }

    // Bump the highest version
    let unified_next_version = if let Some(version) = highest_version {
        version.bump(changeset.bump)?
    } else {
        // No packages - shouldn't happen due to validation, but handle gracefully
        return Ok(resolution);
    };

    // Apply unified version to ALL workspace packages (not just those in changeset)
    // This is the core principle of unified strategy: all packages move together
    for (package_name, package_info) in packages {
        let current_version = package_info.version();

        // Determine update reason: packages in changeset are direct changes,
        // others are unified strategy propagation
        let reason = if changeset.packages.contains(package_name) {
            UpdateReason::DirectChange
        } else {
            UpdateReason::UnifiedStrategy
        };

        let update = PackageUpdate::new(
            package_name.clone(),
            package_info.path().to_path_buf(),
            current_version,
            unified_next_version.clone(),
            reason,
        );

        resolution.add_update(update);
    }

    Ok(resolution)
}