Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

fix(deps): update all non-major dependencies #126

Merged
merged 1 commit into from
Oct 5, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@mui/icons-material (source) 5.10.3 -> 5.10.6 age adoption passing confidence dependencies patch
@mui/lab (source) 5.0.0-alpha.99 -> 5.0.0-alpha.102 age adoption passing confidence dependencies patch
@mui/material (source) 5.10.5 -> 5.10.8 age adoption passing confidence dependencies patch
@mui/x-data-grid (source) 5.17.2 -> 5.17.5 age adoption passing confidence dependencies patch
@playwright/test (source) 1.25.2 -> 1.26.1 age adoption passing confidence devDependencies minor
@types/react (source) 18.0.20 -> 18.0.21 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 5.37.0 -> 5.39.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.37.0 -> 5.39.0 age adoption passing confidence devDependencies minor
@vercel/node (source) 2.5.14 -> 2.5.21 age adoption passing confidence devDependencies patch
algosdk 1.20.0 -> 1.21.0 age adoption passing confidence dependencies minor
autoprefixer 10.4.10 -> 10.4.12 age adoption passing confidence devDependencies patch
dotenv 16.0.2 -> 16.0.3 age adoption passing confidence devDependencies patch
eslint (source) 8.23.1 -> 8.24.0 age adoption passing confidence devDependencies minor
eslint-config-next 12.3.0 -> 12.3.1 age adoption passing confidence devDependencies patch
next (source) 12.3.0 -> 12.3.1 age adoption passing confidence dependencies patch
postcss (source) 8.4.16 -> 8.4.17 age adoption passing confidence devDependencies patch
react-redux 8.0.2 -> 8.0.4 age adoption passing confidence dependencies patch
react-tsparticles 2.3.1 -> 2.3.3 age adoption passing confidence dependencies patch
styfle/cancel-workflow-action 0.10.0 -> 0.10.1 age adoption passing confidence action patch
tsparticles (source) 2.3.1 -> 2.3.4 age adoption passing confidence dependencies patch
typescript (source) 4.8.3 -> 4.8.4 age adoption passing confidence devDependencies patch
typescript (source) 4.8.3 -> 4.8.4 age adoption passing confidence dependencies patch

Release Notes

mui/material-ui (@​mui/icons-material)

v5.10.6

Compare Source

Sep 19, 2022

