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 web group in /web with 19 updates #3462

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 6, 2023

Bumps the web group in /web with 19 updates:

Package From To
apexcharts 3.43.0 3.44.0
crypto-js 4.1.1 4.2.0
@types/crypto-js 4.1.2 4.1.3
react-diff-view 3.0.2 3.1.0
react-router-dom 6.16.0 6.18.0
ua-parser-js 1.0.36 1.0.37
yaml 2.3.3 2.3.4
@types/bootstrap 5.2.7 5.2.8
@types/jest 29.5.5 29.5.7
@types/json-schema 7.0.13 7.0.14
@types/json-schema-merge-allof 0.6.2 0.6.3
@types/lodash 4.14.199 4.14.200
@types/node 20.8.6 20.8.10
@types/react 18.2.28 18.2.35
@types/react-color 3.0.7 3.0.9
@types/react-dom 18.2.13 18.2.14
@types/react-syntax-highlighter 15.5.8 15.5.9
@types/semver 7.5.3 7.5.4
sass 1.69.3 1.69.5

Updates apexcharts from 3.43.0 to 3.44.0

Release notes

Sourced from apexcharts's releases.

💎 Version 3.44.0

🆕 Enhancements

🐞 Bug Fixes

Commits
  • 8d1c46f build - 3.44.0
  • c705402 3.44.0
  • 2ac1adb improve sparkline paddings on top and bottom
  • 0637103 only draw smooth curve if more than 1 data-point; fixes #4049
  • ebd7c8f fix default bg color in dark theme; fixes #4062
  • b1621d5 improve line smoothing to avoid backward curve; fixes #4063
  • 385ce76 prevent markers hiding on the top and the bottom of the drawing area
  • 1ae0087 improve gridrect mask to avoid hiding overflowing smooth line
  • 5dcc8f6 add zIndex to updateSeries method
  • cf183b8 prebuild patch v3.43.2-0
  • Additional commits viewable in compare view

Updates crypto-js from 4.1.1 to 4.2.0

Commits

Updates @types/crypto-js from 4.1.2 to 4.1.3

Commits

Updates react-diff-view from 3.0.2 to 3.1.0

Changelog

Sourced from react-diff-view's changelog.

3.1.0 (2023-08-31)

Features

