Commit 82edf681 authored by Samuel E. Giddins's avatar Samuel E. Giddins

[Analyzer] Implicitly unlock all local dependencies when installing.

parent 2f0f9465
......@@ -18,6 +18,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[#3912](https://github.com/CocoaPods/CocoaPods/issues/3912)
* Implicitly unlock all local dependencies when installing.
[Samuel Giddins](https://github.com/segiddins)
[#3764](https://github.com/CocoaPods/CocoaPods/issues/3764)
## 0.38.2
......@@ -3966,4 +3970,4 @@ allowing you to automate Xcode related tasks.
[4]: https://github.com/CocoaPods/Xcodeproj
[5]: https://github.com/tomaz/appledoc
[6]: https://github.com/CocoaPods/CocoaPods/compare/0.5.1...0.6.0
[7]: https://github.com/CocoaPods/CocoaPods/compare/0.3.10...0.5.0
\ No newline at end of file
[7]: https://github.com/CocoaPods/CocoaPods/compare/0.3.10...0.5.0
......@@ -397,6 +397,7 @@ module Pod
else
pods_to_update = result.podfile_state.changed + result.podfile_state.deleted
pods_to_update += update[:pods] if update_mode == :selected
pods_to_update += podfile.dependencies.select(&:local?).map(&:name)
LockingDependencyAnalyzer.generate_version_locking_dependencies(lockfile, pods_to_update)
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment