Skip to content
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

chore(deps): bump effect from 3.10.0 to 3.13.2 #2655

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps effect from 3.10.0 to 3.13.2.

Release notes

Sourced from effect's releases.

effect@3.13.2

Patch Changes

  • #4472 31be72a Thanks @​gcanti! - Fix Schema.Enums toString() method to display correct enum values.

    Now, toString() correctly displays the actual enum values instead of internal numeric indices.

    Before

    import { Schema } from "effect"
    enum Fruits {
    Apple = "apple",
    Banana = "banana",
    Cantaloupe = 0
    }
    const schema = Schema.Enums(Fruits)
    console.log(String(schema))
    // Output: <enum 3 value(s): 0 | 1 | 2> ❌ (incorrect)

    After

    import { Schema } from "effect"
    enum Fruits {
    Apple = "apple",
    Banana = "banana",
    Cantaloupe = 0
    }
    const schema = Schema.Enums(Fruits)
    console.log(String(schema))
    // Output: <enum 3 value(s): "apple" | "banana" | 0> ✅ (correct)

effect@3.13.1

Patch Changes

effect@3.13.0

Minor Changes

... (truncated)

Changelog

Sourced from effect's changelog.

3.13.2

Patch Changes

  • #4472 31be72a Thanks @​gcanti! - Fix Schema.Enums toString() method to display correct enum values.

    Now, toString() correctly displays the actual enum values instead of internal numeric indices.

    Before

    import { Schema } from "effect"
    enum Fruits {
    Apple = "apple",
    Banana = "banana",
    Cantaloupe = 0
    }
    const schema = Schema.Enums(Fruits)
    console.log(String(schema))
    // Output: <enum 3 value(s): 0 | 1 | 2> ❌ (incorrect)

    After

    import { Schema } from "effect"
    enum Fruits {
    Apple = "apple",
    Banana = "banana",
    Cantaloupe = 0
    }
    const schema = Schema.Enums(Fruits)
    console.log(String(schema))
    // Output: <enum 3 value(s): "apple" | "banana" | 0> ✅ (correct)

3.13.1

Patch Changes

3.13.0

... (truncated)

Commits

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)

@dependabot dependabot bot added the automerge Instructs Mergify to queue this pull request for automatic merging label Feb 24, 2025
Copy link

changeset-bot bot commented Feb 24, 2025

🦋 Changeset detected

Latest commit: a1ea9bd

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@substrate/smoldot-discovery-connector Patch
@substrate/extension Patch
@substrate/wallet-template Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 27, 2025

A newer version of effect exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@ryanleecode
Copy link
Collaborator

@dependabot recreate

Bumps [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) from 3.10.0 to 3.13.2.
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/effect@3.13.2/packages/effect)

---
updated-dependencies:
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/effect-3.13.2 branch from e39af28 to 6ce1f8a Compare March 14, 2025 18:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Instructs Mergify to queue this pull request for automatic merging
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants