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

Bump the npm_and_yarn group across 1 directory with 24 updates #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the npm_and_yarn group with 19 updates in the / directory:

Package From To
electron 10.1.4 22.3.25
got 11.8.0 11.8.6
@electron-forge/cli 6.0.0-beta.54 6.4.2
@electron-forge/maker-deb 6.0.0-beta.54 6.4.2
@electron-forge/maker-rpm 6.0.0-beta.54 6.4.2
@electron-forge/maker-squirrel 6.0.0-beta.54 6.4.2
@electron-forge/maker-zip 6.0.0-beta.54 6.4.2
http-cache-semantics 4.1.0 4.1.1
ini 1.3.5 1.3.8
json-schema 0.2.3 0.4.0
jsprim 1.4.1 1.4.2
minimist 1.2.5 1.2.8
node-fetch 2.6.1 2.7.0
tar 6.0.5 6.2.1
tar 4.4.13 6.2.1
qs 6.5.2 6.5.3
tough-cookie 2.5.0 removed
electron-rebuild 2.3.2 3.2.9
ws 7.3.1 7.5.10
y18n 5.0.4 5.0.8

Updates electron from 10.1.4 to 22.3.25

Changelog

Sourced from electron's changelog.

Breaking Changes

Breaking changes will be documented here, and deprecation warnings added to JS code where possible, at least one 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 (32.0)

Removed: File.path

The nonstandard path property of the Web File object was added in an early version of Electron as a convenience method for working with native files when doing everything in the renderer was more common. However, it represents a deviation from the standard and poses a minor security risk as well, so beginning in Electron 32.0 it has been removed in favor of the webUtils.getPathForFile method.

// Before (renderer)
const file = document.querySelector('input[type=file]')
alert(Uploaded file path was: ${file.path})

// After (renderer)
const file = document.querySelector('input[type=file]')
electron.showFilePath(file)
// (preload)
const { contextBridge, webUtils } = require('electron')
contextBridge.exposeInMainWorld('electron', {
showFilePath (file) {
// It's best not to expose the full file path to the web content if
// possible.
const path = webUtils.getPathForFile(file)
alert(Uploaded file path was: ${path})
}
})

Deprecated: clearHistory, canGoBack, goBack, canGoForward, goForward, canGoToOffset, goToOffset on WebContents

The navigation-related APIs are now deprecated.

... (truncated)

Commits

Updates got from 11.8.0 to 11.8.6

Release notes

Sourced from got's releases.

v11.8.6

  • Destroy request object after successful response

sindresorhus/got@v11.8.5...v11.8.6

v11.8.5

sindresorhus/got@v11.8.4...v11.8.5

