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

fix(deps): update all non-major dependencies (patch) - autoclosed #1695

Closed
wants to merge 3 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@floating-ui/react-dom (source) 2.0.1 -> 2.0.2 age adoption passing confidence
@formkit/auto-animate 1.0.0-beta.6 -> 1.0.0-pre-alpha.3 age adoption passing confidence
@next/bundle-analyzer 13.5.2 -> 13.5.3 age adoption passing confidence
@sentry/webpack-plugin (source) 2.7.0 -> 2.7.1 age adoption passing confidence
@types/js-cookie (source) 3.0.3 -> 3.0.4 age adoption passing confidence
@types/lodash-es (source) 4.17.8 -> 4.17.9 age adoption passing confidence
@types/react (source) 17.0.61 -> 17.0.66 age adoption passing confidence
@types/react-color (source) 3.0.6 -> 3.0.7 age adoption passing confidence
@types/react-dom (source) 18.2.4 -> 18.2.8 age adoption passing confidence
@types/ua-parser-js (source) 0.7.36 -> 0.7.37 age adoption passing confidence
@types/validator (source) 13.11.1 -> 13.11.2 age adoption passing confidence
axios (source) 1.5.0 -> 1.5.1 age adoption passing confidence
dayjs (source) 1.11.9 -> 1.11.10 age adoption passing confidence
next (source) 13.5.2 -> 13.5.3 age adoption passing confidence
postcss (source) 8.4.28 -> 8.4.30 age adoption passing confidence
postcss-preset-env (source) 9.1.1 -> 9.1.4 age adoption passing confidence
prettier (source) 3.0.2 -> 3.0.3 age adoption passing confidence
rimraf 5.0.1 -> 5.0.5 age adoption passing confidence
swr (source) 2.2.1 -> 2.2.4 age adoption passing confidence

Release Notes

floating-ui/floating-ui (@​floating-ui/react-dom)

v2.0.2

Compare Source

