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

fix(deps): update all patches #87

Merged
merged 1 commit into from
Feb 24, 2025
Merged

fix(deps): update all patches #87

merged 1 commit into from
Feb 24, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@changesets/changelog-github (source) 0.5.0 -> 0.5.1 age adoption passing confidence devDependencies patch
@effect/cli (source) 0.56.1 -> 0.56.2 age adoption passing confidence dependencies patch
@effect/platform (source) 0.77.1 -> 0.77.2 age adoption passing confidence dependencies patch
@effect/platform-node (source) 0.73.1 -> 0.73.2 age adoption passing confidence dependencies patch
@effect/sql (source) 0.30.1 -> 0.30.2 age adoption passing confidence dependencies patch
@effect/sql-clickhouse (source) 0.15.1 -> 0.15.2 age adoption passing confidence dependencies patch
@effect/sql-mysql2 (source) 0.31.1 -> 0.31.2 age adoption passing confidence dependencies patch
@effect/sql-pg (source) 0.31.1 -> 0.31.2 age adoption passing confidence dependencies patch
@eslint/compat 1.2.6 -> 1.2.7 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 8.24.0 -> 8.24.1 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) 8.24.0 -> 8.24.1 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) 3.0.5 -> 3.0.6 age adoption passing confidence devDependencies patch
JamesIves/github-pages-deploy-action v4.7.2 -> v4.7.3 age adoption passing confidence action patch
effect (source) 3.13.1 -> 3.13.2 age adoption passing confidence dependencies patch
prettier (source) 3.5.1 -> 3.5.2 age adoption passing confidence devDependencies patch
tsx (source) 4.19.2 -> 4.19.3 age adoption passing confidence devDependencies patch
typedoc (source) 0.27.7 -> 0.27.8 age adoption passing confidence devDependencies patch
vite (source) 6.1.0 -> 6.1.1 age adoption passing confidence devDependencies patch
vitest (source) 3.0.5 -> 3.0.6 age adoption passing confidence devDependencies patch

Release Notes

changesets/changesets (@​changesets/changelog-github)

v0.5.1

Compare Source

Patch Changes
Effect-TS/effect (@​effect/cli)

v0.56.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/platform)

v0.77.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/platform-node)

v0.73.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/sql)

v0.30.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/sql-clickhouse)

v0.15.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/sql-mysql2)

v0.31.2

Compare Source

Patch Changes
Effect-TS/effect (@​effect/sql-pg)

v0.31.2

Compare Source

Patch Changes
eslint/rewrite (@​eslint/compat)

v1.2.7

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.24.1

Compare Source

🩹 Fixes
  • eslint-plugin: [class-methods-use-this] check accessor methods with a function initializer (#​10796)
  • eslint-plugin: [no-misused-promises] don't report on static accessor properties (#​10814)
  • eslint-plugin: [no-deprecated] don't report on deprecated accessor property declaration (#​10813)
  • eslint-plugin: [explicit-member-accessibility] check accessor class properties for missing accessibility modifier (#​10805)
  • eslint-plugin: [explicit-module-boundary-types] check accessor class properties with a function initializer (#​10804)
  • eslint-plugin: [prefer-return-this-type] check accessor properties with a function initializer (#​10794)
  • eslint-plugin: [consistent-generic-constructors] check accessor class properties (#​10789)
  • eslint-plugin: [no-unsafe-assignment] report on an any value assigned as an initializer of an accessor property (#​10785)
  • eslint-plugin: [no-unnecessary-template-expression] ignore enum and enum members (#​10782)
  • eslint-plugin: [no-inferrable-types] handle accessor (#​10780)
❤️ Thank You
  • Ronen Amiel
  • YeonJuan

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.24.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (@​vitest/coverage-v8)

v3.0.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
JamesIves/github-pages-deploy-action (JamesIves/github-pages-deploy-action)

v4.7.3

Compare Source

What's Changed

Build 🔧
Other Changes

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.3

Effect-TS/effect (effect)

v3.13.2

Compare Source

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)
prettier/prettier (prettier)

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

privatenumber/tsx (tsx)

v4.19.3

Compare Source

TypeStrong/TypeDoc (typedoc)

v0.27.8

Compare Source

Features
  • The visibilityFilter option now supports individual signatures, #​2846.
  • The favicon option may now be given a link starting with https?:// instead of a path, #​2851.
  • TypeDoc now supports specifying # as the link in externalSymbolLinkMappings to indicate the type should not be linked to, #​2853.
Bug Fixes
  • Fixed an issue where unrecognized languages would incorrectly be listed in the list of languages with translations, #​2852.
  • Unresolved external type references will no longer incorrectly linked to undefined, #​2854.
Thanks!
vitejs/vite (vite)

v6.1.1

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) February 24, 2025 01:37
Copy link

codecov bot commented Feb 24, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 45.34%. Comparing base (5c18561) to head (c05a75f).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #87      +/-   ##
==========================================
+ Coverage   45.28%   45.34%   +0.06%     
==========================================
  Files          33       33              
  Lines        1473     1473              
  Branches      116      116              
==========================================
+ Hits          667      668       +1     
  Misses        791      791              
+ Partials       15       14       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot merged commit b88fceb into main Feb 24, 2025
4 checks passed
@renovate renovate bot deleted the renovate/all-patch branch February 24, 2025 06:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants