Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2025

Bumps azjezz/psl from 3.3.0 to 4.1.0.

Release notes

Sourced from azjezz/psl's releases.

Noise 4.1.0

Psl Noise - 4.1.0

This release introduces two major new data structure components to the PHP Standard Library: Tree and Graph. These additions bring powerful hierarchical and relational data manipulation tools to PHP developers with PSL's signature type-safe API.

What's Changed

✨ New Features

🌳 Psl\Tree Component

A comprehensive tree data structure implementation for working with hierarchical data.

Features: Immutable tree nodes, functional operations (map, filter, reduce, fold), traversal algorithms (pre-order, post-order, level-order), search utilities, and conversion functions.

use Psl\Tree;
// Create and manipulate trees
$tree = Tree\tree('root', [
Tree\leaf('child1'),
Tree\tree('child2', [Tree\leaf('grandchild')]),
]);
// Functional operations
$doubled = Tree\map($tree, fn($x) => $x . '!');
$values = Tree\pre_order($tree); // ['root', 'child1', 'child2', 'grandchild']
$count = Tree\count($tree); // 4
// Build from database records
$tree = Tree\from_list(
$records,
fn($r) => $r['id'],
fn($r) => $r['parent_id'],
fn($r) => $r['name']
);

Use Cases: File systems, organizational hierarchies, DOM structures, category trees, menu systems.

Full Documentation


... (truncated)

Changelog

Sourced from azjezz/psl's changelog.

Changelog

4.0.0

breaking changes

  • Psl\Result\wrap() no longer unwraps nested results - #531 by @​azjezz
  • Psl\Collection\Map, Psl\Collection\MutableMap, Psl\Collection\Set, and Psl\Collection\MutableSet now have a more natural JSON serialization - #512 by @​josh-rai
  • A large number of intersection interfaces in the Psl\IO and Psl\File namespaces have been removed to simplify the component's hierarchy - #518 by @​azjezz
  • Psl\sequence() function has been removed - #519 by @​azjezz

features

fixes, and improvements

  • refactor: improve type inference for non-empty lists - #529 by @​azjezz
  • refactor: improve type inference for Iter and Regex - #528 by @​azjezz

other

2.7.0

features

  • feat(encoding): introduce Base64\Variant enum to support encoding/decoding different variants - #408 by @​Gashmob

fixes, and improvements

  • fix(option): return Option<never> for Option::none() - #415 by @​devnix
  • fix(str): add invariant to avoid unexpected errors when parsing an invalid UTF8 string - #410 by @​devnix

2.6.0

features

  • feat(type): introduce Type\converted function - #405 by @​veewee
  • feat(type): introduce Type\numeric_string function - #406 by @​veewee

2.5.0

features

... (truncated)

Commits
  • 8b96289 chore: add veewee to GitHub sponsors (#548)
  • 454d80f feat: add Graph component with directed and undirected graph support (#547)
  • 9a0fc88 feat: add Tree component for hierarchical data structures (#546)
  • 214bddd chore(ga): bump extractions/setup-just from 2 to 3 (#545)
  • 0116789 chore: migrate from make to just (#544)
  • 148cb5f feat: add reflection-based type functions for class members (#543)
  • 2205481 chore: upgrade to mago beta-32 (#539)
  • cc84876 chore: upgrade to mago beta-31 (#538)
  • a06f6c7 chore(deps): update dependencies, and fix coding standard issues (#537)
  • 2fe2556 chore: remove redundant tags (#536)
  • 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 [azjezz/psl](https://github.com/azjezz/psl) from 3.3.0 to 4.1.0.
- [Release notes](https://github.com/azjezz/psl/releases)
- [Changelog](https://github.com/azjezz/psl/blob/next/CHANGELOG.md)
- [Commits](azjezz/psl@3.3.0...4.1.0)

---
updated-dependencies:
- dependency-name: azjezz/psl
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Oct 28, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 28, 2025 03:08
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Oct 28, 2025
@arnested arnested merged commit 0cfa8b4 into v2 Oct 28, 2025
10 checks passed
@arnested arnested deleted the dependabot/composer/v2/azjezz/psl-4.1.0 branch October 28, 2025 05:31
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.

2 participants