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 node-packages group in /app/frontend with 10 updates #7

Conversation

dependabot[bot]
Copy link

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

Bumps the node-packages group in /app/frontend with 10 updates:

Package From To
@fluentui/react 8.112.9 8.113.1
@fluentui/react-components 9.42.0 9.43.3
@fluentui/react-icons 2.0.223 2.0.224
react-router-dom 6.20.1 6.21.1
scheduler 0.20.2 0.23.0
@types/react 18.2.42 18.2.45
@types/react-dom 18.2.17 18.2.18
prettier 3.1.0 3.1.1
typescript 5.3.2 5.3.3
vite 4.5.1 5.0.10

Updates @fluentui/react from 8.112.9 to 8.113.1

Release notes

Sourced from @​fluentui/react's releases.

@​fluentui/react v8.113.1

Patches

Commits
  • 80a1b02 applying package updates
  • 26acec9 Azure Theme bug fixes for DetailsList with Link, and ChoiceGroup with Icon/I...
  • 6fbf7dc fix: User-provided props win over defined defaults in Link component (#30062)
  • b6766ba Disallow window and document access in @fluentui/react-components (#29962)
  • 3337f63 fix: Dialog now transitions in on first render (#30044)
  • 0d1d32a fix(TimePickerCompat): remove default time format (#30035)
  • 8ef5db3 applying package updates
  • 56a76c9 Callout positioning: update useMaxHeight hook for top edge alignment; account...
  • 2154896 fix: react-drawer dropped mountNode prop in types (#29871)
  • 9b7bc40 Add tests for utilities (#29548)
  • Additional commits viewable in compare view

Updates @fluentui/react-components from 9.42.0 to 9.43.3

Release notes

Sourced from @​fluentui/react-components's releases.

@​fluentui/react-components v9.43.3

Minor changes

  • feat: Release react-teaching-popover-preview package (PR #30140 by behowell)

Patches

@​fluentui/react-components v9.43.1

Minor changes

  • feat: focus-visible polyfill shadow DOM support (PR #30098 by ling1726)
  • feat: deprecates useARIAButtonShorthand in favor of useARIAButtonProps (PR #29735 by bsunderhus)

Patches

  • fix: focus outline should have Highlight colour in high contrast (PR #30099 by ling1726)
  • fix: use useEventCallback instead of useCallback (PR #30056 by YuanboXue-Amber)
  • fix: letter key navigation in listbox should be case insensitive (PR #30072 by YuanboXue-Amber)
  • fix: add custom style hook for TimePicker compat. (PR #30058 by YuanboXue-Amber)
  • fix: set autoComeplete to off by default (PR #30057 by YuanboXue-Amber)
  • fix: stop using deprecated keyborg property (PR #30098 by ling1726)
  • chore: adopts useARIAButtonProps instead of deprecated method useARIAButtonShorthand (PR #29735 by bsunderhus)
  • partitionBreadcrumbItems miscalculated endDisplayedItems when endDisplayedItems is incorrect when numberOfItemsToHide <= 0 (PR #30005 by GordonSmith)
  • chore: adopts useARIAButtonProps instead of deprecated method useARIAButtonShorthand (PR #29735 by bsunderhus)
  • fix: interactive cards not having the focus ring when focused (PR #30067 by marcosmoura)
  • chore: add "wyw-in-js" field for tag processor (PR #30032 by layershifter)
  • fix: Add a namespace to CSS variables in react-positioning package to avoid potential collisions. (PR #30068 by khmakoto)
  • fix: add custom style hook for TimePicker compat. (PR #30058 by YuanboXue-Amber)
  • fix: add custom style hook for TimePicker compat. (PR #30058 by YuanboXue-Amber)
  • chore: adopts useARIAButtonProps instead of deprecated method useARIAButtonShorthand (PR #29735 by bsunderhus)

@​fluentui/react-components v9.43.2

Patches

  • refactor: Encapsulates listbox and trigger slot construction (PR #30010 by ling1726)
  • chore: move from floating-ui-devtools to @​floating-ui/devtools (PR #30107 by bsunderhus)
  • fix: provides a default aria-labelledby for the chevron icon if the TimePicker is wrapped in a Field. (PR #30103 by YuanboXue-Amber)
Commits
  • 9ae925b applying package updates
  • fe0792a feat: Release react-teaching-popover-preview package (#30140)
  • b3b87da chore(react-teaching-popover): stop using old slot API (#30146)
  • d9b31e3 chore(TimePickerCompat): add best practice (#30130)
  • b4844e5 fix(breadcrumb): BreadcrumbButton focus border has incorrent width and transi...
  • 4d269ba chg (#30101)
  • 430e58b fix(TimePickerCompat): remove default value of hourCycle (#30108)
  • d6d4011 applying package updates
  • f29886e chore(react-tree): stop using old slot API on stories (#30123)
  • 8b5bfa3 applying package updates
  • Additional commits viewable in compare view

Updates @fluentui/react-icons from 2.0.223 to 2.0.224

Commits

Updates react-router-dom from 6.20.1 to 6.21.1

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.21.1

Patch Changes

6.21.0

Minor Changes

  • Add a new future.v7_relativeSplatPath flag to implement a breaking bug fix to relative routing when inside a splat route. (#11087)

    This fix was originally added in #10983 and was later reverted in #11078 because it was determined that a large number of existing applications were relying on the buggy behavior (see #11052)

    The Bug The buggy behavior is that without this flag, the default behavior when resolving relative paths is to ignore any splat (*) portion of the current route path.

    The Background This decision was originally made thinking that it would make the concept of nested different sections of your apps in <Routes> easier if relative routing would replace the current splat:

    <BrowserRouter>
      <Routes>
        <Route path="/" element={<Home />} />
        <Route path="dashboard/*" element={<Dashboard />} />
      </Routes>
    </BrowserRouter>

    Any paths like /dashboard, /dashboard/team, /dashboard/projects will match the Dashboard route. The dashboard component itself can then render nested <Routes>:

    function Dashboard() {
      return (
        <div>
          <h2>Dashboard</h2>
          <nav>
            <Link to="/">Dashboard Home</Link>
            <Link to="team">Team</Link>
            <Link to="projects">Projects</Link>
          </nav>
      &lt;Routes&gt;
        &lt;Route path=&quot;/&quot; element={&lt;DashboardHome /&gt;} /&gt;
        &lt;Route path=&quot;team&quot; element={&lt;DashboardTeam /&gt;} /&gt;
        &lt;Route path=&quot;projects&quot; element={&lt;DashboardProjects /&gt;} /&gt;
      &lt;/Routes&gt;
    &lt;/div&gt;

... (truncated)

Commits
  • 08cda17 chore: Update version for release (#11132)
  • e5d73cf chore: Update version for release (pre) (#11131)
  • ba99ec5 Merge branch 'main' into release-next
  • 0f04d11 Fix issues with partial hydration combined with route.lazy (#11121)
  • cc4436c Update changelogs for useResolvedSplat example
  • c292bdb Merge branch 'release-next' into dev
  • 69ba50e chore: Update version for release (#11114)
  • 54ec39e Allow persisted fetchers unmounted during submit to revalidate (#11102)
  • ea0ffee chore: Update version for release (pre) (#11095)
  • fe3c071 Slight refactor to partial hydration to leverage state.initialized properly (...
  • Additional commits viewable in compare view

Updates scheduler from 0.20.2 to 0.23.0

Commits
Maintainer changes

This version was pushed to npm by gnoff, a new releaser for scheduler since your current version.


Updates @types/react from 18.2.42 to 18.2.45

Commits

Updates @types/react-dom from 18.2.17 to 18.2.18

Commits

Updates prettier from 3.1.0 to 3.1.1

Release notes

Sourced from prettier's releases.

3.1.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.1.1

diff

Fix config file search (#15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc
// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc

Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#15662 by @​auvred)

// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;
// Prettier 3.1.0
aaaaaaaaaaaaaaa
? bbbbbbbbbbbbbbbbbb
: ccccccccccccccc
? ddddddddddddddd
: eeeeeeeeeeeeeee
? fffffffffffffff
</tr></table>

... (truncated)

Commits
  • b86701d Release 3.1.1
  • c97480c Use attributes instead of deprecated assertions (#15758)
  • 0d1ffb3 Consistently use tabs in ternaries when useTabs is true (#15662)
  • 5f7aedc fix example to fit the actual experimentalTernaries behaviour (#15747)
  • 1e30f66 Remove claim, untrue since over 5 years ago, that cursorOffset is incompatibl...
  • 39e4e7b Add cursorOffset to Playground (#15751)
  • 8e816ad Allow skipping symlink patterns, to avoid raising a fault (#15533)
  • 2ca5d75 Fix expect call in dts test (#15766)
  • 15c7428 chore(deps): update dependency flow-parser to v0.223.3 (#15760)
  • d3b3d4f chore(deps): update dependency hermes-parser to v0.18.0 (#15761)
  • Additional commits viewable in compare view

Updates typescript from 5.3.2 to 5.3.3

Release notes

Sourced from typescript's releases.

TypeScript 5.3.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

Updates vite from 4.5.1 to 5.0.10

Release notes

Sourced from vite's releases.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.0.10 (2023-12-15)

  • fix: omit protocol does not require pre-transform (#15355) (d9ae1b2), closes #15355
  • fix(build): use base64 for inline SVG if it contains both single and double quotes (#15271) (1bbff16), closes #15271

5.0.9 (2023-12-14)

5.0.8 (2023-12-12)

5.0.7 (2023-12-08)

5.0.6 (2023-12-06)

5.0.5 (2023-12-04)

... (truncated)

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 node-packages group in /app/frontend with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@fluentui/react](https://github.com/microsoft/fluentui) | `8.112.9` | `8.113.1` |
| [@fluentui/react-components](https://github.com/microsoft/fluentui) | `9.42.0` | `9.43.3` |
| [@fluentui/react-icons](https://github.com/microsoft/fluentui-system-icons) | `2.0.223` | `2.0.224` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.20.1` | `6.21.1` |
| [scheduler](https://github.com/facebook/react/tree/HEAD/packages/scheduler) | `0.20.2` | `0.23.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.42` | `18.2.45` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.17` | `18.2.18` |
| [prettier](https://github.com/prettier/prettier) | `3.1.0` | `3.1.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.2` | `5.3.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.5.1` | `5.0.10` |


Updates `@fluentui/react` from 8.112.9 to 8.113.1
- [Release notes](https://github.com/microsoft/fluentui/releases)
- [Changelog](https://github.com/microsoft/fluentui/blob/master/azure-pipelines.release-fluentui.yml)
- [Commits](https://github.com/microsoft/fluentui/compare/@fluentui/react_v8.112.9...@fluentui/react_v8.113.1)

Updates `@fluentui/react-components` from 9.42.0 to 9.43.3
- [Release notes](https://github.com/microsoft/fluentui/releases)
- [Changelog](https://github.com/microsoft/fluentui/blob/master/azure-pipelines.release-fluentui.yml)
- [Commits](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.42.0...@fluentui/react-components_v9.43.3)

Updates `@fluentui/react-icons` from 2.0.223 to 2.0.224
- [Commits](https://github.com/microsoft/fluentui-system-icons/commits)

Updates `react-router-dom` from 6.20.1 to 6.21.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `scheduler` from 0.20.2 to 0.23.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/scheduler)

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

Updates `@types/react-dom` from 18.2.17 to 18.2.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

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

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

Updates `vite` from 4.5.1 to 5.0.10
- [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.10/packages/vite)

---
updated-dependencies:
- dependency-name: "@fluentui/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-packages
- dependency-name: "@fluentui/react-components"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-packages
- dependency-name: "@fluentui/react-icons"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-packages
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-packages
- dependency-name: scheduler
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-packages
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-packages
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-packages
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-packages
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-packages
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: node-packages
...

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 25, 2023
Copy link
Author

dependabot bot commented on behalf of github Dec 29, 2023

Superseded by #9.

@dependabot dependabot bot closed this Dec 29, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/app/frontend/node-packages-6d759f3c77 branch December 29, 2023 15: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.

0 participants