Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 20, 2025

Bumps symfony/ux-live-component from 2.17.0 to 2.29.2.

Changelog

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

CHANGELOG

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" />

2.27.0

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

2.26.0

  • LiveProp: Pass the property name as second parameter of the modifier callable
  • Add compatibility layer to fix deprecation with Symfony\Component\PropertyInfo\PropertyInfoExtractor::getTypes(). If you use PHP 8.2 or higher, we recommend you to update dependency symfony/property-info to at least 7.1.0

2.25.0

... (truncated)

Commits
  • 5d5e520 Use Playwright to run E2E tests
  • 917abb2 Rename back vitest.config.unit.mjs to vitest.config.mjs
  • ee0e451 Configure Vitest for unit and browser tests (use @​puppeteer/browsers and webd...
  • d6b0a3e [LiveComponent] Fix new URL calculation when having #[LiveProp] with custom...
  • f8fc787 [LiveComponent] Fix new URL calculation when having #[LiveProp] with `useSe...
  • dd9408d [LiveComponent] Exclude unstable tests on Windows with @​transient-on-windows
  • 82e1175 Remove unnecessary checks for PHP <8.1 (in tests)
  • 68083bc Update versions to 2.29.1
  • be9aed7 Update versions to 2.29.0
  • 9ee5b44 minor #2980 [LiveComponent][Docs] Fix typo on Valid constraint name (Seb33300)
  • 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.17.0 to 2.29.2.
- [Changelog](https://github.com/symfony/ux-live-component/blob/2.x/CHANGELOG.md)
- [Commits](symfony/ux-live-component@v2.17.0...v2.29.2)

---
updated-dependencies:
- dependency-name: symfony/ux-live-component
  dependency-version: 2.29.2
  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 Aug 20, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 28, 2025

Superseded by #517.

@dependabot dependabot bot closed this Aug 28, 2025
@dependabot dependabot bot deleted the dependabot/composer/symfony/ux-live-component-2.29.2 branch August 28, 2025 04:07
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants