Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps azjezz/psl from 4.0.1 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)

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)
  • See full diff 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 4.0.1 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@4.0.1...4.1.0)

---
updated-dependencies:
- dependency-name: azjezz/psl
  dependency-version: 4.1.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 Oct 24, 2025
@coveralls
Copy link

Pull Request Test Coverage Report for Build 18777077610

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 71.803%

Totals Coverage Status
Change from base Build 18775324475: 0.0%
Covered Lines: 3206
Relevant Lines: 4465

💛 - Coveralls

@azjezz azjezz merged commit 3d9b989 into main Oct 27, 2025
2 checks passed
@azjezz azjezz deleted the dependabot/composer/azjezz/psl-4.1.0 branch October 27, 2025 14:47
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants