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

build(deps): bump the kopia-ui-npm-dependencies group in /app with 4 updates #263

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 1, 2023

Bumps the kopia-ui-npm-dependencies group in /app with 4 updates: electron-log, @playwright/test, concurrently and electron.

Updates electron-log from 4.4.8 to 5.0.0

Changelog

Sourced from electron-log's changelog.

5.0.0

Core

  • Now it's a time to use modern ES instead of ES5. It was a joy to use old-fashioned ES5, but since the library grows it becomes harder to follow its restrictions. Starting from v5 the library requires Node.js 14+ or Electron 13 at least.
  • Now a renderer process just sends log data to the main through IPC, so only the main logger can be configured. See initialize for more information
  • A new tranforms property is added for each transport. It allows to configure transformations preformed on message data. See transforms for more information.
  • log.create(logId) is replaced by log.create({ logId })

File transport

  • archiveLog options is renamed to archiveLogFn
  • resolvePath options is renamed to resolvePathFn
  • All logs are written to main.log file. If you want to write renderer logs to a separated file, you can do that by overriding resolvePathFn

Console transport

  • writeFn callback is added. By default, it just passes message.data to console.log function

Remote transport

  • onError is renamed to processErrorFn({ error, message, request })
  • transformBody is renamed to makeBodyFn({ logger, message, transport })

Electron event logger

To simplify app debugging the Electron event logging was implemented.

4.4.0

  • Disable auto-loading of electron-log in the main process for using by ipc transport

4.3.0

  • Add transport.file.inspectOptions
  • transport.file.depth is deprecated

4.2.3

  • Add transports.remote.onError option
  • Add logMessageWithTransports method

... (truncated)

Commits
  • 8ae8988 5.0.0
  • 440444c chore: Update changelog
  • ea7f7ce fix(file): Prevent creating default log dir, closes #368
  • 97f0174 chore(e2e): Increase e2e timeouts
  • d1c7969 fix(console): Inconsistent console transport API, closes #367
  • 32e5ff8 fix(event): console-message should pass only error messages
  • 4bd68a1 chore(event): Add properties to EventLogger definitions
  • 11cc0d2 v5.0.0-beta.26
  • 16e239f feat(error): Add event logger
  • c2e481b feat(error): Add event logger
  • Additional commits viewable in compare view

Updates @playwright/test from 1.38.1 to 1.39.0

Release notes

Sourced from @​playwright/test's releases.

v1.39.0

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});
test('pass', async ({ page }) => {
await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';
export const test = mergeTests(dbTest, a11yTest);

import { test } from './fixtures';
test('passes', async ({ database, page, a11y }) => {
// use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';
export const test = mergeTests(dbTest, a11yTest);
</tr></table>

... (truncated)

Commits

Updates concurrently from 8.2.1 to 8.2.2

Release notes

Sourced from concurrently's releases.

v8.2.2

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2

Commits

Updates electron from 26.2.4 to 27.0.3

Release notes

Sourced from electron's releases.

electron v27.0.3

Release Notes for v27.0.3

Fixes

Other Changes

  • Updated Chromium to 118.0.5993.120. #40404

electron v27.0.2

Release Notes for v27.0.2

Fixes

  • Functions called over the contextBridge are now called with the expected receiver (this). #40262 (Also in 28)

Other Changes

  • Backported fix for 1473422. #40280

electron v27.0.1

Release Notes for v27.0.1

Fixes

  • Fixed an issue where Windows Toast notifications weren't properly dismissed from the Action Center on notification.close() if they'd previously been dismissed. #40244 (Also in 26, 28)
  • Fixed an issue where calling loadURL during some webContents url loading events could crash. #40162 (Also in 24, 25, 26)
  • Fixed an issue where fully occluded windows would return an empty image from webContents.capturePage() on Windows and Linux. #40188 (Also in 25, 26, 28)
  • Fixed an issue with webContents interaction with fullscreen and WCO on macOS. #40217 (Also in 25, 26, 28)
  • Fixed some redundant permission dialogs while screen sharing on Wayland. #40193 (Also in 26, 28)

Other Changes

  • Updated Chromium to 118.0.5993.89. #40240

electron v27.0.0

Release Notes for v27.0.0

Stack Upgrades

Breaking Changes

  • macOS 10.13 and 10.14 support has been removed 38891
  • The ipcRenderer.sendTo() API has been deprecated in favor of sharing a MessageChannel between two renderers. #39091

... (truncated)

Commits
  • 0beed97 chore: bump chromium to 118.0.5993.120 (27-x-y) (#40404)
  • a22f611 build: actually show github upload output if verbose is true. (#40399)
  • 4487ff5 fix: navigator.keyboard.lock() fullscreen exit handling (#40388)
  • 6b87170 chore: bump chromium to 118.0.5993.119 (27-x-y) (#40355)
  • 1e24b13 build: fix ":electron_lib_arc" / "chromium_src:chrome_lib_arc" dependencies (...
  • ef2745f fix: prevent PopUpButtonHandler premature dealloc (#40347)
  • 8f90a40 build: upload slow, more time good (#40337)
  • e43beae chore: bump chromium to 118.0.5993.117 (27-x-y) (#40326)
  • 7ac2e49 test: add spec for app.getAppMetrics() for utility process (#40317)
  • 301f3da test: add spec for child-process-gone event for utility process (#40305)
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the kopia-ui-npm-dependencies group in /app with 4 updates: [electron-log](https://github.com/megahertz/electron-log), [@playwright/test](https://github.com/microsoft/playwright), [concurrently](https://github.com/open-cli-tools/concurrently) and [electron](https://github.com/electron/electron).


Updates `electron-log` from 4.4.8 to 5.0.0
- [Changelog](https://github.com/megahertz/electron-log/blob/master/CHANGELOG.md)
- [Commits](megahertz/electron-log@v4.4.8...v5.0.0)

Updates `@playwright/test` from 1.38.1 to 1.39.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.38.1...v1.39.0)

Updates `concurrently` from 8.2.1 to 8.2.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v8.2.1...v8.2.2)

Updates `electron` from 26.2.4 to 27.0.3
- [Release notes](https://github.com/electron/electron/releases)
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
- [Commits](electron/electron@v26.2.4...v27.0.3)

---
updated-dependencies:
- dependency-name: electron-log
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: electron
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: kopia-ui-npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Jan 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/app/kopia-ui-npm-dependencies-8e0b0ab15e branch January 1, 2024 23:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants