Merged
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.97.0-alpha.0->2.99.1-alpha.02.97.0-alpha.0->2.99.1-alpha.02.97.0-alpha.0->2.99.1-alpha.01.13.1->1.14.01.13.1->1.14.03.418.0->3.421.03.418.0->3.421.03.418.0->3.421.03.418.0->3.421.03.418.0->3.421.05.14.9->5.14.115.14.10->5.14.116.15.0->6.16.01.9.5->1.9.618.17.19->18.18.118.2.22->18.2.2318.2.7->18.2.86.7.2->6.7.36.7.2->6.7.34.0.4->4.1.02.97.0->2.99.12.97.0->2.99.12.1463.0->2.1467.00.19.3->0.19.41.5.0->1.5.110.3.6->10.3.103.4.0->3.5.0🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
aws-powertools/powertools-lambda-typescript (@aws-lambda-powertools/logger)
v1.14.0Compare Source
Features
arm64to integration test matrix (#1720) (61ad5ac)1.13.1 (2023-09-21)
Bug Fixes
aws/aws-sdk-js-v3 (@aws-sdk/client-dynamodb)
v3.421.0Compare Source
Note: Version bump only for package @aws-sdk/client-dynamodb
v3.420.0Compare Source
Features
aws/aws-sdk-js-v3 (@aws-sdk/client-s3)
v3.421.0Compare Source
Note: Version bump only for package @aws-sdk/client-s3
v3.420.0Compare Source
Features
aws/aws-sdk-js-v3 (@aws-sdk/client-sesv2)
v3.421.0Compare Source
Note: Version bump only for package @aws-sdk/client-sesv2
aws/aws-sdk-js-v3 (@aws-sdk/client-sfn)
v3.421.0Compare Source
Note: Version bump only for package @aws-sdk/client-sfn
aws/aws-sdk-js-v3 (@aws-sdk/s3-request-presigner)
v3.421.0Compare Source
Note: Version bump only for package @aws-sdk/s3-request-presigner
v3.420.0Compare Source
Note: Version bump only for package @aws-sdk/s3-request-presigner
mui/material-ui (@mui/icons-material)
v5.14.11Compare Source
Sep 26, 2023
A big thanks to the 23 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.14.11AutocompleteValueto make it available from path import (#38638) @vadimka123@mui/utils@5.14.11isMuiElementutil (#38129) @sai6855@mui/base@5.0.0-beta.17@mui/joy@5.0.0-beta.8JoyDrawerin theme components (#39074) @Studio384@mui/material-next@6.0.0-alpha.103@mui/lab@5.0.0-alpha.146Docs
use-count-upintegration with the Circular Progress (#38952) @anon-phantomCore
useEnhancedEffect(#39035) @JanpotAll contributors of this release in alphabetical order: @alexfauquette, @alisasanib, @anle9650, @anon-phantom, @DanailH, @danilo-leal, @DiegoAndai, @flaviendelangle, @gitstart, @Janpot, @jergason, @maheshguntur, @michaldudak, @mikailaread, @mj12albert, @mnajdova, @oliviertassinari, @sai6855, @Studio384, @tebersefa, @vadimka123, @zanivan, @ZeeshanTamboli
mui/mui-x (@mui/x-date-pickers)
v6.16.0Compare Source
Sep 29, 2023
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
🎁 Add a clearable behavior to all the single input pickers and fields (#9095) @noraleonte
The pickers and fields now have an out-of-the box implementation for clearing the field value. You can see the documentation for this behavior on the Date Picker documentation.
💫 Add Date Picker customization playground (#9581) @noraleonte
You can play around with style customization options on the Date Picker documentation.
We are thrilled to hear your feedback about this functionality!
🚀 Fix header filters menu auto closing on render (#10483) @MBilalShafi
🎯 Fix column headers scroll when theme scoping is used (#10437) @cherniavskii
🌍 Improve Russian (ru-RU) locale on the data grid
🐞 Bugfixes
📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.16.0globaltoglobalScopedue to Jest issue (#10470) @romgrk@mui/x-data-grid-pro@6.16.0Same changes as in
@mui/x-data-grid@6.16.0, plus:@mui/x-data-grid-premium@6.16.0Same changes as in
@mui/x-data-grid-pro@6.16.0.Date Pickers
@mui/x-date-pickers@6.16.0shouldDisableDatevalidation (#10502) @michelengelenclearablefield behavior (#9095) @noraleontedayOfWeekFormatter(#10345) @michelengelen@mui/x-date-pickers-pro@6.16.0Same changes as in
@mui/x-date-pickers@6.16.0.Charts /
@mui/x-charts@6.0.0-alpha.13Tree View /
@mui/x-tree-view@6.0.0-beta.0Multiplegeneric (#10478) @flaviendelangleDocs
GridRenderCellParamsinterface (#10435) @cherniavskiiCore
prism-okaidia.csswith docs-infra @oliviertassinarireduxjs/redux-toolkit (@reduxjs/toolkit)
v1.9.6Compare Source
This bugfix release adds a new dev-mode middleware to catch accidentally dispatching an action creator, adds a new listener middleware option around waiting for forks, adds a new option to update provided tags when
updateQueryDatais used, reworks internal types to better handle uses with TS declaration output, and fixes a variety of small issues.Changelog
Action Creator Dev Check Middleware
RTK already includes dev-mode middleware that check for the common mistakes of accidentally mutating state and putting non-serializable values into state or actions.
Over the years we've also seen a semi-frequent error where users accidentally pass an action creator reference to
dispatch, instead of calling it and dispatching the action it returns.We've added another dev-mode middleware that specifically catches this error and warns about it.
Additional Options
The listener middleware's
listenerApi.fork()method now has an optionalautoJoinflag that can be used to keep the effect from finishing until all active forked tasks have completed.updateQueryDatanow has anupdateProvidedTagsoption that will force a recalculation of that endpoint's provided tags. It currently defaults tofalse, and we'll likely turn that totruein the next major.Other Fixes
The
builder.addCasemethod now throws an error if atypestring is empty.fetchBaseQuerynow uses an alternate method to clone the originalRequestin order to work around an obscure Chrome bug.The immutability middleware logic was tweaked to avoid a potential stack overflow.
Types Changes
The internal type imports have been reworked to try to fix "type portability" issues when used in combination with TS declaration outputs.
A couple additional types were exported to help with wrapping
createAsyncThunk.What's Changed
Full Changelog: reduxjs/redux-toolkit@v1.9.5...v1.9.6
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v6.7.3Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v6.7.3Compare Source
Note: Version bump only for package @typescript-eslint/parser
You can read about our versioning strategy and releases on our website.
vitejs/vite-plugin-react (@vitejs/plugin-react)
v4.1.0Compare Source
@types/babel__coresto dependencies (fix #211)@babel/core#212index.d.ctsfile so you don't get types errors when settingmoduleResolutiontonode16ornodenextin your tsconfig (we recommend usingbundlerwhich is more close to how Vite works)aws/aws-cdk (aws-cdk)
v2.99.1Compare Source
Bug Fixes
Alpha modules (2.99.1-alpha.0)
v2.99.0Compare Source
Features
Bug Fixes
instanceTypeoptional on multinode jobs (#27223) (6616026), closes #27185Alpha modules (2.99.0-alpha.0)
Features
Bug Fixes
v2.98.0Compare Source
Features
Bug Fixes
Alpha modules (2.98.0-alpha.0)
Features
v2.97.1Compare Source
Reverts
Scheduleclass" (#27284) (e2fc724), closes aws/aws-cdk#27105 #27259Alpha modules (2.97.1-alpha.0)
aws/aws-sdk-js (aws-sdk)
v2.1467.0Compare Source
v2.1466.0Compare Source
v2.1465.0Compare Source
Configuration
📅 Schedule: Branch creation - "before 5am on sunday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.