π§ Critical: Update Deprecated 'new-flake' Method Rename in bootstrap.clj (#213)
This pull request closes issue #213 opened by @anujsrc.
Overview
The issue highlights a build failure in the Ledger main branch due to an unimplemented deprecated function reference (flake/new-flake).
Issue: Compiling errors due to fluree/db breaking changes on the last update, causing a critical compile error.
Context: The method flake/new-flake which was previously deprecated, was recently renamed to flake/create causing a critical error when compiling the code.
Solutions: This is the first pull request trying to solve this specific problem by updating the method name.
Impact: By addressing the renamed method the critical error will no longer stop the compilation process, making an important improvement to all users and developers.
π Description
This pull request resolves the deprecated method from the bootstrap.clj introduced on fluree/db@e02c152 by updating the method name to flake/create.
βπΌ Changes Made
bootstrap.clj
renamed deprecated method from flake/new-flake to flake/create
// Replaced deprecated flake/new-flake with flake/create as per issue #213
- (flake/new-flake ... )
+ (flake/create ... )
π¦― Testing
[ ] Update Tests (ToDo - Not Found)
[x] Compile/Build code (tested on version 2.0.4 with Ubuntu)
Notes & References
Breaking Commit: fluree/db@e02c152
Reviewers
@bplatz
Hi this is one of my firsts Pull Requests over here, any feedback, changes or suggestions are welcome!
π§ Critical: Update Deprecated 'new-flake' Method Rename in bootstrap.clj (#213)
This pull request closes issue #213 opened by @anujsrc.
Overview
The issue highlights a build failure in the Ledger main branch due to an unimplemented deprecated function reference (
flake/new-flake
).fluree/db
breaking changes on the last update, causing a critical compile error.flake/new-flake
which was previously deprecated, was recently renamed toflake/create
causing a critical error when compiling the code.π Description
This pull request resolves the deprecated method from the
bootstrap.clj
introduced on fluree/db@e02c152 by updating the method name toflake/create
.βπΌ Changes Made
bootstrap.clj
flake/new-flake
toflake/create
π¦― Testing
2.0.4
with Ubuntu)Notes & References
Reviewers
@bplatz
Hi this is one of my firsts Pull Requests over here, any feedback, changes or suggestions are welcome!