8693 Commits
Author SHA1 Message Date
brave-builds 8492acab83 1.93.37 2026-06-05 16:03:22 +00:00
brave-builds 8c5fdaa288 1.93.36 2026-06-05 12:33:16 +00:00
brave-builds 9f34525ae0 1.93.35 2026-06-05 12:32:08 +00:00
brave-builds 3f18ae1d4d 1.93.34 2026-06-05 12:03:55 +00:00
brave-builds bce4729762 1.93.33 2026-06-05 00:03:34 +00:00
brave-builds 1906b1362c 1.93.32 2026-06-04 16:03:34 +00:00
brave-builds d5dc7dd8a7 1.93.31 2026-06-04 12:33:31 +00:00
brave-builds 762f4e9db5 1.93.30 2026-06-04 12:03:55 +00:00
brave-builds e4d996bb99 1.93.29 2026-06-04 04:01:58 +00:00
Kamil Jozwiak 8e37af1855 Upgrade from Chromium 149.0.7827.54 to Chromium 149.0.7827.59 (#36968)
Resolves https://github.com/brave/brave-browser/issues/56073
2026-06-03 23:55:32 -04:00
brave-builds 3a65763d6e 1.93.28 2026-06-04 00:35:48 +00:00
brave-builds 02def37284 1.93.27 2026-06-04 00:03:36 +00:00
Claudio DeSouza 4e22eef752 Update from Chromium 149.0.7827.54 to Chromium 149.0.7827.59. 2026-06-03 18:49:18 -04:00
brave-builds 6ee3b85080 1.93.26 2026-06-03 16:03:13 +00:00
brave-builds 9aa57e5a6e 1.93.25 2026-06-03 12:33:14 +00:00
brave-builds f8cdea6c02 1.93.24 2026-06-03 12:03:26 +00:00
brave-builds 7e453273a9 1.93.23 2026-06-03 01:31:24 +00:00
brave-builds bd7e843703 1.93.22 2026-06-03 00:03:15 +00:00
brave-builds 43824122a1 1.93.21 2026-06-02 23:04:16 +00:00
brave-builds b66aed6cf1 1.93.20 2026-06-02 16:52:41 +00:00
brave-builds 92101135fa 1.93.19 2026-06-02 09:14:32 +00:00
Kamil JozwiakandClaudio DeSouza 63a044d0b0 Upgrade from Chromium 149.0.7827.23 to Chromium 149.0.7827.54. (#36858)
* Update from Chromium 149.0.7827.23 to Chromium 149.0.7827.54.

* [149.0.7827.54] Removes previously applied upstream patches.

* Update patches from Chromium 149.0.7827.23 to Chromium 149.0.7827.54.

* Updated strings for Chromium 149.0.7827.54.

* [149.0.7827.54] Stubbing off `OnEmbeddedPermissionPromptChanged`

Chromium changes:
https://chromium.googlesource.com/chromium/src/+/03d0729142a7f3db6bc6a16d69de16832cf32320

commit 03d0729142a7f3db6bc6a16d69de16832cf32320
Author: James Leung <jamesleung@google.com>
Date:   Thu May 14 22:43:43 2026 -0700

    [voice_search] Keep voice search open during permission prompt

    Modify the composebox voice search to remain active when an embedded
    permission prompt is displayed. This prevents the voice search overlay
    from timing out or closing while the user interacts with system access
    requests. An observer must be added to communicate via mojo to the
    frontend when the voice search should remain active.

    Key changes include:
    * Implemented `EmbeddedPermissionPromptObserver` to track the
      lifecycle and bounds of the embedded permission prompt widget. When
      it resizes, closes due to out of focus, or closes due to an option
      being selected, it sends a mojo message (`OnEmbeddedPermissionPromptChanged`)
    * Added a new Mojo method `OnEmbeddedPermissionPromptChanged`
      to tell the frontend when the permission prompt is visible,
      and the prompt's size
    * Made page callback passed down to `cr-composebox-voice-search`. Also
      made it protected instead of private.
    * Updated `cr-composebox-voice-search` to listen for permission state
        changes, effectively pausing the idle timer when the permission
        prompt is visible.

    screencast/cast/NTU0NDc5Mjc3MDQ3ODA4MHxiYzc3ZmYyYy1hNQ
    NO_IFTTT=just rearranged and made existing property protected
    It is known that it should be moved to mixin.

    Bug: b:492201887
    Change-Id: Ie85be91c7e2435bb519b7d5e92565674a1d5ffbf
    Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7744441
    Commit-Queue: James Leung <jamesleung@google.com>
    Reviewed-by: Ananya Seelam <ananyaseelam@google.com>
    Cr-Commit-Position: refs/heads/main@{#1631087}

* [149.0.7827.54] Filter upstream tests as needed.

* [149.0.7827.54] PrintViewManagerBase now needs settings passed into it.

Chromium change:
https://chromium.googlesource.com/chromium/src.git/+/fa1ec9c34a77a

commit fa1ec9c34a77aba67b0f7d9e36425149228c3a9a
Author: Lei Zhang <thestig@chromium.org>
Date:   Wed May 27 15:32:39 2026 -0700

    [M149] Print Preview: Remove PrintManagerHost.UpdatePrintSettings() dict param

    Original change's description:
    > Print Preview: Remove PrintManagerHost.UpdatePrintSettings() dict param
    >
    > In the Print Preview IPC dance, PrintPreviewHandler in the browser calls
    > PrintRenderFrame.PrintPreview() with a print settings dictionary.
    > PrintRenderFrameHelper, the PrintRenderFrame implementation,
    > conditionally makes a small edit to the dictionary, and passes it back
    > to PrintViewManagerBase in the browser in the
    > PrintManagerHost.UpdatePrintSettings() call.
    >
    > In modern Chromium, the browser process can make the same conditional
    > decision and modify the dictionary itself. As such, there is no need for
    > PrintRenderFrameHelper to pass it back. So simplify the
    > UpdatePrintSettings() Mojo interface to remove the dictionary parameter.
    > After this, rename it to GetPrintPreviewParams() since it is no longer
    > sending an update to the browser.
    >
    > On the browser side, pass the dictionary from PrintPreviewHandler to
    > PrintViewManagerBase, to compensate for the IPC change. The dictionary
    > needs to go into a queue as there may be multiple
    > PrintRenderFrame.PrintPreview() calls in quick succession.
    >
    > Update tests as needed to match the IPC changes. In several test cases,
    > calls TestPrintViewManager::CreateForWebContents() to properly install
    > the TestPrintViewManager, instead of allocating it on the stack.
    >
    > Bug: 513005991
    > Change-Id: Ie022900568c3bac7e086c9fbf9d6345a22e46278
    > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7866423
    > Reviewed-by: Andy Phan <andyphan@chromium.org>
    > Commit-Queue: Lei Zhang <thestig@chromium.org>
    > Reviewed-by: Tom Sepez <tsepez@chromium.org>
    > Cr-Commit-Position: refs/heads/main@{#1635224}

    (cherry picked from commit ea38e74cf233e5ae1e5c3cc7d02d3c36e025a754)

    Bug: 515954036,513005991

---------

Co-authored-by: Claudio DeSouza <cdesouza@brave.com>
2026-06-01 23:31:09 -04:00
brave-builds f2da9711cf 1.93.18 2026-06-02 00:03:07 +00:00
brave-builds 46a855a85a 1.93.17 2026-06-01 16:23:57 +00:00
brave-builds 9b6bb0eaff 1.93.16 2026-06-01 16:03:10 +00:00
brave-builds 18467c4369 1.93.15 2026-06-01 12:33:53 +00:00
brave-builds bcae7c6a92 1.93.14 2026-06-01 12:03:31 +00:00
brave-builds 4ce2785f4b 1.93.13 2026-06-01 00:03:52 +00:00
brave-builds 9444f0aaa2 1.93.12 2026-05-31 15:56:54 +00:00
brave-builds 28d904094d 1.93.11 2026-05-31 02:14:38 +00:00
Max Karolinskiy a9a826e815 Update from Chromium 149.0.7827.23 to Chromium 149.0.7827.54. 2026-05-30 16:15:28 -04:00
yan ce0b8fd445 bump axios (#36840) 2026-05-29 22:36:52 +01:00
brave-builds 215694c6c1 1.93.10 2026-05-29 16:03:10 +00:00
brave-builds 17dd9fe917 1.93.9 2026-05-29 12:33:53 +00:00
brave-builds 4a1aeedb0d 1.93.8 2026-05-29 12:03:30 +00:00
brave-builds 03639f0b9a 1.93.7 2026-05-29 00:03:33 +00:00
Jay Harris 9c90556eab [Nala]: Update to Svelte5 version of Nala (#36524)
Changes https://github.com/brave/leo/compare/075a3f9ed76e03bdc3f63d7dc4a7269e6dbdec29...e4af287f27ef5bb412a57a057d0edbbc81326168
- **BREAKING** [Icons]: Update icons from Figma ([#1378](https://github.com/brave/leo/pull/1378))
- [svelte5]: Use unmount not destroy ([#1399](https://github.com/brave/leo/pull/1399))
- [Svelte]: Minor bump ([#1398](https://github.com/brave/leo/pull/1398))
- **BREAKING** [Svelte]: Upgrade to Svelte 5 ([#1078](https://github.com/brave/leo/pull/1078))
- chore(deps): updates deps and adds .npmrc with min-release-age ([#1391](https://github.com/brave/leo/pull/1391))
- [Toggle]: Remove :hover effect on mobile ([#1390](https://github.com/brave/leo/pull/1390))
- [Radio]: Remove :hover effect on mobile ([#1389](https://github.com/brave/leo/pull/1389))
- [Checkbox]: Disable `:hover` effect on mobile ([#1388](https://github.com/brave/leo/pull/1388))
- [Button]: Disable :hover state on mobile ([#1387](https://github.com/brave/leo/pull/1387))
- Add transform transition and press scale to button ([#1385](https://github.com/brave/leo/pull/1385))
- Navigation style updates ([#1386](https://github.com/brave/leo/pull/1386))
- Bump postcss from 8.5.6 to 8.5.14 in /examples/example-ui-react ([#1383](https://github.com/brave/leo/pull/1383))
- Bump postcss from 8.5.6 to 8.5.14 ([#1384](https://github.com/brave/leo/pull/1384))
2026-05-28 23:53:06 +01:00
brave-builds fcbe4adb3a 1.93.6 2026-05-28 16:03:12 +00:00
brave-builds a46e3f9ff4 1.93.5 2026-05-28 12:33:06 +00:00
brave-builds 99eb47f678 1.93.4 2026-05-28 12:03:11 +00:00
brave-builds d8d61896d7 1.93.3 2026-05-28 00:42:17 +00:00
brave-builds 8fd8b90c3f 1.93.2 2026-05-28 00:03:35 +00:00
brave-builds bf6afaf9ea 1.93.1 2026-05-27 17:39:12 +00:00
brave-builds 5891b8077a Branch migration - master branch (#36765)
Update Nightly channel to: 1.93.0
2026-05-27 18:15:15 +01:00
brave-builds dae39cb73e 1.92.107 2026-05-27 16:03:33 +00:00
brave-builds 218549d05f 1.92.106 2026-05-27 12:33:14 +00:00
brave-builds 33748d5462 1.92.105 2026-05-27 12:08:12 +00:00
brave-builds a3f80a14b1 1.92.104 2026-05-27 02:19:11 +00:00
brave-builds 18d22cfa17 1.92.103 2026-05-27 00:03:28 +00:00
brave-builds e0b03fdfcc 1.92.102 2026-05-26 16:03:35 +00:00