v11.8.3

  • Bump cacheable-request dependency (#1921) 9463bb6
  • Fix HTTPError missing .code property (#1739) 0e167b8

sindresorhus/got@v11.8.2...v11.8.3

v11.8.2

  • Make the dnsCache option lazy (#1529) 3bd245f This slightly improves Got startup performance and fixes an issue with Jest.

sindresorhus/got@v11.8.1...v11.8.2

v11.8.1

  • Do not throw on custom stack traces (#1491) 4c815c3a609eb74d0eb139414d9996b4f65dc3c0
Commits

Updates @electron-forge/cli from 6.0.0-beta.54 to 6.4.2

Release notes

Sourced from @​electron-forge/cli's releases.

v6.4.2

What's Changed

Full Changelog: electron/forge@v6.4.1...v6.4.2

v6.4.1

What's Changed

Full Changelog: electron/forge@v6.4.0...v6.4.1

v6.4.0

What's Changed

Full Changelog: electron/forge@v6.3.0...v6.4.0

v6.3.0

What's Changed

New Contributors

Full Changelog: electron/forge@v6.2.1...v6.3.0

v6.2.1

What's Changed

... (truncated)

Changelog

Sourced from @​electron-forge/cli's changelog.

6.0.2 (2022-11-14)

6.0.1 (2022-11-08)

6.0.0 (2022-11-02)

6.0.0-beta.75 (2022-11-01)

New Features

6.0.0-beta.74 (2022-11-01)

Bug Fixes
  • do not proxify class instances in forge config (#3039) (a89ed7d3)
Other Changes
  • add proper package test for webpack ts template (#3040) (6e9cca35)

6.0.0-beta.73 (2022-11-01)

Bug Fixes

6.0.0-beta.72 (2022-10-31)

6.0.0-beta.71 (2022-10-31)

Bug Fixes
  • packager: "packaging application" log never stops when building for multiple architectures (#3006) (247f52ab)
  • publish: ignore unnecessary files when publishing to npm (#3024) (ab8ea661)
  • template-base: use minimum instead of exact version when replacing ELECTRON_FORGE/VERSION in templates (#3030) (7aaa7029)
  • use @​electron-forge/cli hint for project resolution (#3023) (b5d05874)
  • restore isProd in the webpack plugin (#3021) (531788ba)

6.0.0-beta.70 (2022-10-28)

Bug Fixes

6.0.0-beta.69 (2022-10-27)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by georgexu99, a new releaser for @​electron-forge/cli since your current version.


Updates @electron-forge/maker-deb from 6.0.0-beta.54 to 6.4.2

Release notes

Sourced from @​electron-forge/maker-deb's releases.

v6.4.2

What's Changed

Full Changelog: electron/forge@v6.4.1...v6.4.2

v6.4.1

What's Changed

Full Changelog: electron/forge@v6.4.0...v6.4.1

v6.4.0

What's Changed

Full Changelog: electron/forge@v6.3.0...v6.4.0

v6.3.0

What's Changed

New Contributors

Full Changelog: electron/forge@v6.2.1...v6.3.0

v6.2.1

What's Changed

... (truncated)

Changelog

Sourced from @​electron-forge/maker-deb's changelog.

6.0.2 (2022-11-14)

6.0.1 (2022-11-08)

6.0.0 (2022-11-02)

6.0.0-beta.75 (2022-11-01)

New Features

6.0.0-beta.74 (2022-11-01)

Bug Fixes
  • do not proxify class instances in forge config (#3039) (a89ed7d3)
Other Changes
  • add proper package test for webpack ts template (#3040) (6e9cca35)

6.0.0-beta.73 (2022-11-01)

Bug Fixes

6.0.0-beta.72 (2022-10-31)

6.0.0-beta.71 (2022-10-31)

Bug Fixes
  • packager: "packaging application" log never stops when building for multiple architectures (#3006) (247f52ab)
  • publish: ignore unnecessary files when publishing to npm (#3024) (ab8ea661)
  • template-base: use minimum instead of exact version when replacing ELECTRON_FORGE/VERSION in templates (#3030) (7aaa7029)
  • use @​electron-forge/cli hint for project resolution (#3023) (b5d05874)
  • restore isProd in the webpack plugin (#3021) (531788ba)

6.0.0-beta.70 (2022-10-28)

Bug Fixes

6.0.0-beta.69 (2022-10-27)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by georgexu99, a new releaser for @​electron-forge/maker-deb since your current version.


Updates @electron-forge/maker-rpm from 6.0.0-beta.54 to 6.4.2

Release notes

Sourced from @​electron-forge/maker-rpm's releases.

v6.4.2

What's Changed

Full Changelog: electron/forge@v6.4.1...v6.4.2

v6.4.1

What's Changed

Full Changelog: electron/forge@v6.4.0...v6.4.1

v6.4.0

What's Changed

Full Changelog: electron/forge@v6.3.0...v6.4.0

v6.3.0

What's Changed

New Contributors

Full Changelog: electron/forge@v6.2.1...v6.3.0

v6.2.1

What's Changed

... (truncated)

Changelog

Sourced from @​electron-forge/maker-rpm's changelog.

6.0.2 (2022-11-14)

6.0.1 (2022-11-08)

6.0.0 (2022-11-02)

6.0.0-beta.75 (2022-11-01)

New Features

6.0.0-beta.74 (2022-11-01)

Bug Fixes
  • do not proxify class instances in forge config (#3039) (a89ed7d3)
Other Changes
  • add proper package test for webpack ts template (#3040) (6e9cca35)

6.0.0-beta.73 (2022-11-01)

Bug Fixes

6.0.0-beta.72 (2022-10-31)

6.0.0-beta.71 (2022-10-31)

Bug Fixes
  • packager: "packaging application" log never stops when building for multiple architectures (#3006) (247f52ab)
  • publish: ignore unnecessary files when publishing to npm (#3024) (ab8ea661)
  • template-base: use minimum instead of exact version when replacing ELECTRON_FORGE/VERSION in templates (#3030) (7aaa7029)
  • use @​electron-forge/cli hint for project resolution (#3023) (b5d05874)
  • restore isProd in the webpack plugin (#3021) (531788ba)

6.0.0-beta.70 (2022-10-28)

Bug Fixes

6.0.0-beta.69 (2022-10-27)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by georgexu99, a new releaser for @​electron-forge/maker-rpm since your current version.


Updates @electron-forge/maker-squirrel from 6.0.0-beta.54 to 6.4.2

Release notes

Sourced from @​electron-forge/maker-squirrel's releases.

v6.4.2

What's Changed

Full Changelog: electron/forge@v6.4.1...v6.4.2

v6.4.1

What's Changed

Full Changelog: electron/forge@v6.4.0...v6.4.1

v6.4.0

What's Changed

Full Changelog: electron/forge@v6.3.0...v6.4.0

v6.3.0

What's Changed

New Contributors

Full Changelog: electron/forge@v6.2.1...v6.3.0

v6.2.1

What's Changed

... (truncated)

Changelog

Sourced from @​electron-forge/maker-squirrel's changelog.

6.0.2 (2022-11-14)

6.0.1 (2022-11-08)

6.0.0 (2022-11-02)

6.0.0-beta.75 (2022-11-01)

New Features

6.0.0-beta.74 (2022-11-01)

Bug Fixes
  • do not proxify class instances in forge config (#3039) (a89ed7d3)
Other Changes
  • add proper package test for webpack ts template (#3040) (6e9cca35)

6.0.0-beta.73 (2022-11-01)

Bug Fixes

6.0.0-beta.72 (2022-10-31)

6.0.0-beta.71 (2022-10-31)

Bug Fixes
  • packager: "packaging application" log never stops when building for multiple architectures (#3006) (247f52ab)
  • publish: ignore unnecessary files when publishing to npm (#3024) (ab8ea661)
  • template-base: use minimum instead of exact version when replacing ELECTRON_FORGE/VERSION in templates (#3030) (7aaa7029)
  • use @​electron-forge/cli hint for project resolution (#3023) (b5d05874)
  • restore isProd in the webpack plugin (#3021) (531788ba)

6.0.0-beta.70 (2022-10-28)

Bug Fixes

6.0.0-beta.69 (2022-10-27)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by georgexu99, a new releaser for @​electron-forge/maker-squirrel since your current version.


Updates @electron-forge/maker-zip from 6.0.0-beta.54 to 6.4.2

Release notes

Sourced from @​electron-forge/maker-zip's releases.

v6.4.2

What's Changed

Full Changelog: electron/forge@v6.4.1...v6.4.2

v6.4.1

What's Changed

Full Changelog:

Bumps the npm_and_yarn group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [electron](https://github.com/electron/electron) | `10.1.4` | `22.3.25` |
| [got](https://github.com/sindresorhus/got) | `11.8.0` | `11.8.6` |
| [@electron-forge/cli](https://github.com/electron/forge) | `6.0.0-beta.54` | `6.4.2` |
| [@electron-forge/maker-deb](https://github.com/electron/forge) | `6.0.0-beta.54` | `6.4.2` |
| [@electron-forge/maker-rpm](https://github.com/electron/forge) | `6.0.0-beta.54` | `6.4.2` |
| [@electron-forge/maker-squirrel](https://github.com/electron/forge) | `6.0.0-beta.54` | `6.4.2` |
| [@electron-forge/maker-zip](https://github.com/electron/forge) | `6.0.0-beta.54` | `6.4.2` |
| [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) | `4.1.0` | `4.1.1` |
| [ini](https://github.com/npm/ini) | `1.3.5` | `1.3.8` |
| [json-schema](https://github.com/kriszyp/json-schema) | `0.2.3` | `0.4.0` |
| [jsprim](https://github.com/joyent/node-jsprim) | `1.4.1` | `1.4.2` |
| [minimist](https://github.com/minimistjs/minimist) | `1.2.5` | `1.2.8` |
| [node-fetch](https://github.com/node-fetch/node-fetch) | `2.6.1` | `2.7.0` |
| [tar](https://github.com/isaacs/node-tar) | `6.0.5` | `6.2.1` |
| [tar](https://github.com/isaacs/node-tar) | `4.4.13` | `6.2.1` |
| [qs](https://github.com/ljharb/qs) | `6.5.2` | `6.5.3` |
| [tough-cookie](https://github.com/salesforce/tough-cookie) | `2.5.0` | `removed` |
| [electron-rebuild](https://github.com/electron/electron-rebuild) | `2.3.2` | `3.2.9` |
| [ws](https://github.com/websockets/ws) | `7.3.1` | `7.5.10` |
| [y18n](https://github.com/yargs/y18n) | `5.0.4` | `5.0.8` |



Updates `electron` from 10.1.4 to 22.3.25
- [Release notes](https://github.com/electron/electron/releases)
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
- [Commits](electron/electron@v10.1.4...v22.3.25)

Updates `got` from 11.8.0 to 11.8.6
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v11.8.0...v11.8.6)

Updates `@electron-forge/cli` from 6.0.0-beta.54 to 6.4.2
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v6.0.0-beta.54...v6.4.2)

Updates `@electron-forge/maker-deb` from 6.0.0-beta.54 to 6.4.2
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v6.0.0-beta.54...v6.4.2)

Updates `@electron-forge/maker-rpm` from 6.0.0-beta.54 to 6.4.2
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v6.0.0-beta.54...v6.4.2)

Updates `@electron-forge/maker-squirrel` from 6.0.0-beta.54 to 6.4.2
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v6.0.0-beta.54...v6.4.2)

Updates `@electron-forge/maker-zip` from 6.0.0-beta.54 to 6.4.2
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v6.0.0-beta.54...v6.4.2)

Updates `hosted-git-info` from 2.8.8 to 2.8.9
- [Release notes](https://github.com/npm/hosted-git-info/releases)
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
- [Commits](npm/hosted-git-info@v2.8.8...v2.8.9)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `ini` from 1.3.5 to 1.3.8
- [Release notes](https://github.com/npm/ini/releases)
- [Changelog](https://github.com/npm/ini/blob/main/CHANGELOG.md)
- [Commits](npm/ini@v1.3.5...v1.3.8)

Updates `json-schema` from 0.2.3 to 0.4.0
- [Commits](kriszyp/json-schema@v0.2.3...v0.4.0)

Updates `jsprim` from 1.4.1 to 1.4.2
- [Changelog](https://github.com/TritonDataCenter/node-jsprim/blob/v1.4.2/CHANGES.md)
- [Commits](TritonDataCenter/node-jsprim@v1.4.1...v1.4.2)

Updates `lodash` from 4.17.20 to 4.17.21
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.20...4.17.21)

Updates `minimist` from 1.2.5 to 1.2.8
- [Changelog](https://github.com/minimistjs/minimist/blob/main/CHANGELOG.md)
- [Commits](minimistjs/minimist@v1.2.5...v1.2.8)

Updates `node-fetch` from 2.6.1 to 2.7.0
- [Release notes](https://github.com/node-fetch/node-fetch/releases)
- [Commits](node-fetch/node-fetch@v2.6.1...v2.7.0)

Updates `tar` from 6.0.5 to 6.2.1
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v6.0.5...v6.2.1)

Updates `tar` from 4.4.13 to 6.2.1
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v6.0.5...v6.2.1)

Updates `normalize-url` from 4.5.0 to 6.1.0
- [Release notes](https://github.com/sindresorhus/normalize-url/releases)
- [Commits](sindresorhus/normalize-url@v4.5.0...v6.1.0)

Updates `path-parse` from 1.0.6 to 1.0.7
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

Updates `plist` from 3.0.1 to 3.1.0
- [Release notes](https://github.com/TooTallNate/node-plist/releases)
- [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md)
- [Commits](https://github.com/TooTallNate/node-plist/commits)

Updates `qs` from 6.5.2 to 6.5.3
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.5.2...v6.5.3)

Removes `tough-cookie`

Updates `electron-rebuild` from 2.3.2 to 3.2.9
- [Release notes](https://github.com/electron/electron-rebuild/releases)
- [Changelog](https://github.com/electron/rebuild/blob/main/.releaserc.json)
- [Commits](electron/rebuild@v2.3.2...v3.2.9)

Updates `ws` from 7.3.1 to 7.5.10
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.3.1...7.5.10)

Updates `y18n` from 5.0.4 to 5.0.8
- [Release notes](https://github.com/yargs/y18n/releases)
- [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md)
- [Commits](yargs/y18n@v5.0.4...v5.0.8)

---
updated-dependencies:
- dependency-name: electron
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: got
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@electron-forge/cli"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@electron-forge/maker-deb"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@electron-forge/maker-rpm"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@electron-forge/maker-squirrel"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@electron-forge/maker-zip"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: hosted-git-info
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ini
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: json-schema
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: jsprim
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: lodash
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimist
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: node-fetch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: normalize-url
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: path-parse
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: plist
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: qs
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tough-cookie
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: electron-rebuild
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: y18n
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants