What's Changed
* base_parser.py: Allow Edk2PathObj to be passed by Javagedes in https://github.com/tianocore/edk2-pytool-library/pull/286
Deprecations
base_parser.py:BaseParser has had two methods (`SetBaseAbsPath()` and `SetPackagePaths()`) have been deprecated in favor of `SetEdk2Path()` and will be removed in a later release. Integration instructions to use the new method are as follows:
python
Previous Way
parser = BaseParser()
parser.SetBaseAbsPath(path)
parser.SetPackagePaths(pps)
python
Integration
parser = BaseParser()
parser.SetEdk2Path(Edk2Path(path, pps))
python
Integrate with no pps
parser = BaseParser()
parser.SetEdk2Path(Edk2Path(path, []))
**Full Changelog**: https://github.com/tianocore/edk2-pytool-library/compare/v0.14.0...v0.14.1