Skip to content

Bump true-myth from 8.4.0 to 9.2.0#97

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/true-myth-9.2.0
Open

Bump true-myth from 8.4.0 to 9.2.0#97
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/true-myth-9.2.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps true-myth from 8.4.0 to 9.2.0.

Release notes

Sourced from true-myth's releases.

v9.2.0

True Myth provides safe and idiomatic TypeScript types to handle null, error, and async code handling: Maybe, Result, and Task types that are really nice.

Overview

Adds a flatten helper and method to each of Maybe, Result, and Task to help with the situations where you end up with a nested version of each. For example, with Maybe:

import Maybe from 'true-myth/maybe';
const wrapped = Maybe.of(Maybe.of(123));
console.log(wrapped.toString());  // Just(Just(123))
const flattened = wrapped.flatten();
console.log(flattened.toString()); // Just(123)

Note that the method or function removes only a single layer of wrapping.

Changes

🚀 Enhancement

📝 Documentation

🏠 Internal

Committers: 2

v9.1.0

True Myth provides safe and idiomatic TypeScript types to handle null, error, and async code handling: Maybe, Result, and Task types that are really nice.

Overview

v9.1.0 is a fairly full release—thanks to folks for continuing to offer feedback and suggestions for how we can make the library better! This version:

... (truncated)

Changelog

Sourced from true-myth's changelog.

9.2.0 (2025-09-27)

Adds a flatten helper and method to each of Maybe, Result, and Task to help with the situations where you end up with a nested version of each. For example, with Maybe:

import Maybe from 'true-myth/maybe';
const wrapped = Maybe.of(Maybe.of(123));
console.log(wrapped.toString());  // Just(Just(123))
const flattened = wrapped.flatten();
console.log(flattened.toString()); // Just(123)

Note that the method or function removes only a single layer of wrapping.

Changes

🚀 Enhancement

📝 Documentation

🏠 Internal

Committers: 2

9.1.0 (2025-08-25)

🚀 Enhancement

📝 Documentation

... (truncated)

Commits
  • 2dd6d57 Release 9.2.0
  • 228a77f infra: ignore Codanna
  • 3147cd3 Merge pull request #1148 from true-myth/flatten
  • 68ae099 Merge pull request #1149 from 2hu12/patch-1
  • ab9e4e5 docs: update leftover Volta mention to Mise
  • c7231e5 Maybe,Result,Task: Add flatten functions and methods
  • 011d1d7 Merge pull request #1147 from true-myth/readme-node-v
  • 283e30b docs: remove Node version badge from README
  • 8016d4b Merge pull request #1146 from true-myth/mise
  • edfbbf8 infra: finish switch-over to Mise from Volta
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [true-myth](https://github.com/true-myth/true-myth) from 8.4.0 to 9.2.0.
- [Release notes](https://github.com/true-myth/true-myth/releases)
- [Changelog](https://github.com/true-myth/true-myth/blob/main/CHANGELOG.md)
- [Commits](true-myth/true-myth@v8.4.0...v9.2.0)

---
updated-dependencies:
- dependency-name: true-myth
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 29, 2025
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants