-
-
Notifications
You must be signed in to change notification settings - Fork 564
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
[5.x] Prevent infinite loops with Laravel Telescope #11390
base: 5.x
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did what was explained in the original issue:
- Added a
link
field to a collection - Entry 1 links to Entry 2
- Entry 2 links to Entry 3
- Entry 3 links to Entry 1
The infinite loop still happens when visiting Entry 1 in the CP.
Good catch! Looks like I missed adding the hook into Telescope's I've opened a PR on the Telescope side to address this: laravel/telescope#1566 |
Telescope v5.5.0 was just tagged with my 2nd PR. After updating Telescope, you should no longer see an infinite loop on the entry show page. |
Sorry, but it still happens 🙈 |
This definitely still gives me an infinite loop. Are you sure you're using a I'm on Telescope 5.6.0, and tried Laravel 11 and 12. |
Going to mark this as a draft for the time being, until I have time to loop back to this. |
This pull request fixes an issue with Laravel Telescope installed, where an infinite loop would occur if you had entries which link to each other.
Right now, when Telescope encounters an
Entry
object (whether that be in an event, or in an authorization gate), it'll attempt to serialize it using->jsonSerialize()
which'll return an evaluated array of the augmented entry.However, if you have an entry which relates back to itself, this evaluated array can cause an infinite loop.
This PR addresses that by returning a shallow augmented array instead, which prevents relationships from being evaluated in the same way, therefore preventing the infinite loop issue.
This fix relies on the
formatForTelescope
method, added in these Telescope PRs:formatForTelescope
method is used in request watcher laravel/telescope#1566Fixes #10782.