A big thanks to the 11 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]
@mui/[email protected]
Breaking changes
  • [button][joy] Replace start/endIcon prop with start/endDecorator (#​34288) @​hbjORbj

    BREAKING CHANGE: replace start/endIcon with start/endDecorator.

    // before
    <Button startIcon={...} endIcon={...} />
    
    // after
    <Button startDecorator={...} endDecorator={...} />
Changes
@mui/[email protected]
Breaking changes
  • [Select][base] Add event parameter to the onChange callback (#​34158) @​michaldudak

    The SelectUnstyled and MultiSelectUnstyled onChange callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
    This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
    This also affects Select from Joy UI.

    // before
    <SelectUnstyled onChange={(newValue) => { /* ... */ }} />
    
    // after
    <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​flaviendelangle, @​hbjORbj, @​Janpot, @​michaldudak, @​oliviertassinari, @​renovate[bot], @​samuelsycamore, @​siriwatknp, @​tomasz-sodzawiczny, @​ZeeshanTamboli

mui/material-ui (@​mui/lab)

v5.0.0-alpha.102

Compare Source

v5.0.0-alpha.101

Compare Source

v5.0.0-alpha.100

Compare Source

mui/mui-x

v5.17.5

Compare Source

We'd like to offer a big thanks to the 2 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected] / @mui/[email protected] / @mui/[email protected]
Changes
Docs
Core

v5.17.4

Compare Source

Sep 22, 2022

We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected] / @mui/[email protected] / @mui/[email protected]
Changes
@mui/[email protected] / @mui/[email protected]
Changes
Docs
Core

v5.17.3

Compare Source

Sep 16, 2022

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

  • 📝 Fix lost characters when typing into fields in the DataGrid (#​5646) @​m4theushw
  • 🌏 New locale and improvements for pickers
  • 🎁 Improve support to theme augmentation for pickers
@mui/[email protected] / @mui/[email protected] / @mui/[email protected]
Changes
@mui/[email protected] / @mui/[email protected]
Changes
Docs
Core
Microsoft/playwright

v1.26.1

Compare Source

Highlights

This patch includes the following bug fixes:

https://github.com/microsoft/playwright/issues/17500 - [BUG] No tests found using the test explorer - pw/[email protected]

Browser Versions

  • Chromium 106.0.5249.30
  • Mozilla Firefox 104.0
  • WebKit 16.0

This version was also tested against the following stable channels:

  • Google Chrome 105
  • Microsoft Edge 105

v1.26.0

Compare Source

Assertions

Other Highlights

  • New option maxRedirects for apiRequestContext.get(url[, options]) and others to limit redirect count.
  • New command-line flag --pass-with-no-tests that allows the test suite to pass when no files are found.
  • New command-line flag --ignore-snapshots to skip snapshot expectations, such as expect(value).toMatchSnapshot() and expect(page).toHaveScreenshot().

Behavior Change

A bunch of Playwright APIs already support the waitUntil: 'domcontentloaded' option. For example:

await page.goto('https://playwright.dev', {
  waitUntil: 'domcontentloaded',
});

Prior to 1.26, this would wait for all iframes to fire the DOMContentLoaded event.

To align with web specification, the 'domcontentloaded' value only waits for the target frame to fire the 'DOMContentLoaded' event. Use waitUntil: 'load' to wait for all iframes.

Browser Versions

  • Chromium 106.0.5249.30
  • Mozilla Firefox 104.0
  • WebKit 16.0

This version was also tested against the following stable channels:

  • Google Chrome 105
  • Microsoft Edge 105
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.39.0

Compare Source

Features
  • eslint-plugin: allow using void as a default type for a generic argument if allowInGenericTypeArguments is specified (#​5671) (bb46ef0)

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.38.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.38.0

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.39.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/parser

v5.38.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.38.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

vercel/vercel

v2.5.21

Compare Source

v2.5.20

Compare Source

v2.5.19

Compare Source

v2.5.18

Compare Source

v2.5.17

Compare Source

v2.5.16

Compare Source

v2.5.15

Compare Source

algorand/js-algorand-sdk

v1.21.0

Compare Source

What's Changed

Enhancements

Full Changelog: algorand/js-algorand-sdk@v1.20.0...v1.21.0

postcss/autoprefixer

v10.4.12

Compare Source

  • Fixed support of unit-less zero angle in backgrounds (by 一丝).

v10.4.11

Compare Source

  • Fixed text-decoration prefixes by moving to MDN data (by Romain Menke).
motdotla/dotenv

v16.0.3

Compare Source

Changed
  • Added library version to debug logs (#​682)
eslint/eslint

v8.24.0

Compare Source

Features

  • 1729f9e feat: account for sourceType: "commonjs" in the strict rule (#​16308) (Milos Djermanovic)
  • b0d72c9 feat: add rule logical-assignment-operators (#​16102) (fnx)
  • f02bcd9 feat: array-callback-return support findLast and findLastIndex (#​16314) (Sosuke Suzuki)

Documentation

Chores

vercel/next.js

v12.3.1

Compare Source

Core Changes
  • Update react-server-dom-webpack: #​40356
  • Fix flight manifest to include all chunks: #​40365
  • docs: fix typos: #​40342
  • Fix page url for edge routes in app dir: #​40361
  • Subresource Integrity for App Directory: #​39729
  • Stop build warning about experimental: { esmExternals: 'loose' }: #​40377
  • Add template and error file types: #​39808
  • Bump styled-jsx for showing displayName: #​40411
  • fix(#​40388): next/dynamic should only add default loading without suspense: #​40397
  • Add missing trace for full reload event: #​40393
  • feat(ts): expose AppType: #​40391
  • Update dev watcher to ignore more accurately: #​40412
  • Add failing case for location throw: #​40445
  • Drop legacy RSC handling in client for pages: #​40472
  • fix: eslint no-script-component-in-head error url: #​40422
  • chore: Update swc: #​40292
  • feat(edge): allows configuring Dynamic code execution guard: #​39539
  • Rename allowDynamic to unstable_allowDynamic: #​40496
  • Don't execute prefetches for bot user agents: #​40435
  • Update semver of eslint-plugin-react: #​40246
  • Clean up startTransition in Link: #​40505
  • docs(README): next.js logo with dark mode: #​40223
  • Passing down original sourcemap for flight client loader: #​40508
  • next/script: make onLoad concurrent rendering resilient: #​40191
  • chore: Update swc: #​40520
  • Add missing feature in next-swc: #​40550
  • Mask Flight Parameters from Middleware: #​39939
  • Unwrap promise with experimental_use: #​40575
  • fix(next/router): Prevent query delete in routing when next.config basePath option is truthy: #​40566
  • fix(image): handle image imports with high aspect ratio: #​40563
  • fix: loosen webpack compilation with fallbackNodePolyfills: false: #​40612
  • Adding experimentalAdjustFallback feature to font optimization: #​40185
  • fix: handle notFound: true in / with next export: #​40592
  • refactor: split up CONTRIBUTING.md: #​40515
  • Implement SWC transformer for server and client graphs: #​40603
  • Fix edge wasm handling during deploy: #​40625
  • Client directive: #​40415
  • Remove internal client next api detection: #​40646
  • Attach module trace for RSC related errors: #​40652
  • Use createFromFetch instead of createFromReadableStream to fetch Flight: #​40656
  • Change Flight response content type to application/octet-stream: #​40665
  • Send web vitals to Vercel analytics in app: #​40669
  • Refactor fetchServerResponse: #​40674
  • Port page and layout level API assertions to SWC transform: #​40653
  • Ensure smooth scroll is disabled for navigation in new and existing router: #​40642
  • Upgrade to latest React experimental: #​40672
  • Refine error messages: #​40661
  • Incldue styled-jsx in swc compiling: #​40679
  • misc: update caniuse-lite to latest: #​40680
  • Remove non existed exports and files: #​40685
  • fix(image): preload should respect crossOrigin: #​40676
  • Add handling for static generation in app: #​40561
  • Avoid direct React client API imports in the server graph: #​40686
  • Drop legacy RSC server and client extension: #​40692
Documentation Changes
  • docs: fix middleware path: #​40340
  • Fix mdx docs: #​40402
  • Update Server Components documentation.: #​40452
  • docs: move swcMinify: true out of "Experimental features" section: #​40394
  • Clarify use of loading property: #​40488
  • docs(errors/large-page-data): how to see data being passed to page: #​40491
  • docs(basic-features/script): update script version history: #​40263
  • Added "negative matcher" documentation: #​40282
  • Fix a typo in docs: #​40501
Example Changes
  • chore: fix examples: #​40395
  • chore(examples): update turborepo examples link: #​40487
  • update(examples): Emotion modules: #​40242
  • Added comments to middleware-matcher example: #​40273
  • Remove legacy mobx example: #​40304
  • Update cms-makeswift example: #​40560
  • Fixed typo: #​40608
  • Revert "Fixed typo": #​40623
  • chore: Migrate with-prefetching example to typescript: #​40671
  • chore: Refactor active-class-name example: #​40670
  • docs(examples): fix error connection handling: #​40633
Misc Changes
  • Temporarily disable unstable app test: #​40408
  • docs(middleware): fix broken link
  • chore: use link: instead of file: in CONTRIBUTING.md: #​40510
  • add Balázs as codeowner to /errors/ directory
  • fix(cli): tune filter for extracting example .tar: #​40513
  • Add additional tests for prefetch and trailingSlash: #​40517
  • Wrap parallel routes tests in describe: #​40546
  • fix(#​40025): run next/script beforeInteractive test in both dev & prod: #​40541
Credits

Huge thanks to @​huozhi, @​shuding, @​ijjk, @​jasham, @​Kikobeats, @​wyattjoh, @​rubytree33, @​timneutkens, @​balazsorban44, @​andrewrjohn, @​SukkaW, @​hanneslund, @​leerob, @​Djo1e, @​kdy1, @​msafi, @​tknickman, @​feugy, @​cramforce, @​ryparker, @​victorboucher, @​steven-tey, @​JDansercoer, @​janklimo, @​hiro0218, @​HaNdTriX, @​migueloller, @​flex-kyunghwa, @​saalimzafar, @​alxhotel, @​janicklas-ralph, @​feedthejim, and @​chornos13 for helping!

postcss/postcss

v8.4.17

Compare Source

  • Fixed Node.before() unexpected behavior (by Romain Menke).
  • Added TOC to docs (by Mikhail Dedov).
reduxjs/react-redux

v8.0.4

Compare Source

This patch release fixes some minor TS types issues, and updates the rarely-used areStatesEqual option for connect to now pass through ownProps for additional use in determining which pieces of state to compare if desired.

Note: 8.0.3 was accidentally published without one of these fixes. Use 8.0.4 instead.

Changelog

TS Fixes

We've fixed an import of React that caused issues with the allowSyntheticDefaultImports TS compiler flag in user projects.

connect already accepted a custom context instance as props.context, and had runtime checks in case users were passing through a real value with app data as props.context instead. However, the TS types did not handle that case, and this would fail to compile. If your own component expects props.context with actual data, connect's types now use that type instead.

The ConnectedProps<T> type had a mismatch with React's built-in React.ComponentProps<Component> type, and that should now work correctly.

Other Changes

The areStatesEqual option to connect now receives ownProps as well, in case you need to make a more specific comparison with certain sections of state.

The new signature is:

{
  areStatesEqual?: (
    nextState: State,
    prevState: State,
    nextOwnProps: TOwnProps,
    prevOwnProps: TOwnProps
  ) => boolean
}

What's Changed

Full Changelog: reduxjs/react-redux@v8.0.2...v8.0.4

v8.0.3

[Compare Source](https://github.com/


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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, click this checkbox.

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

@codecov
Copy link

codecov bot commented Oct 1, 2022

Codecov Report

Merging #126 (0699669) into main (011fe88) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #126   +/-   ##
=======================================
  Coverage   44.60%   44.60%           
=======================================
  Files         101      101           
  Lines        2309     2309           
  Branches      210      210           
=======================================
  Hits         1030     1030           
  Misses       1254     1254           
  Partials       25       25           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@github-actions
Copy link
Contributor

github-actions bot commented Oct 1, 2022

Deploy preview for algoworld-swapper-staging ready!

✅ Preview
https://algoworld-swapper-staging-8xw43a87w-algoworldexplorer.vercel.app
https://pr126-200.vercel-action.millionalgos.com

Built with commit 0699669.
This pull request is being automatically deployed with vercel-action

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f671cfc to b7bed49 Compare October 5, 2022 03:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b7bed49 to 0699669 Compare October 5, 2022 08:50
@aorumbayev aorumbayev merged commit 6e2ac8e into main Oct 5, 2022
@aorumbayev aorumbayev deleted the renovate/all-minor-patch branch October 5, 2022 09:57
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant