Ape 0.8.0
Changes
BREAKING CHANGES
Project Refactor
These are changes directly related to the massive project refactor.
Please delete your .build/
folders and your .ape/packages
folder for a cleaner 0.8 migration.
-
refactor!: The default base path for compiling projects is now the project root instead of the contracts folder.
Source IDs now include thecontracts/
prefix everywhere.
Import remappings no longer need/contracts
in the key.
This aligns more with how other frameworks work and how import statements are expected to be. -
refactor!: Import remappings are no longer needed (most of the time!).
Now, it will generate them by default using items from the dependencies.
The source ID change (above) afforded this. -
refactor!: Projects are no longer contextual.
You can create as manyape.Project
objects as you like and use them anywhere. -
refactor!: Dependency system changes.
Now,Dependency
objects are separate from projects and have utilities for managing their installs.
Doproject.dependencies["MyDep"]["1.0.0"].project
to access the project of a local dependency.
Dependency source files are cached differently and allow for better management across your file system. -
refactor!: Config is per-project now.
In order to support having many projects in the root context at once, each project needs to have its own config.
Config also serializes and deserializes from and to.yaml
and is a Pydantic model. -
refactor!: The
.cache
folder inape-solidity
is no longer generated in your projects.
ape-solidity
compiles in a sandbox now instead.
You can delete any lingering.cache
folders on your file system.
As a side-effect, configuring the location of the.cache
folder was removed, and any issues where dependencies were improperly modified in a.cache
folder are resolved. -
refactor!:
ManagerAccessMixin.project_manager
was renamed toManagerAccessMixin.local_project
to reflect that it is no longer a singleton, and it only refers to the project at the current-working directory. -
refactor!:
ape-pm
now defines the non-default dependency and project API implementations, such asGithubDependency
. -
refactor!:
LocalProject
(a subclass ofProjectManager
for projects on the local file-system) now delegates to sub-managers for various tasks, such as.contracts
as a dict-likeContractManager
,.sources
as a dict-likeSourceManager
,.deployments
, etc, simulating objects from theethpm_types.PackageManifest
with higher up functionalities related to local file-system projects.
ProjectManager
is a base class containing factory-like behavior for creatingProjectManager
subclasses, such asLocalProject
orProject
.
Project
is a base that only needs aPackageManifest
to work (thinkape.Project.from_manifest()
).
LocalProject
contains various features for local-projects but for the most part is interoperable with its baseProject
, as the manifest is the root of all the functionality. -
refactor!: CompilerAPI now accepts iterators of source paths and yield contract types.
-
refactor!:
ape pm remove
is nowape pm uninstall
to mirrorape pm install
.
Other
-
refactor!: The Trace API is more defined at the API level (
ape.api.trace
).
ape.types.TraceFrame
andape.types.CallTreeNode
have been removed.
ape-ethereum
only serializes using types fromevm-trace
now.
Enrichments happens at lower-level dict-data and more under-the-hood for performance reasons.
The trace API defines behavior of traces at a very abstract level.
ape-ethereum
implements all rich functionality Ape is known for with its traces.
It is easier to pass along extra arguments toget_transaction_trace
such asdebug_
kwargs for customizing trace behavior more.
This is the first step to better traces. (#1864) (#2090) (#2093) -
refactor!
ape-geth
has been renamed toape-node
(#1982) -
refactor!: Goerli and mumbai networks have been removed (#1993) (#2085).
-
refactor!:
network.config
is now the network's config and not its ecosystem's. (#1981). -
refactor!: Python 3.8 is no longer supported (011ca9d)
-
refactor!: The Github client is now internal and no longer a public API exposed in Ape.
Also, it uses the requests library directly instead of a package to interact with GitHub. (6670ed7) -
feat!: New abstract property in
TestProviderAPI
for.auto_mine
!
It comes also with a setter.
Note: this was already implemented everywhere, but now it is official for plugins to recognize. -
refactor!:
AccountContainerAPI
now requires aname=
instead of adata_folder=
; it uses thedata_folder
set in the config plus its name and.data_folder
is now read-only.
This is simplifies the API with little effect, as tests often change the root data folder anyway. -
feat!: Contract creation metadata, changes how a contract's defining receipt is laid out in Ape.
No longer it is just a receipt, now it is full object with other creation-related properties that be necessary, such as its factory.
Ape now has additional ways of checking for this creation data, depending on your node,
and problematic ways have been removed.
Thank you @banteg (#2001). -
feat!: The minimum pytest requirement has bumped to the 8.0 range
-
refactor!: ape.modules is no longer a thing.
-
refactor!: SourceTraceback now requires a ContractSource instead of a ContractType during init.
OTHER CHANGES
-
feat: You can now create project objects from package manifest using
ape.Project.from_manifest()
(#1960). -
fix: When ape-vyper or ape-solidity are not installed and you try to compile
.vy
or.sol
, you will be asked to install (#1960) -
fix: Excluded sources are no longer part of
sources.paths
as new exclusions come in (#1960) -
feat: The home directory is hidden wherever paths are used, including also in
ape console
to preserver more anonymity (#1931). -
refactor:
ape pm
command improvements, such as the formatting of thelist
outputs (#1960). -
chore: fix typos @simlecode (#2094)
-
fix: plugin warning message didn't show unimplemented methods @antazoey (#2091)
-
fix: bug where compilers output selection wasn't updating when sources changes compiler @antazoey (#2089)
Special thanks to: @NotPeopling2day, @antazoey, @banteg, @dtdang and @simlecode