Skip to content

Bump symfony/ux-live-component from 2.27.0 to 2.33.0#10

Closed
dependabot[bot] wants to merge 1 commit intomaster2.0from
dependabot/composer/symfony/ux-live-component-2.33.0
Closed

Bump symfony/ux-live-component from 2.27.0 to 2.33.0#10
dependabot[bot] wants to merge 1 commit intomaster2.0from
dependabot/composer/symfony/ux-live-component-2.33.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Mar 18, 2026

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

Release notes

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

v2.33.0

Changelog (symfony/ux-live-component@v2.32.0...v2.33.0)

  • bug #3372 Fix reflection issues for private properties from trait and parent class (@​kachnitel)
  • feature #3364 Add debug:live-component command (Mickaël BULIARD)
  • feature #3361 Allow components use dynamically templates (@​xDeSwa)
  • bug #3363 Fix preservation of !important inline style changes (@​xDeSwa)
  • feature #3362 Migrate from tsup (deprecated) to tsdown (@​Kocal)
  • bug #3353 Fix PHPDoc types of TestLiveComponent::call() (@​StevenRenaux)
  • feature #3336 Add option fetchCredentials (@​Kocal)
  • bug #3337 Fix tests with lowest dependencies, incompatibility with zenstruck/foundry and Symfony 5.4 (@​GromNaN)
  • bug #3325 Fix minimum requested 6.x version of FrameworkBundle for LiveComponent (@​Kocal)
  • bug #3304 Fix npm releases due to repository issue (@​Kocal)
  • bug #3290 Update root JS dependencies (@​Kocal)
  • bug #3279 Remove usage of framework.annotations.enabled (@​Kocal)
Changelog

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

CHANGELOG

2.33

  • Add fetch_credentials option to configure the fetch API credentials mode for cross-origin requests. This is useful when embedding a Live Component from a different domain that requires cookie-based authentication (e.g., JWT stored in cookies)

    Global configuration in config/packages/live_component.yaml:

    live_component:
        fetch_credentials: 'include' # 'same-origin' (default), 'include', or 'omit'

    Per-component override via the #[AsLiveComponent] attribute:

    #[AsLiveComponent(fetchCredentials: 'include')]
    class MyComponent
    {
        // ...
    }
  • Add support for dynamic template resolution with AsLiveComponent(template: FromMethod('customFunction'))

  • Add debug:live-component command

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

... (truncated)

Commits
  • f025e48 bug #3372 [LiveComponent][TwigComponent] Fix reflection issues for private pr...
  • 0227b4d [LiveComponent][TwigComponent] Fix reflection issues for private properties f...
  • ffb5b7a Update Vitest to ^4.1.0
  • 8d1df49 [LiveComponent] Add debug:live-component command
  • 1d06dbc Fix email input class binding for validation errors
  • eb77782 feature #3361 Allow components use dynamically templates (xDeSwa)
  • c53c058 Allow components use dynamically templates
  • 62d0978 fix properly apply inline styles with important priority
  • 151537c Migrate from tsup (deprecated) to tsdown
  • e3da1c8 Remove tsx dependency and rely on Node.js 22.18.0 native TypeScript runner
  • 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 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.33.0.
- [Release notes](https://github.com/symfony/ux-live-component/releases)
- [Changelog](https://github.com/symfony/ux-live-component/blob/2.x/CHANGELOG.md)
- [Commits](symfony/ux-live-component@v2.27.0...v2.33.0)

---
updated-dependencies:
- dependency-name: symfony/ux-live-component
  dependency-version: 2.33.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 Mar 18, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Mar 23, 2026

Superseded by #12.

@dependabot dependabot Bot closed this Mar 23, 2026
@dependabot dependabot Bot deleted the dependabot/composer/symfony/ux-live-component-2.33.0 branch March 23, 2026 10:36
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.

0 participants