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

Revert "[WIP] Remove passkey entitlement" #19040

Merged
merged 2 commits into from
Jun 29, 2023

Conversation

emerick
Copy link
Contributor

@emerick emerick commented Jun 26, 2023

Resolves brave/brave-browser#31258

Submitter Checklist:

  • I confirm that no security/privacy review is needed, or that I have requested one
  • There is a ticket for my issue
  • Used Github auto-closing keywords in the PR description above
  • Wrote a good PR/commit description
  • Squashed any review feedback or "fixup" commits before merge, so that history is a record of what happened in the repo, not your PR
  • Added appropriate labels (QA/Yes or QA/No; release-notes/include or release-notes/exclude; OS/...) to the associated issue
  • Checked the PR locally:
    • npm run test -- brave_browser_tests, npm run test -- brave_unit_tests wiki
    • npm run lint, npm run presubmit wiki, npm run gn_check, npm run tslint
  • Ran git rebase master (if needed)

Reviewer Checklist:

  • A security review is not needed, or a link to one is included in the PR description
  • New files have MPL-2.0 license header
  • Adequate test coverage exists to prevent regressions
  • Major classes, functions and non-trivial code blocks are well-commented
  • Changes in component dependencies are properly reflected in gn
  • Code follows the style guide
  • Test plan is specified in PR before merging

After-merge Checklist:

Test Plan:

@emerick emerick added this to the 1.55.x - Nightly milestone Jun 26, 2023
@emerick emerick requested a review from a team as a code owner June 26, 2023 14:06
@emerick emerick self-assigned this Jun 26, 2023
@emerick emerick added CI/skip-android Do not run CI builds for Android CI/skip-ios Do not run CI builds for iOS CI/skip-windows-x86 CI/skip-windows-x64 Do not run CI builds for Windows x64 unused-CI/skip-linux-x64 Do not run CI builds for Linux x64 labels Jun 26, 2023
@mihaiplesa mihaiplesa added CI/skip Do not run CI builds (except noplatform) and removed CI/skip-android Do not run CI builds for Android CI/skip-ios Do not run CI builds for iOS CI/skip-windows-x86 CI/skip-windows-x64 Do not run CI builds for Windows x64 unused-CI/skip-linux-x64 Do not run CI builds for Linux x64 labels Jun 27, 2023
@mihaiplesa mihaiplesa force-pushed the cr115-followup-reinstate-passkey-entitlement branch from 2ddbdfb to 77b0793 Compare June 27, 2023 08:33
Copy link
Collaborator

@mkarolin mkarolin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++ pending QA testing

@LaurenWags
Copy link
Member

LaurenWags commented Jun 27, 2023

Verified with PR build:

