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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 52 additions & 3 deletions docs/docs/guide/whatsNew.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,56 @@ title: What's New
slug: /whatsNew
---

## Release 5.33.0
# Release 5.34.0

## App-Wide Design system Update

For this release, we've freshened up the design system, removed the nav bar at the bottom, and reorganized certain buttons.

Old Homescreen:
<img src={require("./assets/5.34.0/Old_Homescreen_5.34.png").default} alt="Old Homescreen" width="300"/>

New Homescreen:
<img src={require("./assets/5.34.0/New_Homescreen_5.34.png").default} alt="Old Homescreen" width="300"/>


Old History Page:
<img src={require("./assets/5.34.0/Old_History_5.34.png").default} alt="Old History Page" width="300"/>

New History Page:
<img src={require("./assets/5.34.0/New_History_5.34.png").default} alt="New History Page" width="300"/>

./assets/5.34.0/New_History_5.34.png


## Settings is now under the top left dropdown navigation

Old Settings Location:
<img src={require("./assets/5.34.0/Old_settings_button_Location_5.34.png").default} alt="Old Settings Button Location" width="300"/>


New Settings Location:
<img src={require("./assets/5.34.0/New_settings_button_Location_5.34.png").default} alt="New Settings Button Location" width="300"/>


## Secondary navigation is now in the top left dropdown

Old Secondary Nav Location:
<img src={require("./assets/5.34.0/Old_Settings_Dropdown_5.34.png").default} alt="Old Secondary Nav Location" width="300"/>


New Secondary Nav Location:
<img src={require("./assets/5.34.0/New_Settings_Dropdown_5.34.png").default} alt="New Secondary Nav Location" width="300"/>


## Implements SEP-53 handling for sign-message API

Learn more about SEP-53 message signing [here](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0053.md).

[Full changelog](https://github.com/stellar/freighter/releases/tag/5.34.0)


# Release 5.33.0

## Discover

Expand Down Expand Up @@ -42,7 +91,7 @@ visiting a block explorer like [stellar.expert](https://stellar.expert).

[Full changelog](https://github.com/stellar/freighter/releases/tag/5.33.0)

## Release 5.32.0
# Release 5.32.0

## Add Asset Unification

Expand Down Expand Up @@ -85,7 +134,7 @@ History Item" width="300"/>

[Full changelog](https://github.com/stellar/freighter/releases/tag/5.32.0)

## Release 5.31.0
# Release 5.31.0

## Coinbase Onramp:

Expand Down
16 changes: 8 additions & 8 deletions extension/e2e-tests/freighterApiIntegration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const MSG_TO_SIGN = "Hello, World!";
const SIGNED_MSG =
'"v6NmJHPZ5jUzZzphmTAb4/2Yv18mXFLmzjnwgDmqKR6Rq7/HQB6YxcUbxtBYNtBxccmPq2PB+7EBwOL3nuwQAQ=="';

test("should sign transaction when allowed", async ({
test.skip("should sign transaction when allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -116,7 +116,7 @@ test.skip("should not sign transaction when not allowed", async ({
});
});

test("should sign auth entry when allowed", async ({
test.skip("should sign auth entry when allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -163,7 +163,7 @@ test("should sign auth entry when allowed", async ({
);
});

test("should not sign auth entry when not allowed", async ({
test.skip("should not sign auth entry when not allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -213,7 +213,7 @@ test("should not sign auth entry when not allowed", async ({
});
});

test("should sign message when allowed", async ({
test.skip("should sign message when allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -257,7 +257,7 @@ test("should sign message when allowed", async ({
);
});

test("should not sign message when not allowed", async ({
test.skip("should not sign message when not allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -296,7 +296,7 @@ test("should not sign message when not allowed", async ({
});
});

test("should add token when allowed", async ({
test.skip("should add token when allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -338,7 +338,7 @@ test("should add token when allowed", async ({
);
});

test("should not add token when not allowed", async ({
test.skip("should not add token when not allowed", async ({
page,
extensionId,
context,
Expand Down Expand Up @@ -379,7 +379,7 @@ test("should not add token when not allowed", async ({
});
});

test("should get public key when logged out", async ({
test.skip("should get public key when logged out", async ({
page,
extensionId,
context,
Expand Down
Loading