diff --git a/CHANGELOG.md b/CHANGELOG.md index a33d51d..6719a5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add path dependencies by @daimond113 - Inherit pesde-managed scripts from workspace root by @daimond113 - Allow using binaries from workspace root in member packages by @daimond113 +- Add yanking & deprecating by @daimond113 ### Fixed - Install dev packages in prod mode and remove them after use to allow them to be used in scripts by @daimond113 @@ -25,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Remove old includes format compatibility by @daimond113 - Remove data redundacy for workspace package references by @daimond113 +- Remove dependency checks from CLI in publish command in favor of registry checks by @daimond113 ### Performance - Use `Arc` for more efficient cloning of multiple structs by @daimond113 diff --git a/src/cli/commands/publish.rs b/src/cli/commands/publish.rs index a1d3fa5..818a421 100644 --- a/src/cli/commands/publish.rs +++ b/src/cli/commands/publish.rs @@ -9,7 +9,6 @@ use pesde::{ matching_globs, scripts::ScriptName, source::{ - git_index::GitBasedSource, pesde::{specifier::PesdeDependencySpecifier, PesdePackageSource}, specifiers::DependencySpecifiers, traits::{GetTargetOptions, PackageRef, PackageSource, RefreshOptions, ResolveOptions}, @@ -666,25 +665,6 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p ); } - let deps = manifest.all_dependencies().context("dependency conflict")?; - - if let Some((disallowed, _)) = deps.iter().find(|(_, (spec, _))| match spec { - DependencySpecifiers::Pesde(spec) => { - !config.other_registries_allowed.is_allowed_or_same( - source.repo_url().clone(), - gix::Url::try_from(spec.index.as_deref().unwrap()).unwrap(), - ) - } - DependencySpecifiers::Git(spec) => !config.git_allowed.is_allowed(spec.repo.clone()), - #[cfg(feature = "wally-compat")] - DependencySpecifiers::Wally(spec) => !config - .wally_allowed - .is_allowed(gix::Url::try_from(spec.index.as_deref().unwrap()).unwrap()), - _ => false, - }) { - anyhow::bail!("dependency `{disallowed}` is not allowed on this index"); - } - if self.dry_run { fs::write("package.tar.gz", archive).await?;