Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps-dev): bump electron from 7.3.3 to 18.3.7#1065

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
dependabot wants to merge1 commit intomaster
base:master
Choose a base branch
Loading
fromdependabot/npm_and_yarn/electron-18.3.7

Conversation

@dependabot
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubNov 10, 2022
edited
Loading

Bumpselectron from 7.3.3 to 18.3.7.

Release notes

Sourced fromelectron's releases.

electron v18.3.7

Release Notes for v18.3.7

Fixes

  • Fixed WCO not responding to touch events on windows.#35177 (Also in19,20)
  • FixedwebContents.getUserAgent() incorrectly returning an empty string unless previously set.#35130 (Also in17,19,20)
  • Fixed an issue in which calling setBounds() after e.preventDefault in a 'will-move' or 'will-resize' event wouldn't change the window's shape until the mouse button was released.#35082 (Also in19,20)
  • Fixed context menu not showing all items on macOS when dock is not hidden.#35198 (Also in19)
  • None.#35171 (Also in19,20)

Other Changes

  • Fixed page size always being restricted to 4k on Linux arm64.#35184
  • Security: backported fix forCVE-2022-2478.#35099
  • Security: backported fix for chromium:1334864.#35097

electron v18.3.6

Release Notes for v18.3.6

Fixes

  • Fixed a crash when callingBrowserWindow.setEnabled().#34973 (Also in19,20)
  • Fixed a potential crash when changing window settings after initializing WCO with an invalidtitleBarStyle.#34873 (Also in17,19,20)
  • Fixed alwaysOnTop BrowserWindow option for X11 Linux.#34911 (Also in19,20)
  • Fixed an issue where BrowserWindows on macOS were incorrectly marked as resizable.#34907 (Also in19,20)
  • Fixed an issue where Windows Control Overlay buttons did not respect maximizable/minimizable/closable states of a BrowserWindow.#34720 (Also in17,19,20)
  • Fixed an issue where callingBrowserWindow.setRepresentedFilename on macOS withtitlebarStyle: 'hiddenInset' ortitlebarStyle: 'hidden' inadvertently moves the traffic light location.#34847 (Also in19,20)
  • Fixed an issue where someBrowserWindows opened from new links wouldn't properly load URLs.#34910 (Also in19)
  • Fixed an issue where the minimize button with WCO enabled would incorrectly be highlighted in some cases.#34838 (Also in17,19,20)
  • Fixed an issue with background colors being improperly applied toBrowserViews on Windows.#33478 (Also in16)
  • Fixed empty app_id when running under wayland.#34877 (Also in19,20)
  • Fixed missing Sec-CH-UA headers and empty navigator.userAgentData.#34758 (Also in17,19,20)
  • Fixed symbol generation on 32-bit Windows release builds.#35096 (Also in19,20)
  • Prevent brief display of "Ozone X11" in window title on Linux.#34943

Other Changes

electron v18.3.5

Release Notes for v18.3.5

... (truncated)

Changelog

Sourced fromelectron's changelog.

Breaking Changes

Breaking changes will be documented here, and deprecation warnings added to JS code where possible, at leastone major version before the change is made.

Types of Breaking Changes

This document uses the following convention to categorize breaking changes:

  • API Changed: An API was changed in such a way that code that has not been updated is guaranteed to throw an exception.
  • Behavior Changed: The behavior of Electron has changed, but not in such a way that an exception will necessarily be thrown.
  • Default Changed: Code depending on the old default may break, not necessarily throwing an exception. The old behavior can be restored by explicitly specifying the value.
  • Deprecated: An API was marked as deprecated. The API will continue to function, but will emit a deprecation warning, and will be removed in a future release.
  • Removed: An API or feature was removed, and is no longer supported by Electron.

Planned Breaking API Changes (23.0)

Removed: BrowserWindowscroll-touch-* events

The deprecatedscroll-touch-begin,scroll-touch-end andscroll-touch-edgeevents on BrowserWindow have been removed. Instead, use the newly availableinput-event event on WebContents.

// Removed in Electron 23.0win.on('scroll-touch-begin',scrollTouchBegin)win.on('scroll-touch-edge',scrollTouchEdge)win.on('scroll-touch-end',scrollTouchEnd)// Replace withwin.webContents.on('input-event',(_,event)=>{if(event.type==='gestureScrollBegin'){scrollTouchBegin()}elseif(event.type==='gestureScrollUpdate'){scrollTouchEdge()}elseif(event.type==='gestureScrollEnd'){scrollTouchEnd()}})

Removed:webContents.incrementCapturerCount(stayHidden, stayAwake)

ThewebContents.incrementCapturerCount(stayHidden, stayAwake) function has been removed.It is now automatically handled bywebContents.capturePage when a page capture completes.

constw=newBrowserWindow({show:false})// Removed in Electron 23w.webContents.incrementCapturerCount()</tr></table>

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from theSecurity Alerts page.

@dependabotdependabotbot added the dependenciesPull requests that update a dependency file labelNov 10, 2022
Bumps [electron](https://github.com/electron/electron) from 7.3.3 to 18.3.7.- [Release notes](https://github.com/electron/electron/releases)- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)- [Commits](electron/electron@v7.3.3...v18.3.7)---updated-dependencies:- dependency-name: electron  dependency-type: direct:development...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/electron-18.3.7 branch fromd2444bd to703b418CompareFebruary 5, 2023 06:30
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependenciesPull requests that update a dependency file

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp