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 dependencies group across 1 directory with 10 updates #43

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the dependencies group with 10 updates in the / directory:

Package From To
@elgato/streamdeck 0.3.0 1.1.0
@elgato/cli 0.3.1 1.0.0
@rollup/plugin-commonjs 26.0.1 28.0.0
@rollup/plugin-node-resolve 15.2.3 15.3.0
@rollup/plugin-typescript 11.1.6 12.1.0
@types/node 20.14.10 22.7.5
@types/ws 8.5.11 8.5.12
rollup 4.18.1 4.24.0
tslib 2.6.3 2.7.0
typescript 5.5.3 5.6.3

Updates @elgato/streamdeck from 0.3.0 to 1.1.0

Changelog

Sourced from @​elgato/streamdeck's changelog.

1.1.0

✨ New

♻️ Update

  • Update SingletonAction.actions to return an Enumerable.

1.0.1

♻️ Update

  • Update minimum allowed log level in production to be DEBUG to assist with debugging (default remains INFO).

1.0.0

✨ New

  • Add action tracking, allowing access to currently visible actions.
    • streamDeck.actions — all visible actions.
    • SingletonAction.actions — visible actions that match the action's UUID.
  • Add setTitle to DialAction, allowing you to set the title of a layout.
  • Add Enumerable class for creating readonly collections.
  • Add device information to Action provided in event arguments.
  • Add iterator helpers to streamDeck.devices and streamDeck.actions.

🐞 Fix

  • Fix missing language support for Korean (ko).
  • Fix TypeScript declaration incorrectly exporting types as classes.

♻️ Update

  • Remove streamDeck.actions.createController in favor of streamDeck.actions.getActionById.
  • Remove Action.sendToPropertyInspector in favour of streamDeck.ui.current.sendToPropertyInspector.
  • Remove ev.deviceId in favour of ev.action.device.id.
  • Rename onDidConnect to onConnected within the UI.

⬆️ Upgrading

  • For information on breaking changes, and migrating to the this version, read more about upgrading to v1.0.0.

0.4.0-beta

✨ New

  • Package can now be imported in both Node.js and the browser (in the scope of a property inspector).
  • Add support for property inspector.

... (truncated)

Upgrade guide

Sourced from @​elgato/streamdeck's upgrade guide.

Upgrade Guide

Versions

v1.0.0

Keys and Dials

Actions provided to events have been improved to more accurately reflect methods and information available to them. For this reason, some methods may not be available until type-narrowing within events that apply to both keys and dials.

The following methods are now accessible through type-narrowing.

  • KeyAction, narrowed using isKey(), provides access to:
    • setImage (options)
    • setState
    • setTitle (options)
    • showOk
  • DialAction, narrowed using isDial(), provides access to:
    • setFeedback
    • setFeedbackLayout
    • setTriggerDescription

Before

onWillAppear(ev: WillAppearEvent): void {
    ev.action.setFeedback({
        title: "Hello world"
    });
    ev.action.setState(0);
}

After