Bug Fixes

  • fix(types): import types from dom instead of core (#​2513)
formkit/auto-animate (@​formkit/auto-animate)

v1.0.0-pre-alpha.3

Compare Source

vercel/next.js (@​next/bundle-analyzer)

v13.5.3

Compare Source

getsentry/sentry-javascript-bundler-plugins (@​sentry/webpack-plugin)

v2.7.1

Compare Source

  • docs: Point to org auth token page (#​393)
  • fix(webpack): Add default fallback to webpack import (#​395)
  • fix: Save results of rewriteSourcesHook (#​390)

Work in this release contributed by @​adonskoy. Thank you for your contribution!

axios/axios (axios)

v1.5.1

Compare Source

Bug Fixes
  • adapters: improved adapters loading logic to have clear error messages; (#​5919) (e410779)
  • formdata: fixed automatic addition of the Content-Type header for FormData in non-browser environments; (#​5917) (bc9af51)
  • headers: allow content-encoding header to handle case-insensitive values (#​5890) (#​5892) (4c89f25)
  • types: removed duplicated code (9e62056)
Contributors to this release
iamkun/dayjs (dayjs)

v1.11.10

Compare Source

Bug Fixes
vercel/next.js (next)

v13.5.3

Compare Source

postcss/postcss (postcss)

v8.4.30

Compare Source

  • Improved source map performance (by Romain Menke).

v8.4.29

Compare Source

  • Fixed Node#source.offset (by Ido Rosenthal).
  • Fixed docs (by Christian Oliff).
csstools/postcss-plugins (postcss-preset-env)

v9.1.4

Compare Source

September 18, 2023

v9.1.3

Compare Source

September 2, 2023

v9.1.2

Compare Source

August 28, 2023

prettier/prettier (prettier)

v3.0.3

Compare Source

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>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}
isaacs/rimraf (rimraf)

v5.0.5

Compare Source

v5.0.4

Compare Source

v5.0.3

Compare Source

v5.0.2

Compare Source

vercel/swr (swr)

v2.2.4

Compare Source

Patches

Full Changelog: vercel/swr@v2.2.3...v2.2.4

v2.2.3

Compare Source

v2.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: vercel/swr@v2.2.1...v2.2.2


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 9f53119 to ef7b64e Compare June 11, 2023 03:12
@vercel
Copy link

vercel bot commented Jun 11, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
kami ❌ Failed (Inspect) Sep 27, 2023 8:03am

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 11, 2023
@github-actions
Copy link

github-actions bot commented Jun 11, 2023

📦 Next.js Bundle Analysis for mx-kami

This analysis was generated by the Next.js Bundle Analysis action. 🤖

⚠️ Global Bundle Size Increased

Page Size (compressed)
global 189.59 KB (🟡 +301 B)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Nineteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load % of Budget (350 KB)
/ 49.34 KB 238.93 KB 68.27% (🟢 -0.02%)
/[page] 52.18 KB 241.77 KB 69.08% (🟢 -0.02%)
/_error 5.89 KB 195.49 KB 55.85% (+/- <0.01%)
/categories/[slug] 6.53 KB 196.12 KB 56.03% (+/- <0.01%)
/favorite/bangumi 7.97 KB 197.56 KB 56.45% (+/- <0.01%)
/favorite/music 5.39 KB 194.98 KB 55.71% (+/- <0.01%)
/friends 57.3 KB 246.89 KB 70.54% (🟢 -0.02%)
/login 5.29 KB 194.88 KB 55.68% (+/- <0.01%)
/notes 355 B 189.94 KB 54.27% (+/- <0.01%)
/notes/[id] 74.84 KB 264.43 KB 75.55% (🟢 -0.02%)
/notes/topics 4.48 KB 194.07 KB 55.45% (+/- <0.01%)
/notes/topics/[topicSlug] 14.13 KB 203.72 KB 58.21% (🟢 -0.01%)
/posts 25.99 KB 215.58 KB 61.59% (+/- <0.01%)
/posts/[category]/[slug] 79.04 KB 268.63 KB 76.75% (🟢 -0.02%)
/preview 55.94 KB 245.54 KB 70.15% (🟢 -0.01%)
/projects 16.36 KB 205.95 KB 58.84% (+/- <0.01%)
/projects/[id] 51.33 KB 240.92 KB 68.84% (🟢 -0.02%)
/recently 101.07 KB 290.66 KB 83.05% (🟢 -0.02%)
/timeline 16.98 KB 206.57 KB 59.02% (+/- <0.01%)
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.

@renovate renovate bot changed the title fix(deps): update dependency @floating-ui/react-dom to v2.0.1 fix(deps): update all non-major dependencies (patch) Jun 12, 2023
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from ef7b64e to 223007c Compare June 12, 2023 11:03
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 223007c to 98cfbdf Compare June 12, 2023 21:45
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 98cfbdf to ffdc86b Compare June 13, 2023 03:39
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from ffdc86b to 67c8c2a Compare June 13, 2023 18:22
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 67c8c2a to cec263f Compare June 14, 2023 12:03
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from cec263f to f61019b Compare June 15, 2023 22:14
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from f61019b to 3fcef3c Compare June 16, 2023 19:58
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 3fcef3c to 3566b6b Compare June 17, 2023 15:17
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 3566b6b to 6b6e046 Compare June 19, 2023 17:39
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 6b6e046 to 0ad980a Compare June 21, 2023 21:27
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 0ad980a to 106c33a Compare June 22, 2023 00:26
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 106c33a to a5ac78b Compare June 22, 2023 12:50
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 3eb2e84 to 3616317 Compare September 24, 2023 18:59
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 3616317 to 3444966 Compare September 25, 2023 10:51
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 3444966 to a8bec35 Compare September 25, 2023 14:06
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from a8bec35 to e145b55 Compare September 25, 2023 17:12
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from e145b55 to e8023b1 Compare September 25, 2023 22:56
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from e8023b1 to 956aec2 Compare September 26, 2023 11:10
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 956aec2 to bf1cf1d Compare September 26, 2023 16:40
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from bf1cf1d to 5f922ed Compare September 26, 2023 19:20
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 5f922ed to 71b5d90 Compare September 27, 2023 06:26
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/patch-all-minor-patch branch from 67cc625 to e51bf9d Compare September 27, 2023 08:00
@renovate renovate bot changed the title fix(deps): update all non-major dependencies (patch) fix(deps): update all non-major dependencies (patch) - autoclosed Sep 27, 2023
@renovate renovate bot closed this Sep 27, 2023
auto-merge was automatically disabled September 27, 2023 08:12

Pull request was closed

@renovate renovate bot deleted the renovate/patch-all-minor-patch branch September 27, 2023 08: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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant