Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 6, 2026

Bumps symfony/ux-live-component from 2.27.0 to 2.32.0.

Changelog

Sourced from symfony/ux-live-component's changelog.

CHANGELOG

2.31

  • Add browser events assertions in InteractsWithLiveComponents:
$testComponent = $this->createLiveComponent(name: 'MyComponent');
$renderedComponent = $testComponent->render();
// Assert that the component did dispatch a browser event named 'browser:event'
$this->assertComponentDispatchBrowserEvent($render, 'browser:event')
// optionally, you can assert that the browser event was dispatched with specific data...
->withData(['arg1' => 'foo', 'arg2' => 'bar'])
// ... or only with a subset of data
->withDataSubset(['arg1' => 'foo']);
// Assert that the component did not dispatch a browser event named 'another-browser:event'
$this->assertComponentNotDispatchBrowserEvent($render, 'another-browser:event');

2.30

  • Ensure compatibility with PHP 8.5

2.29.0

  • Add Symfony 8 support

2.28.0

  • Add new modifiers for input validations, useful to prevent unnecessary HTTP requests:

    • min_length and max_length: validate length from textual input elements
    • min_value and max_value: validate value from numeral input elements
  • Add new mapPath options (default false) to UrlMapping of a LiveProp to allow the prop to be mapped to the path instead of the query in the url.

<!-- Do not trigger model update until 3 characters are typed -->
<input data-model="min_length(3)|username" type="text" value="" />
<!-- Only trigger updates when value number is between 10 and 100 -->
<input data-model="min_value(10)|max_value(100)|quantity" type="number" value="20" />

Commits
  • 0beb730 Update index.rst with MarkdownTextarea template info
  • 8441a53 PHP CS Fixer: update usage
  • 411a109 Pin phpdocumentor/reflection-docblock to non dev version
  • 45cf663 Add E2E tests for LiveComponent
  • 6f72eac Git-ignore config/reference.php
  • e621238 Tests on Symfony 8 stable
  • d51d36b [CI] Tests over Symfony 7.4.0-beta1 and 8.0.0-beta1
  • c7ccc51 Add clarification about difference between component re-rendering and initial...
  • 6df9015 Update versions to 2.31.0
  • 10776be feature #3136 [LiveComponent] Add dispatch browser event assertion in Interac...
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [symfony/ux-live-component](https://github.com/symfony/ux-live-component) from 2.27.0 to 2.32.0.
- [Changelog](https://github.com/symfony/ux-live-component/blob/2.x/CHANGELOG.md)
- [Commits](symfony/ux-live-component@v2.27.0...v2.32.0)

---
updated-dependencies:
- dependency-name: symfony/ux-live-component
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Jan 6, 2026
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 php Pull requests that update php code

Development

Successfully merging this pull request may close these issues.

1 participant