Brave | 1.55.16 Chromium: 115.0.5790.40 (Official Build) (x86_64)
-- | --
Revision | 071c9ddea889c3c7887daf4eac13fed72d4fff62-refs/branch-heads/5790@{#979}
OS | macOS Version 13.4.1 (Build 22F82)

Confirmed able to install and launch build from https://bravesoftware.slack.com/archives/CU5UXM3EC/p1687882211614169?thread_ts=1687009981.243379&cid=CU5UXM3EC.
Confirmed no errors on install/launch.
Confirmed build is signed:

laurenwags@Laurens-MBP ~ % spctl --assess --verbose /Applications/Brave\ Browser.app
/Applications/Brave Browser.app: accepted
source=Notarized Developer ID

Confirmed entitlement (run below and confirm that the xml contains <key>com.apple.developer.web-browser.public-key-credential</key><true/>). You will have to tweak the command depending on which channel (Nightly/Beta/Release) you are running this against:

laurenwags@Laurens-MBP ~ % codesign -d --entitlements - --xml /Applications/Brave\ Browser.app
Executable=/Applications/Brave Browser.app/Contents/MacOS/Brave Browser
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict><key>com.apple.application-identifier</key><string>KL8N8XSYF4.com.brave.Browser</string><key>com.apple.developer.associated-domains.applinks.read-write</key><true/><key>com.apple.developer.networking.vpn.api</key><array><string>allow-vpn</string></array><key>com.apple.developer.web-browser.public-key-credential</key><true/><key>com.apple.security.device.audio-input</key><true/><key>com.apple.security.device.bluetooth</key><true/><key>com.apple.security.device.camera</key><true/><key>com.apple.security.device.print</key><true/><key>com.apple.security.device.usb</key><true/><key>com.apple.security.personal-information.location</key><true/><key>keychain-access-groups</key><array><string>KL8N8XSYF4.com.brave.Browser.devicetrust</string><string>KL8N8XSYF4.com.brave.Browser.webauthn</string></array></dict></plist>

On a clean profile verified the following (adapted from https://github.com/brave/brave-browser/wiki/Chromium-rebases#smoke-test)

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on clean profile:

  • cookies are retained on relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.126 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (1.55.16 on Release Channel - note, this was not a Nightly build like on arm64)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, rewards data, cookies, stats, saved login info, shield settings, etc.

@stephendonner
Copy link
Contributor

stephendonner commented Jun 28, 2023

Verification PASSED using

Brave 1.55.14 Chromium: 115.0.5790.40 (Official Build) nightly (arm64)
Revision 071c9ddea889c3c7887daf4eac13fed72d4fff62-refs/branch-heads/5790@{#979}
OS macOS Version 11.7.8 (Build 20G1351)

Binary used: https://build-artifacts.brave.com/test-brave-browser-build-macos-arm64/375/Brave-Browser-Nightly-arm64.dmg

  • confirmed able to launch build
  • confirmed no errors on install/launch
  • confirmed build is signed:
stephendonner@Stephens-MBP-3 ~ % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app
/Applications/Brave Browser Nightly.app: accepted
source=Notarized Developer ID

Confirmed entitlement


stephendonner@Stephens-MBP-3 /Applications % codesign -d --entitlements - /Applications/Brave\ Browser\ Nightly.app
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
��qq9<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>com.apple.application-identifier</key>
	<string>KL8N8XSYF4.com.brave.Browser.nightly</string>
	<key>com.apple.developer.associated-domains.applinks.read-write</key>
	<true/>
	<key>com.apple.developer.networking.vpn.api</key>
	<array>
		<string>allow-vpn</string>
	</array>
	<key>com.apple.developer.web-browser.public-key-credential</key>
	<true/>
	<key>com.apple.security.device.audio-input</key>
	<true/>
	<key>com.apple.security.device.bluetooth</key>
	<true/>
	<key>com.apple.security.device.camera</key>
	<true/>
	<key>com.apple.security.device.print</key>
	<true/>
	<key>com.apple.security.device.usb</key>
	<true/>
	<key>com.apple.security.personal-information.location</key>
	<true/>
	<key>keychain-access-groups</key>
	<array>
		<string>KL8N8XSYF4.com.brave.Browser.nightly.devicetrust</string>
		<string>KL8N8XSYF4.com.brave.Browser.nightly.webauthn</string>
	</array>
</dict>
</plist>
stephendonner@Stephens-MBP-3 /Applications %

On a clean profile, I verified the following:

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on a clean profile:

  • cookies are retained on app relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.126 (Nightly Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (1.55.14 on Nightly channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, Rewards data, cookies, stats, saved login info, Shield settings, etc.

@LaurenWags
Copy link
Member

LaurenWags commented Jun 28, 2023

Verified with PR build:

Brave	1.55.14 Chromium: 115.0.5790.40 (Official Build) nightly (arm64) 
Revision	071c9ddea889c3c7887daf4eac13fed72d4fff62-refs/branch-heads/5790@{#979}
OS	macOS Version 13.4.1 (Build 22F82)

Confirmed able to install and launch build from https://bravesoftware.slack.com/archives/CU5UXM3EC/p1687969613674689?thread_ts=1687009981.243379&cid=CU5UXM3EC.
Confirmed no errors on install/launch.
Confirmed build is signed:

laurenwags@Laurens-M1 ~ % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app 
/Applications/Brave Browser Nightly.app: accepted
source=Notarized Developer ID

Confirmed entitlement (run below and confirm that the xml contains <key>com.apple.developer.web-browser.public-key-credential</key><true/>). You will have to tweak the command depending on which channel (Nightly/Beta/Release) you are running this against:

laurenwags@Laurens-M1 ~ % codesign -d --entitlements - --xml /Applications/Brave\ Browser\ Nightly.app 
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict><key>com.apple.application-identifier</key><string>KL8N8XSYF4.com.brave.Browser.nightly</string><key>com.apple.developer.associated-domains.applinks.read-write</key><true/><key>com.apple.developer.networking.vpn.api</key><array><string>allow-vpn</string></array><key>com.apple.developer.web-browser.public-key-credential</key><true/><key>com.apple.security.device.audio-input</key><true/><key>com.apple.security.device.bluetooth</key><true/><key>com.apple.security.device.camera</key><true/><key>com.apple.security.device.print</key><true/><key>com.apple.security.device.usb</key><true/><key>com.apple.security.personal-information.location</key><true/><key>keychain-access-groups</key><array><string>KL8N8XSYF4.com.brave.Browser.nightly.devicetrust</string><string>KL8N8XSYF4.com.brave.Browser.nightly.webauthn</string></array></dict></plist>

On a clean profile verified the following (adapted from https://github.com/brave/brave-browser/wiki/Chromium-rebases#smoke-test)

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on clean profile:

  • cookies are retained on relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (renamed profile to be for Nightly and launched 1.55.14 on Nightly Channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, rewards data, cookies, stats, saved login info, shield settings, etc.

@stephendonner
Copy link
Contributor

stephendonner commented Jun 28, 2023

Verification PASSED using

Brave | 1.55.16 Chromium: 115.0.5790.40 (Official Build) (x86_64)
-- | --
Revision | 071c9ddea889c3c7887daf4eac13fed72d4fff62-refs/branch-heads/5790@{#979}
OS | macOS Version 11.7.8 (Build 20G1351)

...

Binary used:

https://build-artifacts.brave.com/test-brave-browser-build-macos-x64/1012/Brave-Browser-x64.dmg

  • confirmed able to launch build
  • confirmed no errors on install/launch
  • confirmed build is signed:
stephendonner@Stephens-MBP ~ % spctl --assess --verbose /Applications/Brave\ Browser.app
/Applications/Brave Browser.app: accepted
source=Notarized Developer ID

Confirmed entitlement:

stephendonner@Stephens-MBP ~ % codesign -d --entitlements - /Applications/Brave\ Browser.app
Executable=/Applications/Brave Browser.app/Contents/MacOS/Brave Browser
��qq!<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>com.apple.application-identifier</key>
	<string>KL8N8XSYF4.com.brave.Browser</string>
	<key>com.apple.developer.associated-domains.applinks.read-write</key>
	<true/>
	<key>com.apple.developer.networking.vpn.api</key>
	<array>
		<string>allow-vpn</string>
	</array>
	<key>com.apple.developer.web-browser.public-key-credential</key>
	<true/>
	<key>com.apple.security.device.audio-input</key>
	<true/>
	<key>com.apple.security.device.bluetooth</key>
	<true/>
	<key>com.apple.security.device.camera</key>
	<true/>
	<key>com.apple.security.device.print</key>
	<true/>
	<key>com.apple.security.device.usb</key>
	<true/>
	<key>com.apple.security.personal-information.location</key>
	<true/>
	<key>keychain-access-groups</key>
	<array>
		<string>KL8N8XSYF4.com.brave.Browser.devicetrust</string>
		<string>KL8N8XSYF4.com.brave.Browser.webauthn</string>
	</array>
</dict>
</plist>
stephendonner@Stephens-MBP ~ %

On a clean profile, I verified the following:

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on a clean profile:

  • cookies are retained on app relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (1.55.16 on Nightly channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, Rewards data, cookies, stats, saved login info, Shield settings, etc.

@emerick emerick removed the CI/skip Do not run CI builds (except noplatform) label Jun 29, 2023
@emerick emerick force-pushed the cr115-followup-reinstate-passkey-entitlement branch from 77b0793 to 0f2a938 Compare June 29, 2023 02:24
@emerick emerick merged commit 6357cfa into master Jun 29, 2023
@emerick emerick deleted the cr115-followup-reinstate-passkey-entitlement branch June 29, 2023 16:20
brave-builds added a commit that referenced this pull request Jun 29, 2023
brave-builds added a commit that referenced this pull request Jun 29, 2023
@LaurenWags
Copy link
Member

LaurenWags commented Jun 30, 2023

Verified with CI build

Brave | 1.55.84 Chromium: 115.0.5790.56 (Official Build) nightly (x86_64)
-- | --
Revision | 5aab64d48fedf51a7663986e3ab5381ac3981486
OS | macOS Version 13.4.1 (Build 22F82)

Confirmed able to install and launch above build.
Confirmed no errors on install/launch.
Confirmed build is signed:

laurenwags@Laurens-MBP ~ % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app 
/Applications/Brave Browser Nightly.app: accepted
source=Notarized Developer ID

Confirmed entitlement (run below and confirm that the xml contains <key>com.apple.developer.web-browser.public-key-credential</key><true/>). You will have to tweak the command depending on which channel (Nightly/Beta/Release) you are running this against:

laurenwags@Laurens-MBP ~ % codesign -d --entitlements - --xml /Applications/Brave\ Browser\ Nightly.app
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict><key>com.apple.application-identifier</key><string>KL8N8XSYF4.com.brave.Browser.nightly</string><key>com.apple.developer.associated-domains.applinks.read-write</key><true/><key>com.apple.developer.networking.vpn.api</key><array><string>allow-vpn</string></array><key>com.apple.developer.web-browser.public-key-credential</key><true/><key>com.apple.security.device.audio-input</key><true/><key>com.apple.security.device.bluetooth</key><true/><key>com.apple.security.device.camera</key><true/><key>com.apple.security.device.print</key><true/><key>com.apple.security.device.usb</key><true/><key>com.apple.security.personal-information.location</key><true/><key>keychain-access-groups</key><array><string>KL8N8XSYF4.com.brave.Browser.nightly.devicetrust</string><string>KL8N8XSYF4.com.brave.Browser.nightly.webauthn</string></array></dict></plist>

On a clean profile verified the following (adapted from https://github.com/brave/brave-browser/wiki/Chromium-rebases#smoke-test)

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling)
  • able to join Rewards on fresh profile
  • able to select each of the options (Talk, Wallet, Bookmarks, Reading List) on sidebar
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on clean profile:

  • cookies are retained on relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to Nightly build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to Nightly (renamed profile to be for Nightly and launched 1.55.84 on Nightly Channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, rewards data, cookies, stats, saved login info, shield settings, etc.

@LaurenWags
Copy link
Member

LaurenWags commented Jun 30, 2023

Verified with CI build

Brave	1.55.84 Chromium: 115.0.5790.56 (Official Build) nightly (arm64) 
Revision	5aab64d48fedf51a7663986e3ab5381ac3981486
OS	macOS Version 13.4.1 (Build 22F82)

Confirmed able to install and launch above build.
Confirmed no errors on install/launch.
Confirmed build is signed:

laurenwags@Laurens-M1 ~ % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app          
/Applications/Brave Browser Nightly.app: accepted
source=Notarized Developer ID

Confirmed entitlement (run below and confirm that the xml contains <key>com.apple.developer.web-browser.public-key-credential</key><true/>). You will have to tweak the command depending on which channel (Nightly/Beta/Release) you are running this against:

laurenwags@Laurens-M1 ~ % codesign -d --entitlements - --xml /Applications/Brave\ Browser\ Nightly.app
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict><key>com.apple.application-identifier</key><string>KL8N8XSYF4.com.brave.Browser.nightly</string><key>com.apple.developer.associated-domains.applinks.read-write</key><true/><key>com.apple.developer.networking.vpn.api</key><array><string>allow-vpn</string></array><key>com.apple.developer.web-browser.public-key-credential</key><true/><key>com.apple.security.device.audio-input</key><true/><key>com.apple.security.device.bluetooth</key><true/><key>com.apple.security.device.camera</key><true/><key>com.apple.security.device.print</key><true/><key>com.apple.security.device.usb</key><true/><key>com.apple.security.personal-information.location</key><true/><key>keychain-access-groups</key><array><string>KL8N8XSYF4.com.brave.Browser.nightly.devicetrust</string><string>KL8N8XSYF4.com.brave.Browser.nightly.webauthn</string></array></dict></plist>

On a clean profile verified the following (adapted from https://github.com/brave/brave-browser/wiki/Chromium-rebases#smoke-test)

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling)
  • able to join Rewards on fresh profile
  • able to select each of the options (Talk, Wallet, Bookmarks, Reading List) on sidebar
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on clean profile:

  • cookies are retained on relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to Nightly build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to Nightly (renamed profile to be for Nightly and launched 1.55.84 on Nightly Channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, rewards data, cookies, stats, saved login info, shield settings, etc.

@stephendonner
Copy link
Contributor

stephendonner commented Jun 30, 2023

Verification PASSED using



Brave | 1.55.85 Chromium: 115.0.5790.56 (Official Build) nightly (x86_64)
-- | --
Revision | ec8df437c76e6b5594372583e6dab78c03f4594c
OS | macOS Version 14.0 (Build 23A5276g)
  • confirmed able to launch build
  • confirmed no errors on install/launch
  • confirmed build is signed:
sdonner@Stephens-MBP-2 MacOS % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app/Contents/MacOS/Brave\ Browser\ Nightly 
/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly: accepted
source=Notarized Developer ID

Confirmed entitlement:

sdonner@Stephens-MBP-2 MacOS % codesign -d --entitlements - /Applications/Brave\ Browser\ Nightly.app
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
[Dict]
	[Key] com.apple.application-identifier
	[Value]
		[String] KL8N8XSYF4.com.brave.Browser.nightly
	[Key] com.apple.developer.associated-domains.applinks.read-write
	[Value]
		[Bool] true
	[Key] com.apple.developer.networking.vpn.api
	[Value]
		[Array]
			[String] allow-vpn
	[Key] com.apple.developer.web-browser.public-key-credential
	[Value]
		[Bool] true
	[Key] com.apple.security.device.audio-input
	[Value]
		[Bool] true
	[Key] com.apple.security.device.bluetooth
	[Value]
		[Bool] true
	[Key] com.apple.security.device.camera
	[Value]
		[Bool] true
	[Key] com.apple.security.device.print
	[Value]
		[Bool] true
	[Key] com.apple.security.device.usb
	[Value]
		[Bool] true
	[Key] com.apple.security.personal-information.location
	[Value]
		[Bool] true
	[Key] keychain-access-groups
	[Value]
		[Array]
			[String] KL8N8XSYF4.com.brave.Browser.nightly.devicetrust
			[String] KL8N8XSYF4.com.brave.Browser.nightly.webauthn
sdonner@Stephens-MBP-2 MacOS % 

On a clean profile, I verified the following:

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on a clean profile:

  • cookies are retained on app relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (1.55.85 on Nightly channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, Rewards data, cookies, stats, saved login info, Shield settings, etc.

@stephendonner
Copy link
Contributor

stephendonner commented Jun 30, 2023

Verified PASSED using

Brave 1.55.85 Chromium: 115.0.5790.56 (Official Build) nightly (arm64)
Revision ec8df43
OS macOS Version 11.7.8 (Build 20G1351)
  • confirmed able to launch build
  • confirmed no errors on install/launch
  • confirmed build is signed:
stephendonner@Stephens-MBP-3 /Applications % spctl --assess --verbose /Applications/Brave\ Browser\ Nightly.app

/Applications/Brave Browser Nightly.app: accepted
source=Notarized Developer ID
stephendonner@Stephens-MBP-3 /Applications %```

Confirmed entitlement:

stephendonner@Stephens-MBP-3 /Applications % codesign -d --entitlements - /Applications/Brave\ Browser\ Nightly.app
Executable=/Applications/Brave Browser Nightly.app/Contents/MacOS/Brave Browser Nightly
��qq9<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>com.apple.application-identifier</key>
	<string>KL8N8XSYF4.com.brave.Browser.nightly</string>
	<key>com.apple.developer.associated-domains.applinks.read-write</key>
	<true/>
	<key>com.apple.developer.networking.vpn.api</key>
	<array>
		<string>allow-vpn</string>
	</array>
	<key>com.apple.developer.web-browser.public-key-credential</key>
	<true/>
	<key>com.apple.security.device.audio-input</key>
	<true/>
	<key>com.apple.security.device.bluetooth</key>
	<true/>
	<key>com.apple.security.device.camera</key>
	<true/>
	<key>com.apple.security.device.print</key>
	<true/>
	<key>com.apple.security.device.usb</key>
	<true/>
	<key>com.apple.security.personal-information.location</key>
	<true/>
	<key>keychain-access-groups</key>
	<array>
		<string>KL8N8XSYF4.com.brave.Browser.nightly.devicetrust</string>
		<string>KL8N8XSYF4.com.brave.Browser.nightly.webauthn</string>
	</array>
</dict>
</plist>
stephendonner@Stephens-MBP-3 /Applications %

On a clean profile, I verified the following:

  • brave://version loads
  • each section under brave://settings loads and no errors are displayed in browser console
  • tabs have the expected shape (it's slightly different from Chrome)
  • clearing browser data on exit works as expected
  • videos play properly on YouTube and that the media device toolbar button works correctly
  • tab-muting works as expected (spot checked using audio icon on tab and the "Mute tab" and "Mute site" options from the right-click tab menu)
  • spot check of vertical tabs (enabling/disabling
  • able to join Rewards on fresh profile
  • able to enable sidebar and select each of the options (Talk, Wallet, Bookmarks, Reading List)
  • able to create a second profile
  • private and Tor windows worked as expected
  • websites loaded as expected
  • able to open/load DevTools

Other items checked on a clean profile:

  • cookies are retained on app relaunch
  • brave://components does not show any errors
  • can create bookmarks

Simulated an "upgrade" to PR build:

  1. Installed 1.52.129 (Release Channel)
  2. Populated a profile with tabs, windows, browsing data, rewards data, cookies, etc.
  3. "upgraded" to PR build (1.55.85 on Nightly channel)
  4. Confirmed no errors on launch or while browsing
  5. Confirmed expected data was retained after upgrade: tabs, windows, browsing data, Rewards data, cookies, stats, saved login info, Shield settings, etc.

kjozwiak pushed a commit that referenced this pull request Jul 2, 2023
kjozwiak pushed a commit that referenced this pull request Jul 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reinstate passkey entitlement
6 participants