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

Bump the dev-minor group with 6 updates #221

Merged
merged 1 commit into from
Dec 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the dev-minor group with 6 updates:

Package From To
eslint-import-resolver-typescript 3.6.3 3.7.0
prettier 3.4.1 3.4.2
sass-embedded 1.81.0 1.82.0
svelte 5.4.0 5.9.0
svelte-check 4.1.0 4.1.1
vite 6.0.2 6.0.3

Updates eslint-import-resolver-typescript from 3.6.3 to 3.7.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Commits
  • c5da700 chore: release eslint-import-resolver-typescript (#327)
  • 93ea130 feat: implement import-x resolver interface v3 (#326)
  • e6256b7 chore(deps): update dependency simple-git-hooks to ^2.11.1 (#325)
  • da56f17 chore(deps): update dependency react to ^18.3.1 (#324)
  • 88a6d44 chore(deps): update node.js to v18.20.5 (#323)
  • bed664f chore(deps): update dependency @​changesets/cli to ^2.27.10 (#322)
  • 42e7cc3 chore(deps): update dependency @​types/node to ^18.19.63 (#320)
  • 13fa760 chore(deps): update dependency @​changesets/cli to ^2.27.9 (#319)
  • 5ee5879 fix(deps): update dependency debug to ^4.3.7 (#316)
  • f5b09f5 chore(deps): update dependency eslint to ^8.57.1 (#315)
  • Additional commits viewable in compare view

Updates prettier from 3.4.1 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates sass-embedded from 1.81.0 to 1.82.0

Changelog

Sourced from sass-embedded's changelog.

1.82.0

Command-Line Interface

  • Improve --watch mode reliability when making multiple changes at once, such as checking out a different Git branch.

  • Parse the calc-size() function as a calculation now that it's supported in some browsers.

Dart API

  • Add a SassCalculation.calcSize() function.

1.81.1

  • No user-visible changes.
Commits

Updates svelte from 5.4.0 to 5.9.0

Release notes

Sourced from svelte's releases.

[email protected]

Minor Changes

  • feat: add support for bind getters/setters (#14307)

Patch Changes

  • fix: always run if block code the first time (#14597)

[email protected]

Patch Changes

  • fix: reinstate missing prefersReducedMotion export (#14586)

[email protected]

Minor Changes

  • feat: add Spring and Tween classes to svelte/motion (#11519)

[email protected]

Patch Changes

  • fix: ensure bindings always take precedence over spreads (#14575)

[email protected]

Minor Changes

  • feat: add createSubscriber function for creating reactive values that depend on subscriptions (#14422)

  • feat: add reactive MediaQuery class, and a prefersReducedMotion class instance (#14422)

Patch Changes

  • fix: treat undefined and null the same for the initial input value (#14562)

[email protected]

Patch Changes

  • chore: make if blocks tree-shakable (#14549)

[email protected]

Patch Changes

  • fix: handle static form values in combination with default values (#14555)

[email protected]

Minor Changes

  • feat: support defaultValue/defaultChecked for inputs (#14289)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.9.0

Minor Changes

  • feat: add support for bind getters/setters (#14307)

Patch Changes

  • fix: always run if block code the first time (#14597)

5.8.1

Patch Changes

  • fix: reinstate missing prefersReducedMotion export (#14586)

5.8.0

Minor Changes

  • feat: add Spring and Tween classes to svelte/motion (#11519)

5.7.1

Patch Changes

  • fix: ensure bindings always take precedence over spreads (#14575)

5.7.0

Minor Changes

  • feat: add createSubscriber function for creating reactive values that depend on subscriptions (#14422)

  • feat: add reactive MediaQuery class, and a prefersReducedMotion class instance (#14422)

Patch Changes

  • fix: treat undefined and null the same for the initial input value (#14562)

5.6.2

Patch Changes

  • chore: make if blocks tree-shakable (#14549)

5.6.1

Patch Changes

... (truncated)

Commits

Updates svelte-check from 4.1.0 to 4.1.1

Release notes

Sourced from svelte-check's releases.

svelte-check-4.1.1

  • fix: support each without as (#2615)
Commits
  • 02db54d fix: support each without as (#2615)
  • 131f78a fix: make sure snapshots are shared per ProjectService (#2614)
  • 89cc22b fix: ensure imports without semicolon doesn't break intellisense (#2610)
  • fda35fe chore: update tests
  • 0bf5836 chore: pin TS to 5.6 for now
  • 10820f9 fix: ensure organize imports doesn't mess with generated $$Component type
  • See full diff in compare view

Updates vite from 6.0.2 to 6.0.3

Release notes

Sourced from vite's releases.

v6.0.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.3 (2024-12-05)

Commits
  • 7a0758c release: v6.0.3
  • a1dd396 fix: make handleInvoke interface compatible with invoke (#18876)
  • ea802f8 refactor: fix logic errors found by no-unnecessary-condition rule (#18891)
  • 690a36f fix: remove CSS import in CJS correctly in some cases (#18885)
  • d5fb653 fix: handle postcss load unhandled rejections (#18886)
  • 2b5926a fix(config): bundle files referenced with imports field (#18887)
  • 1b54e50 fix(html): allow unexpected question mark in tag name (#18852)
  • d59efd8 fix(css): rewrite url when image-set and url exist at the same time (#18868)
  • 20fdf21 fix(config): make stacktrace path correct when sourcemap is enabled (#18833)
  • 88e49aa fix(module-runner): decode uri for file url passed to import (#18837)
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-minor group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.3` | `3.7.0` |
| [prettier](https://github.com/prettier/prettier) | `3.4.1` | `3.4.2` |
| [sass-embedded](https://github.com/sass/embedded-host-node) | `1.81.0` | `1.82.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.4.0` | `5.9.0` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.1.0` | `4.1.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.2` | `6.0.3` |


Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.3...v3.7.0)

Updates `prettier` from 3.4.1 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.1...3.4.2)

Updates `sass-embedded` from 1.81.0 to 1.82.0
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.81.0...1.82.0)

Updates `svelte` from 5.4.0 to 5.9.0
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

Updates `svelte-check` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](sveltejs/language-tools@svelte-check-4.1.0...svelte-check-4.1.1)

Updates `vite` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.3/packages/vite)

---
updated-dependencies:
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor
- dependency-name: sass-embedded
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
- dependency-name: svelte
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
- dependency-name: svelte-check
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 9, 2024
Copy link

netlify bot commented Dec 9, 2024

Deploy Preview for oddcontrast ready!

Name Link
🔨 Latest commit 0316954
🔍 Latest deploy log https://app.netlify.com/sites/oddcontrast/deploys/6756b57df7d8fe0008bc5185
😎 Deploy Preview https://deploy-preview-221--oddcontrast.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@jgerigmeyer jgerigmeyer merged commit 036b217 into main Dec 9, 2024
7 checks passed
@jgerigmeyer jgerigmeyer deleted the dependabot/npm_and_yarn/dev-minor-f27849591b branch December 9, 2024 19:12
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.

1 participant