Releases: AppsDevTeam/utils
Releases · AppsDevTeam/utils
Release list
v2.15.2
v2.15.1: Sanitize and truncate Guzzle error messages
Prevent binary data and excessively long request/response bodies from being included in exception messages to ensure logs remain readable.
v2.15: Merge pull request #22 from AppsDevTeam/f-add-components-method
add components method
v2.14.4
v2.14.3
v2.14.2
v2.14.1: Merge pull request #21 from AppsDevTeam/f-fix_warnings
Fix warnings.
v2.14: Merge pull request #20 from AppsDevTeam/f-disable_format_animated_gif
Disable format animated gif.
v2.13.2
v2.13.1: Adds utility function for checking emptiness
Adds a utility function that provides a more reliable way to determine if a variable is considered "empty". The native `empty()` function treats '0' and 0 as empty, which is often not the desired behavior. The new function `realEmpty()` addresses this by explicitly checking for these cases.