-
Notifications
You must be signed in to change notification settings - Fork 0
Release 0.3.5
#171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release 0.3.5
#171
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…mp-package feat(rework): implement `bump-package`
…nfig and runtime config
…ript feat(rework): implement `script`
…er-defined-config feat(rework): implement `user-defined-config`
…d-initialize-guard feat(rework): implement `add-initialize-guard`
…d-default-contracts feat(rework): implement `add-default-contracts`
…d-profile feat(rework): implement `add-profile`
…th-to-generate-artifact
…store-transparent-proxy-v4_9_5 feat(rework): implement `restore-transparent-proxy-v4_9_5`
…adapt new forge version when generating storage layout
Co-authored-by: HuyHuynh <63286199+huyhuynh3103@users.noreply.github.com>
…x-bug feat(rework): implement `fix-bug`
…nitializer fix: add --json when inspecting methodIdentifiers
BREAKING_CHANGE: adapt soldeer, enhance script runtime, extra features
TuDo1403
approved these changes
Aug 4, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request introduces significant changes to the repository, including updates to workflows, dependency management, configuration files, and the addition of new scripts while removing older ones. The changes aim to modernize the project setup, enhance automation, and simplify dependency management. Below is a summary of the most important changes:
Workflow and Build Process Updates:
.github/workflows/test.ymlto refine branch matching patterns and replace the nightly version of Foundry withsoldeerfor dependency management. Additionally, theforge buildcommand was simplified by removing the--sizesflag. [1] [2]Dependency Management:
forge-std,openzeppelin-contracts,solady,contract-libs) from.gitmodulesand replaced them with direct dependencies infoundry.tomlusingsoldeer. This simplifies dependency updates and eliminates the need for submodule management. [1] [2]soldeerinfoundry.tomlto manage remappings and recursive dependencies.New Scripts and Automation:
generate-artifact.shto automate artifact generation with extensive support for command-line arguments and JSON output.install.shto automate the installation of Foundry, Rust, andsoldeer, ensuring the environment is properly set up.run.shwith additional options for deployment scripts, including support for artifact generation, address exporting, and contract verification.Configuration and Formatting:
foundry.tomlwith new formatting rules (e.g., sorted imports, wrapped comments) and switched the EVM version fromistanbultolondon. Thelibsdirectory was also renamed todependencies.Code Cleanup:
ArtifactFactory.sol,BaseGeneralConfig.sol) and associated dependencies, replacing them with updated configurations and scripts. [1] [2]These changes collectively modernize the repository, streamline the build and deployment process, and improve maintainability.
Checklist