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 #6

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 18, 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.0
@fluentui/react-icons 2.0.223 2.0.224
react-router-dom 6.20.1 6.21.0
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

@​fluentui/react v8.113.0

Minor changes

  • fix(Callout): Update useMaxHeight hook for callout to use target top as bottom bound when aligned to top edge; account for scroll resizing when picking the best edge for positioning alignment (PR #29766 by nipope)
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.0

Release notes

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

@​fluentui/react-components v9.43.0

Minor changes

Patches

  • fix: updates should be synchronous in unit tests (PR #30014 by ling1726)
  • chore: disallow window and document access (PR #29962 by spmonahan)
  • fix: Applies border-box sizing to listbox slot (PR #30028 by ling1726)
  • fix: OverlayDrawer accepts mountNode in types (PR #29871 by smhigley)
  • fix: User-provided props win over defined defaults in Link component. (PR #30062 by khmakoto)
  • fix: Using correct colors when MenuItem is pressed. (PR #29951 by khmakoto)
  • chore: disallow window and document access (PR #29962 by spmonahan)
  • fix: Virtual parent cannot be the DOM child of mount node (PR #29990 by ling1726)
  • fix: Allows matchTargetSize middleware to be overidden with inline style (PR #30028 by ling1726)
  • chore: disallow window and document access (PR #29962 by spmonahan)
  • fix: add max-height to show 12 items in listbox (PR #29989 by YuanboXue-Amber)
  • fix: use default time format instead of h23 hour cycle. (PR #30035 by YuanboXue-Amber)
  • chore: disallow window and document access (PR #29962 by spmonahan)

Prerelease changes

Commits
  • 6704fa0 applying package updates
  • 73c8cb5 chg (#30056)
  • 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...
  • 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.0

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.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;
    
    );
    }

    Now, all links and route paths are relative to the router above them. This makes code splitting and compartmentalizing your app really easy. You could render the Dashboard as its own independent app, or embed it into your large app without making any changes to it.

    The Problem

... (truncated)

Commits

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.0` |
| [@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.0` |
| [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.0
- [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.0)

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.0
- [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 18, 2023
Copy link
Author

dependabot bot commented on behalf of github Dec 25, 2023

Superseded by #7.

@dependabot dependabot bot closed this Dec 25, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/app/frontend/node-packages-a2a84b36be branch December 25, 2023 03:40
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