Skip to content

Bump nanoid and mattermost-redux in /webapp#42

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/webapp/multi-981b61d20c
Open

Bump nanoid and mattermost-redux in /webapp#42
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/webapp/multi-981b61d20c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2025

Bumps nanoid to 3.3.11 and updates ancestor dependency mattermost-redux. These dependencies need to be updated together.

Updates nanoid from 2.1.11 to 3.3.11

Release notes

Sourced from nanoid's releases.

3.3.11

  • Fixed React Native support.

3.3.10

3.3.9

  • Reduced npm package size.

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_modules by 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

... (truncated)

Changelog

Sourced from nanoid's changelog.

3.3.11

  • Fixed React Native support.

3.3.10

3.3.9

  • Reduced npm package size.

3.3.8

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

3.3.7

  • Fixed node16 TypeScript support (by Saadi Myftija).

3.3.6

  • Fixed package.

3.3.5

  • Backport funding information.

3.3.4

3.3.3

  • Reduced size (by Anton Khlynovskiy).

3.3.2

  • Fixed enhanced-resolve support.

3.3.1

  • Reduced package size.

3.3

  • Added size argument to function from customAlphabet (by Stefan Sundin).

3.2

  • Added --size and --alphabet arguments to binary (by Vitaly Baev).

3.1.32

  • Reduced async exports 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 brotli compression (by Anton Khlynovskiy).

3.1.29

... (truncated)

Commits

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.4

Mattermost Platform Extended Support Release 10.5.4 contains low to medium level security fixes.

v10.5.4-rc2

Mattermost Platform Release 10.5.4-rc2

v10.5.4-rc1

Mattermost Platform Release 10.5.4-rc1

v10.5.3

Mattermost Platform Extended Support Release 10.5.3 contains low to medium level security fixes.

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

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by hmhealey, a new releaser for mattermost-redux since your current version.


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 this major version will 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 version will 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 dependency will 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.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 4, 2025
Bumps [nanoid](https://github.com/ai/nanoid) to 3.3.11 and updates ancestor dependency [mattermost-redux](https://github.com/mattermost/mattermost/tree/HEAD/webapp/platform/mattermost-redux). These dependencies need to be updated together.


Updates `nanoid` from 2.1.11 to 3.3.11
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@2.1.11...3.3.11)

Updates `mattermost-redux` from 5.33.1 to 10.6.0
- [Release notes](https://github.com/mattermost/mattermost/releases)
- [Changelog](https://github.com/mattermost/mattermost/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mattermost/mattermost/commits/mattermost-redux@10.6.0/webapp/platform/mattermost-redux)

---
updated-dependencies:
- dependency-name: nanoid
  dependency-version: 3.3.11
  dependency-type: indirect
- dependency-name: mattermost-redux
  dependency-version: 10.6.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/webapp/multi-981b61d20c branch from b304605 to 8d82ff8 Compare May 4, 2025 18:55
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