cncf / clomonitor

CLOMonitor is a tool that periodically checks open source projects repositories to verify they meet certain project health best practices
https://clomonitor.io
Apache License 2.0
111 stars 73 forks source link

Bump the frontend group in /web with 15 updates #1322

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the frontend group in /web with 15 updates:

Package From To
apexcharts 3.41.1 3.43.0
react-icons 4.10.1 4.11.0
react-router-dom 6.15.0 6.17.0
@testing-library/jest-dom 6.1.2 6.1.4
@testing-library/user-event 14.4.3 14.5.1
@types/jest 29.5.4 29.5.5
@types/lodash 4.14.197 4.14.199
@types/node 20.5.4 20.8.6
@types/react 18.2.21 18.2.28
@types/react-dom 18.2.7 18.2.13
@types/react-syntax-highlighter 15.5.7 15.5.8
eslint-plugin-prettier 5.0.0 5.0.1
prettier 3.0.2 3.0.3
sass 1.66.1 1.69.3
typescript 5.1.6 5.2.2

Updates apexcharts from 3.41.1 to 3.43.0

Release notes

Sourced from apexcharts's releases.

💎 Version 3.43.0

What's Changed

New Contributors

Full Changelog: https://github.com/apexcharts/apexcharts.js/compare/v3.41.1...v3.43.0

Commits


Updates react-icons from 4.10.1 to 4.11.0

Release notes

Sourced from react-icons's releases.

v4.11.0

Icon Library License Version Count
Circum Icons MPL-2.0 license 1.0.0 288
Font Awesome 5 CC BY 4.0 License 5.15.4-3-gafecf2a 1612
Font Awesome 6 CC BY 4.0 License 6.4.2 2025
Ionicons 4 MIT 4.6.3 696
Ionicons 5 MIT 5.5.4 1332
Material Design icons Apache License Version 2.0 4.0.0-86-g589092d9a7 4341
Typicons CC BY-SA 3.0 2.1.2 336
Github Octicons icons MIT 18.3.0 264
Feather MIT 4.28.0 286
Lucide ISC v4.11.0 1215
Game Icons CC BY 3.0 12920d6565588f0512542a3cb0cdfd36a497f910 4040
Weather Icons SIL OFL 1.1 2.0.12 219
Devicons MIT 1.8.0 192
Ant Design Icons MIT 4.3.1 789
Bootstrap Icons MIT 1.10.5 2592
Remix Icon Apache License Version 2.0 3.5.0 2537
Flat Color Icons MIT 1.0.2 329
Grommet-Icons Apache License Version 2.0 4.11.0 621
Heroicons MIT 1.0.6 460
Heroicons 2 MIT 2.0.18 876
Simple Icons CC0 1.0 Universal 9.13.0 2707
Simple Line Icons MIT 2.5.5 189
IcoMoon Free CC BY 4.0 License d006795ede82361e1bac1ee76f215cf1dc51e4ca 491
BoxIcons CC BY 4.0 License 2.1.4 1634
css.gg MIT 2.1.1 704
VS Code Icons CC BY 4.0 0.0.32 427
Tabler Icons MIT 2.33.0 4655
Themify Icons MIT v0.1.2-2-g9600186 352
Radix Icons MIT @radix-ui/react-icons@1.3.0-1-g94b3fcf 318
Phosphor Icons MIT 2.0.2 7488
Icons8 Line Awesome MIT 1.3.1 1544
Commits


Updates react-router-dom from 6.15.0 to 6.17.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.17.0

