Bump nanoid and mattermost-redux in /webapp
Bumps nanoid to 3.3.8 and updates ancestor dependency mattermost-redux. These dependencies need to be updated together.
Updates nanoid from 2.1.11 to 3.3.8
Release notes
Sourced from nanoid's releases.
3.0 Migration Guide
Nano ID 3.0 is the biggest release in the project history. Unfortunately, you will need to change the code of your application. But the changes are very small in most cases. In return, you will have better performance, smaller size, ES modules and TypeScript support.
Known Issues
- Only Create React App 4.0 supports dual ESM/CJS modules.
Simple Case
In simple cases, you just need to change default import to named import.
- import nanoid from 'nanoid' + import { nanoid } from 'nanoid'nanoid() //=> "sSAi9F8yakJZPxOCr_WFb"
nanoid(5) //=> "ISe9l"
If you support IE, you need to transpile
node_modulesby Babel.Non-secure and asynchronous Nano ID need only import changes as well.
- import nanoid from 'nanoid/non-secure' + import { nanoid } from 'nanoid/non-secure'nanoid() //=> "sSAi9F8yakJZPxOCr_WFb"
- import nanoid from 'nanoid/async' + import { nanoid } from 'nanoid/async'nanoid().then(id => { id //=> "sSAi9F8yakJZPxOCr_WFb" })
TypeScript
Remove
@types/nanoidif you have it. Nano ID now have built-in types.npm uninstall @types/nanoidReact Native
For Expo you need to load the file by direct path:
... (truncated)
Changelog
Sourced from nanoid's changelog.
3.3.8
- Fixed a way to break Nano ID by passing non-integer size (by
@myndzi).3.3.7
- Fixed
node16TypeScript support (by Saadi Myftija).3.3.6
- Fixed package.
3.3.5
- Backport funding information.
3.3.4
- Fixed
--helpin CLI (by@Lete114).3.3.3
- Reduced size (by Anton Khlynovskiy).
3.3.2
- Fixed
enhanced-resolvesupport.3.3.1
- Reduced package size.
3.3
- Added
sizeargument to function fromcustomAlphabet(by Stefan Sundin).3.2
- Added
--sizeand--alphabetarguments to binary (by Vitaly Baev).3.1.32
- Reduced
asyncexports size (by Artyom Arutyunyan).- Moved from Jest to uvu (by Vitaly Baev).
3.1.31
- Fixed collision vulnerability on object in
size(by Artyom Arutyunyan).3.1.30
- Reduced size for project with
brotlicompression (by Anton Khlynovskiy).3.1.29
- Reduced npm package size.
3.1.28
- Reduced npm package size.
3.1.27
- Cleaned
dependenciesfrom development tools.3.1.26
... (truncated)
Commits
3044cd5Release 3.3.8 version4fe3495Update size limitd643045Fix pool pollution, infinite loop (#510)89d82d2Release 3.3.7 version5022c35Update dual-publish3e7a8e5Remove benchmark from CI for v3d356144Fix CI for v337b25dfMove to pnpm 8d96f392Release 3.3.6 version8210dfbRelease 3.3.5 version- Additional commits viewable in compare view
Updates mattermost-redux from 5.33.1 to 10.6.0
Release notes
Sourced from mattermost-redux's releases.
v10.6.0
Mattermost Platform Release 10.6.0 contains multiple new quality of life improvements as well as PostgreSQL performance enhancements.
v10.6.0-rc3
Mattermost Platform Release 10.6.0-rc3
v10.6.0-rc2
Mattermost Platform Release 10.6.0-rc2
v10.6.0-rc1
Mattermost Platform Release 10.6.0-rc1
v10.5.3-rc1
Mattermost Platform Release 10.5.3-rc1
v10.5.2
Mattermost Platform Release 10.5.2 contains low to high severity level security fixes.
v10.5.1
Mattermost Platform Release 10.5.1 is the latest Extended Support Release and contains a Compliance Export overhaul as well as other improvements, bug fixes and breaking changes.
v10.5.1-rc2
Mattermost Platform Release 10.5.1-rc2
v10.5.1-rc1
Mattermost Platform Release 10.5.1-rc1
v10.5.0
Mattermost Platform Release 10.5.0
v10.5.0-rc6
Mattermost Platform Release 10.5.0-rc6
v10.5.0-rc5
Mattermost Platform Release 10.5.0-rc5
v10.5.0-rc4
Mattermost Platform Release 10.5.0-rc4
v10.5.0-rc3
Mattermost Platform Release 10.5.0-rc3
v10.5.0-rc2
Mattermost Platform Release 10.5.0-rc2
v10.5.0-rc1
Mattermost Platform Release 10.5.0-rc1
v10.4.5-rc1
Mattermost Platform Release 10.4.5-rc1
... (truncated)
Commits
86aad9dAdd platform/mattermost-redux package for publishing (#30020)- See full diff in compare view
Maintainer changes
This version was pushed to npm by hmhealey, a new releaser for mattermost-redux since your current version.
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Reviewers
The following users could not be added as reviewers: manland. Either the username does not exist or it does not have the correct permissions to be added as a reviewer.
Please fix the above issues or remove invalid values from dependabot.yml.
@dependabot recreate
This PR has been automatically labelled "stale" because it hasn't had recent activity. A core team member will check in on the status of the PR to help with questions. Thank you for your contribution!
@dependabot recreate
@Kshitij-Katiyar dependabot has created PRs for a bunch of plugins to update mattermost-redux. Unfortunately, these plugins have not kept up with dependencies and the version jump includes breaking changes. It looks like we've held off on upgrading but we can't keep pushing this out. I'll be assigning you the tickets.
@Kshitij-Katiyar dependabot has created PRs for a bunch of plugins to update mattermost-redux. Unfortunately, these plugins have not kept up with dependencies and the version jump includes breaking changes. It looks like we've held off on upgrading but we can't keep pushing this out. I'll be assigning you the tickets.
@wiggin77 Sure, we will be looking into it
This PR has been automatically labelled "stale" because it hasn't had recent activity. A core team member will check in on the status of the PR to help with questions. Thank you for your contribution!