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-deps group in /dashboard with 5 updates #785

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2023

Bumps the dev-deps group in /dashboard with 5 updates:

Package From To
@biomejs/biome 1.2.2 1.4.1
@types/node 20.8.0 20.10.1
typescript 5.2.2 5.3.2
vite 4.4.9 5.0.4
vite-plugin-solid 2.7.0 2.7.2

Updates @biomejs/biome from 1.2.2 to 1.4.1

Release notes

Sourced from @​biomejs/biome's releases.

VSCode Extension v1.4.1

What's Changed

Full Changelog: biomejs/biome@cli/v1.2.0...lsp/v1.4.1

CLI v1.4.1

Biome scores 96% compatibility with Prettier! Read our announcement on our blog.

Editors

  • Fix #933. Some files are properly ignored in the LSP too. E.g. package.json, tsconfig.json, etc.

Formatter

Bug fixes

  • Fix some accidental line breaks when printing array expressions within arrow functions and other long lines #917. Contributed by @​faultyserver

  • Match Prettier's breaking strategy for ArrowChain layouts #934. Contributed by @​faultyserver

  • Fix double-printing of leading comments in arrow chain expressions #951. Contributed by @​faultyserver

Linter

Bug fixes

  • Fix #910, where the rule noSvgWithoutTitle should skip elements that have aria-hidden attributes. Contributed by @​vasucp1207

Enhancement

  • Implements #924 and #920. noUselessElse now ignores else clauses that follow at least one if statement that doesn't break early. Contributed by @​Conaclos

    For example, the following code is no longer reported by the rule:

    function f(x) {
        if (x < 0) {
          // this `if` doesn't break early.
        } else if (x > 0) {
            return x;
        } else {
            // This `else` block was previously reported as useless.
        }
    }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

1.4.1 (2023-11-30)

Editors

  • Fix #933. Some files are properly ignored in the LSP too. E.g. package.json, tsconfig.json, etc.

Formatter

Bug fixes

  • Fix some accidental line breaks when printing array expressions within arrow functions and other long lines #917. Contributed by @​faultyserver

  • Match Prettier's breaking strategy for ArrowChain layouts #934. Contributed by @​faultyserver

  • Fix double-printing of leading comments in arrow chain expressions #951. Contributed by @​faultyserver

Linter

Bug fixes

  • Fix #910, where the rule noSvgWithoutTitle should skip elements that have aria-hidden attributes. Contributed by @​vasucp1207

New features

Enhancement

  • Implements #924 and #920. noUselessElse now ignores else clauses that follow at least one if statement that doesn't break early. Contributed by @​Conaclos

    For example, the following code is no longer reported by the rule:

    function f(x) {
        if (x < 0) {
          // this `if` doesn't break early.
        } else if (x > 0) {
            return x;
        } else {
            // This `else` block was previously reported as useless.
        }
    }

Bug fixes

... (truncated)

Commits
  • a887513 release: 1.4.1 (#967)
  • c3f6b3c fix(package): add ROME MIT license (#949)
  • 889593e release: 1.4.0 (#820)
  • b8a94e3 docs(README): make more epxlicit the benefits of Biome (#908)
  • 82578da fix(tooling): update the script to bump the nightly version (#874)
  • a3e14da feat(lint/useRegexLiterals): implement the rule (#843)
  • cc60a55 feat: noAriaHiddenOnFocusable rule (#822)
  • cbacc73 chore: add sponsors to readme (#829)
  • d1e6290 challenge(formatter): Implement bracketSameLine option to match Prettier (#...
  • 6f810a5 chore: update sponsor's link to land to their website
  • Additional commits viewable in compare view

Updates @types/node from 20.8.0 to 20.10.1

Commits

Updates typescript from 5.2.2 to 5.3.2

Release notes

Sourced from typescript's releases.

TypeScript 5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits

Updates vite from 4.4.9 to 5.0.4

Release notes

Sourced from vite's releases.

create-vite@5.0.0

Please refer to CHANGELOG.md for details.

create-vite@5.0.0-beta.1

Please refer to CHANGELOG.md for details.

create-vite@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.0.4 (2023-11-29)

5.0.3 (2023-11-28)

5.0.2 (2023-11-21)

5.0.1 (2023-11-21)

5.0.0 (2023-11-16)

Vite 5 is out! Read the announcement blog post here

Announcing Vite 5

Today, we mark another big milestone in Vite's path. The Vite team, contributors, and ecosystem partners, are excited to announce the release of Vite 5. Vite is now using Rollup 4, which already represents a big boost in build performance. And there are also new options to improve your dev server performance profile.

Vite 5 focuses on cleaning up the API (removing deprecated features) and streamlines several features closing long-standing issues, for example switching define to use proper AST replacements instead of regexes. We also continue to take steps to future-proof Vite (Node.js 18+ is now required, and the CJS Node API has been deprecated).

... (truncated)

Commits
  • 73ef074 release: v5.0.4
  • d2a2493 fix: revert "fix: js fallback sourcemap content should be using original cont...
  • 4a111aa fix(resolve): respect order of browser in mainFields when resolving (#15137)
  • 9474c4b feat: preserve vite.middlewares connect instance after restarts (#15166)
  • ec401da fix(define): allow define process.env (#15173)
  • 642f9bc refactor: align with Promise.withResolvers() (#15171)
  • 67ac572 fix: bindCLIShortcuts to proper server (#15162)
  • 2649f40 release: v5.0.3
  • 811e392 fix(css): use non-nested chunk name if facadeModule is not CSS file (#15155)
  • cb3243c fix(dev): bind plugin context functions (#14569)
  • Additional commits viewable in compare view

Updates vite-plugin-solid from 2.7.0 to 2.7.2

Commits

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-deps group in /dashboard with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.2.2` | `1.4.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.8.0` | `20.10.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.4.9` | `5.0.4` |
| [vite-plugin-solid](https://github.com/solidjs/vite-plugin-solid) | `2.7.0` | `2.7.2` |


Updates `@biomejs/biome` from 1.2.2 to 1.4.1
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome)

Updates `@types/node` from 20.8.0 to 20.10.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

Updates `vite` from 4.4.9 to 5.0.4
- [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/v5.0.4/packages/vite)

Updates `vite-plugin-solid` from 2.7.0 to 2.7.2
- [Release notes](https://github.com/solidjs/vite-plugin-solid/releases)
- [Changelog](https://github.com/solidjs/vite-plugin-solid/blob/master/CHANGELOG.md)
- [Commits](https://github.com/solidjs/vite-plugin-solid/commits)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: vite-plugin-solid
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
...

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 Dec 1, 2023
@motoki317
Copy link
Member

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 8, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dashboard/dev-deps-c7abaffa5d branch December 8, 2023 06:25
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