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

chore(deps): bump the production-dependencies group with 3 updates #1637

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 24, 2023

Bumps the production-dependencies group with 3 updates: lit-html, telegraf and lit.

Updates lit-html from 2.8.0 to 3.0.0

Release notes

Sourced from lit-html's releases.

[email protected]

Major Changes

  • #3756 f06f7972 - Drop IE11 support

  • #3759 1db01376 - Use replaceWith() for SVG templates

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

Patch Changes

[email protected]

Minor Changes

Patch Changes

Changelog

Sourced from lit-html's changelog.

3.0.0

Major Changes

  • #3756 f06f7972 - Drop IE11 support

  • #3759 1db01376 - Use replaceWith() for SVG templates

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

Patch Changes

3.0.0-pre.1

Minor Changes

Patch Changes

3.0.0-pre.0

Major Changes

  • #3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #3759 1db01376 - Use replaceWith() for SVG templates

  • #3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3756 f06f7972 - Drop IE11 support

Patch Changes

Commits
  • c4818c5 Version Packages (#4279)
  • 76d73c6 Version Packages (pre) (#4246)
  • 77e9b48 Put types on Map, Set, etc constructor calls (#4202)
  • f37ff4d Merge branch 'main' into aug-21-merge-3.0
  • 5354ab1 [infra][lit-labs/compiler] lit-html tests are now also compiled and tested (#...
  • fcaf8cb Merge branch main into 3.0
  • 95302a0 Remove ie11 typings from lit-html.
  • 6c97a2b Merge main into 3.0
  • 2133904 [lit-html] change CompiledTemplate h field to a TemplateStringsArray (#3987)
  • e70ed38 Optimize lit 3.0's size, add a regression test (#3948)
  • Additional commits viewable in compare view

Updates telegraf from 4.13.1 to 4.15.0

Release notes

Sourced from telegraf's releases.

v4.15.0

This is a rather minor release.

anyOf and allOf filter combinators

v4.11.0 introduced support for type-guard filters in Composer::on, which allowed you to filter updates based on their content.

This release adds two new combinators to the filter API: anyOf and allOf. This will play very nicely with custom filters. For example:

import { anyOf, allOf } from "telegraf/filters";
// must match all filters
bot.on(allOf(message(), isGroup), ctx => {
// ...
});

Deprecating hookPath

The confusingly named hookPath in bot.launch webhook options is now deprecated. It will be removed in the next major release. You can start using path instead, today.


Meanwhile, we're working on new modules to add to the Telegraf ecosystem. Look forward to them, and join discussions in the official Telegraf chat!

Commits
  • e5c34fa feat: expose Guarded and add update version
  • e1de78a feat: deprecate hookPath in favour of path
  • b3b160a feat(filters): anyOf & allOf
  • 29febe5 chore: run issue locking only once a day
  • c38ecc3 ci: update to latest actions/*
  • 275f211 maintenance!: lock old and outdated issues
  • 1d7e61b chore: minor cleanup
  • 78aac37 chore: update types
  • 3d3af98 chore: update author and copyright statement
  • ff5c56b feat: update to API 6.9
  • Additional commits viewable in compare view

Updates lit from 2.8.0 to 3.0.0

Release notes

Sourced from lit's releases.

@​lit-labs/task@​3.0.0

Major Changes

  • #4004 5beb5f9a - Adds the 'afterUpdate' option for autoRun to Task, and runs tasks by default in hostUpdate() instead of hostUpdated(). 'afterUpdate' is needed to run tasks dependent on DOM updates, but will cause multiple renders of the host element.

  • #4013 a5bf2507 - Add pluggable task args equality functions and deepArrayEquals. Breaking: this removes performTask() and shouldRun() protected methods.

Minor Changes

Patch Changes

[email protected]

Major Changes

  • #3756 f06f7972 - Drop IE11 support

  • #3759 1db01376 - Use replaceWith() for SVG templates

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

Patch Changes

[email protected]

Major Changes

  • #3756 f06f7972 - Drop IE11 support

  • #4146 0f6878dc - Generated accessor for reactive properties now wrap user accessors and automatically call this.requestUpdate() in the setter. As in previous versions, users can still specify noAccessor: true, in which case they should call this.requestUpdate() themselves in the setter if they want to trigger a reactive update.

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3850 7e8491d4 - Delete deprecated queryAssignedNodes behavior and arguments.

    Migrate deprecated usage with a selector argument to use

... (truncated)

Changelog

Sourced from lit's changelog.

3.0.0

Major Changes

  • #3756 f06f7972 - Drop IE11 support

  • #4146 0f6878dc - Generated accessor for reactive properties now wrap user accessors and automatically call this.requestUpdate() in the setter. As in previous versions, users can still specify noAccessor: true, in which case they should call this.requestUpdate() themselves in the setter if they want to trigger a reactive update.

  • #3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #3850 7e8491d4 - Delete deprecated queryAssignedNodes behavior and arguments.

    Migrate deprecated usage with a selector argument to use @queryAssignedElements. E.g.: @queryAssignedNodes('list', true, '.item') to @queryAssignedElements({slot: '', flatten: false, selector: '.item'}).

  • #4254 1040f758 - Change the type of ReactiveElement.renderRoot and return type of ReactiveElement.createRenderRoot() to be HTMLElement | DocumentFragment to match each other and lit-html's render() method.

  • #3759 1db01376 - Use replaceWith() for SVG templates

  • #3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

  • #3896 2eba6997 - Warn on async overrides of performUpdate()

Patch Changes

3.0.0-pre.1

Major Changes

  • #4146 0f6878dc - Generated accessor for reactive properties now wrap user accessors and automatically call this.requestUpdate() in the setter. As in previous versions, users can still specify noAccessor: true, in which case they should call this.requestUpdate() themselves in the setter if they want to trigger a reactive update.

... (truncated)

Commits

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 production-dependencies group with 3 updates: [lit-html](https://github.com/lit/lit/tree/HEAD/packages/lit-html), [telegraf](https://github.com/telegraf/telegraf) and [lit](https://github.com/lit/lit/tree/HEAD/packages/lit).


Updates `lit-html` from 2.8.0 to 3.0.0
- [Release notes](https://github.com/lit/lit/releases)
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit-html/CHANGELOG.md)
- [Commits](https://github.com/lit/lit/commits/[email protected]/packages/lit-html)

Updates `telegraf` from 4.13.1 to 4.15.0
- [Release notes](https://github.com/telegraf/telegraf/releases)
- [Commits](telegraf/telegraf@v4.13.1...v4.15.0)

Updates `lit` from 2.8.0 to 3.0.0
- [Release notes](https://github.com/lit/lit/releases)
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit/CHANGELOG.md)
- [Commits](https://github.com/lit/lit/commits/[email protected]/packages/lit)

---
updated-dependencies:
- dependency-name: lit-html
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: telegraf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from AliMD as a code owner October 24, 2023 11:11
@dependabot dependabot bot added ci Work that improves the continuous integration. dependencies Change in project dependencies. maintenance Generic maintenance tasks. priority-low Nice addition, maybe... someday... labels Oct 24, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 30, 2023

Superseded by #1649.

@dependabot dependabot bot closed this Oct 30, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-a779e2598d branch October 30, 2023 12:02
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 1, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
ci Work that improves the continuous integration. dependencies Change in project dependencies. maintenance Generic maintenance tasks. priority-low Nice addition, maybe... someday...
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants