Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## DFX

### fix: improved responsiveness of `greet` method call in default Motoko project template

`greet` method was marked as an `update` call, but it performs no state updates. Changing it to `query` call will result in faster execution.

### feat!: "system-wide dfx start"

By default, dfx now manages the replica process in a way that is independent of any given dfx project. We've called this feature "system-wide dfx", even though it's actually specific to your user
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
actor {
public func greet(name : Text) : async Text {
public query func greet(name : Text) : async Text {
return "Hello, " # name # "!";
};
};