Skip to content
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

v8.4.3 Bug Fixes #446

Merged
merged 8 commits into from Sep 6, 2019

disable email opt-in on create account

  • Loading branch information
christophertino committed Sep 6, 2019
commit 882182616d8069de0c0a2304b5da740ea1461433
@@ -1,3 +1,11 @@
### GHOSTERY 8.4.3 (UNRELEASED)

+ Fixes issue where Detail View is blank when there are only Unknown trackers found ()
+ New opt-in flow for Ghostery Rewards ()
+ Fixes for AMO build script
+ Update all project dependencies to satisfy security alerts
+ Updated translations

### GHOSTERY 8.4.2 (August 28, 2019)

+ Fix slow memory leak in Firefox (#434)
@@ -42,7 +42,7 @@ class CreateAccountViewContainer extends Component {
password: '',
passwordInvalidError: false,
passwordLengthError: false,
promotionsChecked: true,
promotionsChecked: false,
validateInput: false,
};

@@ -31,7 +31,7 @@ describe('app/hub/Views/CreateAccount component', () => {
password: '',
passwordInvalidError: false,
passwordLengthError: false,
promotionsChecked: true,
promotionsChecked: false,
handleInputChange: () => {},
handleLegalConsentCheckboxChange: () => {},
handlePromotionsCheckboxChange: () => {},
@@ -58,7 +58,7 @@ describe('app/hub/Views/CreateAccount component', () => {
password: '',
passwordInvalidError: true,
passwordLengthError: true,
promotionsChecked: false,
promotionsChecked: true,
handleInputChange: () => {},
handleLegalConsentCheckboxChange: () => {},
handlePromotionsCheckboxChange: () => {},
@@ -87,7 +87,7 @@ describe('app/hub/Views/CreateAccount component', () => {
password: '',
passwordInvalidError: false,
passwordLengthError: false,
promotionsChecked: true,
promotionsChecked: false,
handleInputChange: () => {},
handleLegalConsentCheckboxChange: () => {},
handlePromotionsCheckboxChange: () => {},
@@ -173,14 +173,14 @@ exports[`app/hub/Views/CreateAccount component Snapshot tests with react-test-re
className="CreateAccountView__checkboxContainer CreateAccountView--marginBottom flex-container"
>
<div
className="ToggleCheckbox ToggleCheckbox--flush-left ToggleCheckbox--active"
className="ToggleCheckbox ToggleCheckbox--flush-left"
onClick={[Function]}
>
<svg
viewBox="0 0 24 24"
>
<path
d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
/>
</svg>
</div>
@@ -441,14 +441,14 @@ exports[`app/hub/Views/CreateAccount component Snapshot tests with react-test-re
className="CreateAccountView__checkboxContainer CreateAccountView--marginBottom flex-container"
>
<div
className="ToggleCheckbox ToggleCheckbox--flush-left"
className="ToggleCheckbox ToggleCheckbox--flush-left ToggleCheckbox--active"
onClick={[Function]}
>
<svg
viewBox="0 0 24 24"
>
<path
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
/>
</svg>
</div>
@@ -36,7 +36,7 @@ class CreateAccount extends React.Component {
legalConsentChecked: false,
legalConsentNotCheckedError: false,
password: '',
promotionsChecked: true,
promotionsChecked: false,
loading: false,
passwordInvalidError: false,
passwordLengthError: false,
ProTip! Use n and p to navigate between commits in a pull request.