we have the same issue with v35
Looks like a duplicate of #31530 Changing /usr/lib/python3.11/site-packages/youtube_dl/extractor/youtube.py similar to ytb-dl did fixes it for me locally..
Release of new version 7.0.3
added collection form extension to support the nsAddForm options
Bump nsbootstrap template tag
Bump nsbootstrap template tag
Support prepending new forms
Fix missing equality check
Release of new version 7.0.2
Fix missing equality check
Support prepending new forms
Release of new version 7.0.1
Fixed issue with initializing defaults outside of the init function
Release of new version 6.0.4
Implement fixed header
Release of new version 7.0.0
Right, so this pr removed the requirement for the bundle that provides the template annotation, and the controllers were changed to properly return a response. As such, removing the inclusion of the template annotation in the controller IMO is safe and not a BC, its a broken artifact of the incomplete PR that was merged that didn't remove the annotation.
Release of new version 6.0.4
Fixed issue with initializing defaults outside of the init function
Fixed issue with initializing defaults outside of the init function
@deguif Fair enough about the BC break.
However, a couple of thoughts.
@Template
annotation an internal implementation. For examplesomeone including this bundle shouldn't care or depend on the annotation existing. Removing it and return the appropriate Response object makes the controller function the same in both ways.I would remove all use of @Template
annotation method and just use a return in the controller to return the response rendered. Its a very old way to deal with templates in Symfony projects and there's no real benefit.