onWillAppear(ev: WillAppearEvent): void {
    if (ev.action.isDial()) { // <- Check the action is a dial.
        ev.action.setFeedback({
            title: "Hello world"
</tr></table> 

... (truncated)

Commits

Updates @elgato/cli from 0.3.1 to 1.0.0

Changelog

Sourced from @​elgato/cli's changelog.

1.0.0

♻️ Update

  • Update new plugins to use @elgato/streamdeck version 1.
  • Update CDN of property inspectors.
  • Bump dependencies of Stream Deck CLI.
  • Bump dependencies of plugins scaffolded with streamdeck create.

0.3.2

♻️ Update

  • Update template to include a property inspector.
  • Update template to auto-resolve JSON schemas for the manifest and layouts.
  • Remove subjective VS Code settings.
Commits

Updates @rollup/plugin-commonjs from 26.0.1 to 28.0.0

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v28.0.0

2024-09-23

Breaking Changes

  • chore: switch to fdir for fewer dependencies (#1741)

v27.0.0

2024-09-23

Breaking Changes

  • feat!: default strictRequires to true (#1639)
  • fix!: replace top-level this with exports name (#1618)

v26.0.3

2024-09-23

Updates

  • chore: revert #1618 (e98927b)
Commits
  • 0af45c2 chore(release): commonjs v28.0.0
  • c2a05eb chore(commonjs): switch to fdir for fewer dependencies (#1741)
  • b6fa3b1 chore(release): commonjs v27.0.0
  • 8f02987 feat(commonjs)!: default strictRequires to true (#1639)
  • 274b72c chore(repo): cherry-pick. commonjs. replace top-level this with exports name ...
  • e2a7195 chore(release): commonjs v26.0.3
  • e98927b chore(commonjs): revert #1618
  • 1e73857 chore(release): commonjs v26.0.2
  • 2fdd077 fix(commonjs): replace top-level this with exports name (#1618)
  • See full diff in compare view

Updates @rollup/plugin-node-resolve from 15.2.3 to 15.3.0

Changelog

Sourced from @​rollup/plugin-node-resolve's changelog.

v15.3.0

2024-09-23

Features

  • feat: allow preferBuiltins to be a function (#1694)

v15.2.4

2024-09-22

Updates

  • chore: remove is-builtin-module (#1735)
Commits
  • a8e326d chore(release): node-resolve v15.3.0
  • 032055b feat(node-resolve): allow preferBuiltins to be a function (#1694)
  • 6d4bb6b chore(release): node-resolve v15.2.4
  • 190aa21 chore(node-resolve): remove is-builtin-module (#1735)
  • dcd8da5 chore(repo): use @dot/versioner for releases (#1612)
  • 1caee89 chore(release): node-resolve v15.2.3
  • See full diff in compare view

Updates @rollup/plugin-typescript from 11.1.6 to 12.1.0

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.0

2024-09-22

Features

  • feat: add transformers factory. (#1668)

v12.0.0

2024-09-22

Breaking Changes

  • fix!: correctly resolve filenames of declaration files for output.file (#1728)
Commits
  • 28b9701 chore(release): typescript v12.1.0
  • 2c09b57 feat(typescript): add transformers factory. (#1668)
  • 5afda37 chore(release): typescript v12.0.0
  • a85b649 fix(typescript)!: correctly resolve filenames of declaration files for `outpu...
  • See full diff in compare view

Updates @types/node from 20.14.10 to 22.7.5

Commits

Updates @types/ws from 8.5.11 to 8.5.12

Commits

Updates rollup from 4.18.1 to 4.24.0

Release notes

Sourced from rollup's releases.

v4.24.0

4.24.0

2024-10-02

Features

  • Support preserving and transpiling JSX syntax (#5668)

Pull Requests

v4.23.0

4.23.0

2024-10-01

Features

  • Collect all emitted names and originalFileNames for assets (#5686)

Pull Requests

v4.22.5

4.22.5

2024-09-27

Bug Fixes

  • Allow parsing of certain unicode characters again (#5674)

Pull Requests

v4.22.4

4.22.4

2024-09-21

Bug Fixes

... (truncated)

Changelog

Sourced from rollup's changelog.

4.24.0

2024-10-02

Features

  • Support preserving and transpiling JSX syntax (#5668)

Pull Requests

4.23.0

2024-10-01

Features

  • Collect all emitted names and originalFileNames for assets (#5686)

Pull Requests

4.22.5

2024-09-27

Bug Fixes

  • Allow parsing of certain unicode characters again (#5674)

Pull Requests

4.22.4

2024-09-21

Bug Fixes

  • Fix a vulnerability in generated code that affects IIFE, UMD and CJS bundles when run in a browser context (#5671)

Pull Requests

... (truncated)

Commits

Updates tslib from 2.6.3 to 2.7.0

Release notes

Sourced from tslib's releases.

v2.7.0

What's Changed

Full Changelog: microsoft/tslib@v2.6.3...v2.7.0

Commits
  • 6abc075 Bump version to 2.7.0.
  • 227b5d6 Use global 'Iterator.prototype' for downlevel generators (#267)
  • 4f2902c Implement deterministic collapse of 'await' in 'await using' (#262)
  • See full diff in compare view

Updates typescript from 5.5.3 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • 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 dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@elgato/streamdeck](https://github.com/elgatosf/streamdeck) | `0.3.0` | `1.1.0` |
| [@elgato/cli](https://github.com/elgatosf/cli) | `0.3.1` | `1.0.0` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `26.0.1` | `28.0.0` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `15.2.3` | `15.3.0` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `11.1.6` | `12.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.10` | `22.7.5` |
| [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.11` | `8.5.12` |
| [rollup](https://github.com/rollup/rollup) | `4.18.1` | `4.24.0` |
| [tslib](https://github.com/Microsoft/tslib) | `2.6.3` | `2.7.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.3` | `5.6.3` |



Updates `@elgato/streamdeck` from 0.3.0 to 1.1.0
- [Changelog](https://github.com/elgatosf/streamdeck/blob/main/CHANGELOG.md)
- [Upgrade guide](https://github.com/elgatosf/streamdeck/blob/main/UPGRADE.md)
- [Commits](elgatosf/streamdeck@v0.3.0...v1.1.0)

Updates `@elgato/cli` from 0.3.1 to 1.0.0
- [Changelog](https://github.com/elgatosf/cli/blob/main/CHANGELOG.md)
- [Commits](elgatosf/cli@v0.3.1...v1.0.0)

Updates `@rollup/plugin-commonjs` from 26.0.1 to 28.0.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.0/packages/commonjs)

Updates `@rollup/plugin-node-resolve` from 15.2.3 to 15.3.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v15.3.0/packages/node-resolve)

Updates `@rollup/plugin-typescript` from 11.1.6 to 12.1.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.0/packages/typescript)

Updates `@types/node` from 20.14.10 to 22.7.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/ws` from 8.5.11 to 8.5.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

Updates `rollup` from 4.18.1 to 4.24.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.18.1...v4.24.0)

Updates `tslib` from 2.6.3 to 2.7.0
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.6.3...v2.7.0)

Updates `typescript` from 5.5.3 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.3...v5.6.3)

---
updated-dependencies:
- dependency-name: "@elgato/streamdeck"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@elgato/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-commonjs"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/ws"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 14, 2024
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