Bug Fixes

  • expose type dependencies (#198) (9fc7adc)
  • minimum react version should be 16.14 (52b83f1)
  • remove inline-block style of markEdit area (2a030a8)
  • ts: small typo in types (158dc93)

3.0.3 (2023-03-14)

Bug Fixes

Commits

Updates react-router-dom from 6.16.0 to 6.18.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.18.0

Minor Changes

  • Add support for manual fetcher key specification via useFetcher({ key: string }) so you can access the same fetcher instance from different components in your application without prop-drilling (RFC) (#10960)

    • Fetcher keys are now also exposed on the fetchers returned from useFetchers so that they can be looked up by key
  • Add navigate/fetcherKey params/props to useSumbit/Form to support kicking off a fetcher submission under the hood with an optionally user-specified key (#10960)

    • Invoking a fetcher in this way is ephemeral and stateless
    • If you need to access the state of one of these fetchers, you will need to leverage useFetcher({ key }) to look it up elsewhere

Patch Changes

  • Adds a fetcher context to RouterProvider that holds completed fetcher data, in preparation for the upcoming future flag that will change the fetcher persistence/cleanup behavior (#10961)
  • Fix the future prop on BrowserRouter, HashRouter and MemoryRouter so that it accepts a Partial<FutureConfig> instead of requiring all flags to be included. (#10962)
  • Updated dependencies:

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:

... (truncated)

Commits
  • 667f936 chore: Update version for release (#10981)
  • 67af262 chore: Update version for release (pre) (#10978)
  • 1500288 Updates for v7_fetcherPersist post-processing logic (#10977)
  • cacc90b chore: Update version for release (pre) (#10966)
  • 19af0cf Add future.v7_fetcherPersist flag (#10962)
  • cb2d911 Add fetcher data layer (#10961)
  • c0dbcd2 Add useFetcher(key) and <Form navigate={false}> (#10960)
  • 805924d Revert "Ensure Form contains splat portion of pathname when no action is spec...
  • 908a40a Ensure Form contains splat portion of pathname when no action is specified (#...
  • a71b4e2 Merge branch 'release-next' into dev
  • Additional commits viewable in compare view

Updates ua-parser-js from 1.0.36 to 1.0.37

Changelog

Sourced from ua-parser-js's changelog.

Version 0.7.37 / 1.0.37

  • Fix misidentified WebView token as device model
  • Increase UA_MAX_LENGTH to 500
  • Add new browser: Alipay, Klarna, Smart Lenovo Browser, Vivo Browser
  • Add new device: Ulefone
  • Improve device detection: Realme, Xiaomi Redmi
  • Rename browser: Avant, Baidu, Samsung Internet, Sogou Explorer, Sogou Mobile, WeChat
Commits
  • 8087a1b Bump version 1.0.37 (mirror of 0.7.37)
  • d30ad46 Bump version 0.7.37
  • 5302e2d Update changelog
  • f3de7b7 Backport - Improve browser detection: WeChat (cherry picked from commit 17f0c...
  • c41100e Backport - Improve browser detection: unified name for Baidu (cherry picked f...
  • 23c5d77 Backport - Improve browser detection: remove unnecessary extra space in "Avan...
  • e3d5f76 Backport - Improve browser detection: rename "Samsung Browser" to "Samsung In...
  • 02af42f Backport - Fix #682 - Add new browser: Smart Lenovo Browser (cherry picked fr...
  • 57d1ac0 Backport - Fix #683 - change MetaSr into Sogou Explorer (+add Sogou Mobile) (...
  • ea2c829 Backport - Fix misidentified WebView token as device model - found in #681 (c...
  • Additional commits viewable in compare view

Updates yaml from 2.3.3 to 2.3.4

Release notes

Sourced from yaml's releases.

v2.3.4

  • Do not throw for carriage return in tag shorthand (#501)
Commits

Updates @types/bootstrap from 5.2.7 to 5.2.8

Commits

Updates @types/jest from 29.5.5 to 29.5.7

Commits

Updates @types/json-schema from 7.0.13 to 7.0.14

Commits

Updates @types/json-schema-merge-allof from 0.6.2 to 0.6.3

Commits

Updates @types/lodash from 4.14.199 to 4.14.200

Commits

Updates @types/node from 20.8.6 to 20.8.10

Commits

Updates @types/react from 18.2.28 to 18.2.35

Commits

Updates @types/react-color from 3.0.7 to 3.0.9

Commits

Updates @types/react-dom from 18.2.13 to 18.2.14

Commits

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

Commits

Updates @types/semver from 7.5.3 to 7.5.4

Commits

Updates sass from 1.69.3 to 1.69.5

Release notes

Sourced from sass's releases.

Dart Sass 1.69.5

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

Changes

JS API

  • Compatibility with Node.js 21.0.0.

See the full changelog for changes in earlier releases.

Dart Sass 1.69.4

To install Sass 1.69.4, 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.

Changelog

Sourced from sass's changelog.

1.69.5

JS API

  • Compatibility with Node.js 21.0.0.

1.69.4

  • No user-visible changes.
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 web group in /web with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [apexcharts](https://github.com/apexcharts/apexcharts.js) | `3.43.0` | `3.44.0` |
| [crypto-js](https://github.com/brix/crypto-js) | `4.1.1` | `4.2.0` |
| [@types/crypto-js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/crypto-js) | `4.1.2` | `4.1.3` |
| [react-diff-view](https://github.com/otakustay/react-diff-view) | `3.0.2` | `3.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.16.0` | `6.18.0` |
| [ua-parser-js](https://github.com/faisalman/ua-parser-js) | `1.0.36` | `1.0.37` |
| [yaml](https://github.com/eemeli/yaml) | `2.3.3` | `2.3.4` |
| [@types/bootstrap](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bootstrap) | `5.2.7` | `5.2.8` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.5` | `29.5.7` |
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/json-schema) | `7.0.13` | `7.0.14` |
| [@types/json-schema-merge-allof](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/json-schema-merge-allof) | `0.6.2` | `0.6.3` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.199` | `4.14.200` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.8.6` | `20.8.10` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.28` | `18.2.35` |
| [@types/react-color](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-color) | `3.0.7` | `3.0.9` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.13` | `18.2.14` |
| [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) | `15.5.8` | `15.5.9` |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.3` | `7.5.4` |
| [sass](https://github.com/sass/dart-sass) | `1.69.3` | `1.69.5` |


Updates `apexcharts` from 3.43.0 to 3.44.0
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](apexcharts/apexcharts.js@v3.43.0...v3.44.0)

Updates `crypto-js` from 4.1.1 to 4.2.0
- [Commits](brix/crypto-js@4.1.1...4.2.0)

Updates `@types/crypto-js` from 4.1.2 to 4.1.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/crypto-js)

Updates `react-diff-view` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/otakustay/react-diff-view/releases)
- [Changelog](https://github.com/otakustay/react-diff-view/blob/master/CHANGELOG.md)
- [Commits](otakustay/react-diff-view@v3.0.2...v3.1.0)

Updates `react-router-dom` from 6.16.0 to 6.18.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 `ua-parser-js` from 1.0.36 to 1.0.37
- [Release notes](https://github.com/faisalman/ua-parser-js/releases)
- [Changelog](https://github.com/faisalman/ua-parser-js/blob/1.0.37/changelog.md)
- [Commits](faisalman/ua-parser-js@1.0.36...1.0.37)

Updates `yaml` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.3.3...v2.3.4)

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

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

Updates `@types/json-schema` from 7.0.13 to 7.0.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/json-schema)

Updates `@types/json-schema-merge-allof` from 0.6.2 to 0.6.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/json-schema-merge-allof)

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

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

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

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

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

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

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

Updates `sass` from 1.69.3 to 1.69.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.69.3...1.69.5)

---
updated-dependencies:
- dependency-name: apexcharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web
- dependency-name: crypto-js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web
- dependency-name: "@types/crypto-js"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: react-diff-view
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web
- dependency-name: ua-parser-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/bootstrap"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/json-schema"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/json-schema-merge-allof"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/react-color"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/react-syntax-highlighter"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: "@types/semver"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web
...

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 Nov 6, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 10, 2023

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

@dependabot dependabot bot closed this Nov 10, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/web/web-13c90ccfc0 branch November 10, 2023 17:48
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