Minor Changes

  • Add experimental support for the View Transitions API via document.startViewTransition to enable CSS animated transitions on SPA navigations in your application. (#10916)

    The simplest approach to enabling a View Transition in your React Router app is via the new <Link unstable_viewTransition> prop. This will cause the navigation DOM update to be wrapped in document.startViewTransition which will enable transitions for the DOM update. Without any additional CSS styles, you'll get a basic cross-fade animation for your page.

    If you need to apply more fine-grained styles for your animations, you can leverage the unstable_useViewTransitionState hook which will tell you when a transition is in progress and you can use that to apply classes or styles:

    function ImageLink(to, src, alt) {
      let isTransitioning = unstable_useViewTransitionState(to);
      return (
        <Link to={to} unstable_viewTransition>
          <img
            src={src}
            alt={alt}
            style={{
              viewTransitionName: isTransitioning ? "image-expand" : "",
            }}
          />
        </Link>
      );
    }
    

    You can also use the <NavLink unstable_viewTransition> shorthand which will manage the hook usage for you and automatically add a transitioning class to the <a> during the transition:

    a.transitioning img {
      view-transition-name: "image-expand";
    }
    
    <NavLink to={to} unstable_viewTransition>
      <img src={src} alt={alt} />
    </NavLink>
    

    For an example usage of View Transitions with React Router, check out our fork of the Astro Records demo.

    For more information on using the View Transitions API, please refer to the Smooth and simple transitions with the View Transitions API guide from the Google Chrome team.

    Please note, that because the ViewTransition API is a DOM API, we now export a specific RouterProvider from react-router-dom with this functionality. If you are importing RouterProvider from react-router, then it will not support view transitions. (#10928

Patch Changes

  • Log a warning and fail gracefully in ScrollRestoration when sessionStorage is unavailable (#10848)

... (truncated)

Commits


Updates @testing-library/jest-dom from 6.1.2 to 6.1.4

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.1.4

6.1.4 (2023-10-12)

Bug Fixes

  • upgrade @adobe/css-tools to 4.3.1 to address vulnerability (#532) (44f1eab)

v6.1.3

6.1.3 (2023-09-06)

Bug Fixes

Commits
  • 44f1eab fix: upgrade @adobe/css-tools to 4.3.1 to address vulnerability (#532)
  • 6d65999 chore: add jest/vitest version to bug report template (#526)
  • 5b492ac fix: proper @​jest/globals import (#530)
  • See full diff in compare view


Updates @testing-library/user-event from 14.4.3 to 14.5.1

Release notes

Sourced from @​testing-library/user-event's releases.

v14.5.1

14.5.1 (2023-09-15)

Bug Fixes

  • incorrect default import from @​testing-library/dom (#1162) (d7483f0)

v14.5.0

14.5.0 (2023-09-14)

Bug Fixes

  • exports: add a named export for userEvent (4019cee), closes #1146

Features

  • types: Add additional type exports for UserEvent & Options (#1112) (da00e8d)
Commits
  • d7483f0 fix: incorrect default import from @​testing-library/dom (#1162)
  • 4be87b3 chore: swap release script
  • d95121d chore: add --experimental-import-meta-resolve
  • 8779eae chore: format, lint, fix lint
  • 4019cee fix(exports): add a named export for userEvent
  • da00e8d feat(types): Add additional type exports for UserEvent & Options (#1112)
  • 7a305de chore: fix snapshot testing (#1090)
  • e93a5af chore: rewrite tests (#1081)
  • See full diff in compare view


Updates @types/jest from 29.5.4 to 29.5.5

Commits


Updates @types/lodash from 4.14.197 to 4.14.199

Commits


Updates @types/node from 20.5.4 to 20.8.6

Commits


Updates @types/react from 18.2.21 to 18.2.28

Commits


Updates @types/react-dom from 18.2.7 to 18.2.13

Commits


Updates @types/react-syntax-highlighter from 15.5.7 to 15.5.8

Commits


Updates eslint-plugin-prettier from 5.0.0 to 5.0.1

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.0.1

Patch Changes

Commits


Updates prettier from 3.0.2 to 3.0.3

Release notes

Sourced from prettier's releases.

3.0.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.3

diff

Add preferUnplugged: true to package.json (#15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json

Allow argument of require() to break (#15256 by @​fisker)

// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2 const plugin = require(global.STANDALONE ? path.join(__dirname, "../standalone.js") : path.join(__dirname, ".."));

// Prettier 3.0.3 const plugin = require( global.STANDALONE ? path.join(__dirname, "../standalone.js") : path.join(__dirname, "..") );

Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @​sosukesuzuki)

<!-- Input -->
```ts
const foo = <T>() => {}
```
</tr></table> 

... (truncated)

Commits


Updates sass from 1.66.1 to 1.69.3

Release notes

Sourced from sass's releases.

Dart Sass 1.69.3

To install Sass 1.69.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Embedded Sass

  • Fix TypeScript type locations in package.json.

See the full changelog for changes in earlier releases.

Dart Sass 1.69.2

To install Sass 1.69.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

JS API

  • Fix a bug where Sass crashed when running in the browser if there was a global variable named process.

See the full changelog for changes in earlier releases.

Dart Sass 1.69.1

To install Sass 1.69.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.69.0

To install Sass 1.69.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Add a meta.get-mixin() function that returns a mixin as a first-class Sass value.

... (truncated)

Changelog

Sourced from sass's changelog.

1.69.3

Embedded Sass

  • Fix TypeScript type locations in package.json.

1.69.2

JS API

  • Fix a bug where Sass crashed when running in the browser if there was a global variable named process.

1.69.1

  • No user-visible changes.

1.69.0

  • Add a meta.get-mixin() function that returns a mixin as a first-class Sass value.

  • Add a meta.apply() mixin that includes a mixin value.

  • Add a meta.module-mixins() function which returns a map from mixin names in a module to the first-class mixins that belong to those names.

  • Add a meta.accepts-content() function which returns whether or not a mixin value can take a content block.

  • Add support for the relative color syntax from CSS Color 5. This syntax cannot be used to create Sass color values. It is always emitted as-is in the CSS output.

Dart API

  • Deprecate Deprecation.calcInterp since it was never actually emitted as a deprecation.

Embedded Sass

  • Fix a rare race condition where the embedded compiler could freeze when a protocol error was immediately followed by another request.

1.68.0

  • Fix the source spans associated with the abs-percent deprecation.

JS API

... (truncated)

Commits


Updates typescript from 5.1.6 to 5.2.2

Release notes

Sourced from typescript's releases.

TypeScript 5.2

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.2 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.2 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
  • 9684ba6 Cherry-pick fix for cross-file inlay hints (#55476) to release-5.2 and LKG ...
  • 555ef99 Bump version to 5.2.2 and LKG
  • 6074b9d Update LKG for 5.2.1 RC.
  • b778ed1 Merge commit 'e936eb13d2900f21d79553c32a704307c7ad03dd' into release-5.2
  • 10b9962 Bump version to 5.2.1-rc and LKG
  • e936eb1 Update package-lock.json
  • e36cd57 Update package-lock.json
  • 581fba1 Update package-lock.json
  • 8fc8c95 Decorators normative updates (#55276)
  • b1c4dc4 Fix class name references (#55262)
  • 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 11 months ago

Looks like these dependencies are up-to-date now, so this is no longer needed.