Skip to content

Bump webpack from 5.103.0 to 5.105.0 in /webapp in the npm_and_yarn group across 1 directory - #4

Closed
dependabot[bot] wants to merge 15 commits into
masterfrom
dependabot/npm_and_yarn/webapp/npm_and_yarn-c081eec248
Closed

Bump webpack from 5.103.0 to 5.105.0 in /webapp in the npm_and_yarn group across 1 directory#4
dependabot[bot] wants to merge 15 commits into
masterfrom
dependabot/npm_and_yarn/webapp/npm_and_yarn-c081eec248

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm_and_yarn group with 1 update in the /webapp directory: webpack.

Updates webpack from 5.103.0 to 5.105.0

Release notes

Sourced from webpack's releases.

v5.105.0

Minor Changes

  • Allow resolving worker module by export condition name when using new Worker() (by @​hai-x in #20353)

  • Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by @​hai-x in #20320)

  • Added the tsconfig option for the resolver options (replacement for tsconfig-paths-webpack-plugin). Can be false (disabled), true (use the default tsconfig.json file to search for it), a string path to tsconfig.json, or an object with configFile and references options. (by @​alexander-akait in #20400)

  • Support import.defer() for context modules. (by @​ahabhgk in #20399)

  • Added support for array values ​​to the devtool option. (by @​hai-x in #20191)

  • Improve rendering node built-in modules for ECMA module output. (by @​hai-x in #20255)

  • Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by @​xiaoxiaojx in #20312)

Patch Changes

  • Fixed ESM default export handling for .mjs files in Module Federation (by @​y-okt in #20189)

  • Optimized import.meta.env handling in destructuring assignments by using cached stringified environment definitions. (by @​xiaoxiaojx in #20313)

  • Respect the stats.errorStack option in stats output. (by @​samarthsinh2660 in #20258)

  • Fixed a bug where declaring a module variable in module scope would conflict with the default moduleArgument. (by @​xiaoxiaojx in #20265)

  • Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., virtual:routes), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by @​xiaoxiaojx in #20390)

  • Fixed Worker self-import handling to support various URL patterns (e.g., import.meta.url, new URL(import.meta.url), new URL(import.meta.url, import.meta.url), new URL("./index.js", import.meta.url)). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by @​xiaoxiaojx in #20381)

  • Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by @​xiaoxiaojx in #20345)

  • Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by @​samarthsinh2660 in #20251)

  • Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by @​hai-x in #20346)

  • Fixed import.meta.env.xxx behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by @​xiaoxiaojx in #20289)

  • Improved parsing error reporting by adding a link to the loader documentation. (by @​gaurav10gg in #20244)

  • Fix typescript types. (by @​alexander-akait in #20305)

  • Add declaration for unused harmony import specifier. (by @​hai-x in #20286)

  • Fix compressibility of modules while retaining portability. (by @​dmichon-msft in #20287)

  • Optimize source map generation: only include ignoreList property when it has content, avoiding empty arrays in source maps. (by @​xiaoxiaojx in #20319)

  • Preserve star exports for dependencies in ECMA module output. (by @​hai-x in #20293)

... (truncated)

Changelog

Sourced from webpack's changelog.

5.105.0

Minor Changes

  • Allow resolving worker module by export condition name when using new Worker() (by @​hai-x in #20353)

  • Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by @​hai-x in #20320)

  • Added the tsconfig option for the resolver options (replacement for tsconfig-paths-webpack-plugin). Can be false (disabled), true (use the default tsconfig.json file to search for it), a string path to tsconfig.json, or an object with configFile and references options. (by @​alexander-akait in #20400)

  • Support import.defer() for context modules. (by @​ahabhgk in #20399)

  • Added support for array values ​​to the devtool option. (by @​hai-x in #20191)

  • Improve rendering node built-in modules for ECMA module output. (by @​hai-x in #20255)

  • Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by @​xiaoxiaojx in #20312)

Patch Changes

  • Fixed ESM default export handling for .mjs files in Module Federation (by @​y-okt in #20189)

  • Optimized import.meta.env handling in destructuring assignments by using cached stringified environment definitions. (by @​xiaoxiaojx in #20313)

  • Respect the stats.errorStack option in stats output. (by @​samarthsinh2660 in #20258)

  • Fixed a bug where declaring a module variable in module scope would conflict with the default moduleArgument. (by @​xiaoxiaojx in #20265)

  • Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., virtual:routes), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by @​xiaoxiaojx in #20390)

  • Fixed Worker self-import handling to support various URL patterns (e.g., import.meta.url, new URL(import.meta.url), new URL(import.meta.url, import.meta.url), new URL("./index.js", import.meta.url)). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by @​xiaoxiaojx in #20381)

  • Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by @​xiaoxiaojx in #20345)

  • Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by @​samarthsinh2660 in #20251)

  • Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by @​hai-x in #20346)

  • Fixed import.meta.env.xxx behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by @​xiaoxiaojx in #20289)

  • Improved parsing error reporting by adding a link to the loader documentation. (by @​gaurav10gg in #20244)

  • Fix typescript types. (by @​alexander-akait in #20305)

  • Add declaration for unused harmony import specifier. (by @​hai-x in #20286)

  • Fix compressibility of modules while retaining portability. (by @​dmichon-msft in #20287)

  • Optimize source map generation: only include ignoreList property when it has content, avoiding empty arrays in source maps. (by @​xiaoxiaojx in #20319)

... (truncated)

Commits
  • 1486f9a chore(release): new release
  • 1a517f6 feat: added the tsconfig option for the resolver options (#20400)
  • 7b3b0f7 feat: support import.defer() for context modules
  • c4a6a92 refactor: more types and increase types coverage
  • 5ecc58d feat: consider asset module as side-effect-free (#20352)
  • cce0f69 test: avoid comma operator in BinaryMiddleware test (#20398)
  • cd4793d feat: support import specifier guard (#20320)
  • fe48655 docs: update examples (#20397)
  • de107f8 fix(VirtualUrlPlugin): set resourceData.context to avoid invalid fallback (#2...
  • a656ab1 test: add self-import test case for dynamic import (#20389)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for webpack since your current version.


Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

claude and others added 15 commits November 18, 2025 17:55
This plugin enables voice messaging in Mattermost with full support for:
- Desktop (Web, Electron app)
- iOS (Safari 14.3+)
- Android (Chrome)

Key features:
- MediaRecorder API for universal browser support
- Pause/Resume functionality during recording
- WebM/Opus audio format for optimal quality and size
- Responsive UI that works on mobile devices
- Server-side file upload and post creation

Technical stack:
- Server: Go with Mattermost plugin API
- Webapp: React/TypeScript with MediaRecorder API
- Build system: Makefile with cross-platform compilation

This solves the limitation of existing voice plugins that only work
on desktop by using modern web standards supported in mobile browsers.
Major enhancements to the cross-platform media messaging plugin:

Voice messaging improvements:
- Added beautiful audio player with waveform visualization
- Playback speed control (1x, 1.25x, 1.5x, 2x)
- Progress bar with seek functionality
- Slash command /voice to quickly open recorder

Video messaging (NEW):
- Full video recording with live preview from webcam
- Support for pause/resume during recording
- VP9 codec for optimal quality/size ratio
- Slash command /video to quickly open recorder
- Video clip player for playback

Security enhancements:
- File validation with magic number checking
- Size limits (50MB audio, 100MB video)
- Channel permission verification
- MIME type validation

Technical additions:
- Unit tests for server-side validation
- WebSocket events for slash commands
- Support for multiple media formats

All features work across desktop, web, iOS, and Android platforms.
…ar video

- Fixed go.mod: removed replace directive, updated module path
- Updated plugin.json name to "Voice & Video Clips"
- Added peerDependencies for React in package.json
- Added css-loader and style-loader dependencies
- Added .nvmrc for Node v20
- Redesigned video_clip_player.tsx as 240px circular Telegram-style
  with SVG progress ring and overlay controls
- Updated video_recorder_button.tsx with circular preview and
  square aspect ratio (1:1) for circular display
Bug fixes:
- Fix TestIsValidMediaFile to use correct function name and params
- Fix duplicate var declaration in plugin.go handleUpload
- Add proper error handling for duration parsing
- Fix memory leak in video_recorder_button.tsx (URL.revokeObjectURL)

CI/CD:
- Add GitHub Actions workflow for build, test, lint, release
- Add golangci-lint configuration
- Generate go.sum for reproducible builds
- Generate package-lock.json for webapp
Bumps the go_modules group with 3 updates in the /server directory: [golang.org/x/crypto](https://github.com/golang/crypto), [golang.org/x/net](https://github.com/golang/net) and google.golang.org/protobuf.


Updates `golang.org/x/crypto` from 0.20.0 to 0.35.0
- [Commits](golang/crypto@v0.20.0...v0.35.0)

Updates `golang.org/x/net` from 0.21.0 to 0.38.0
- [Commits](golang/net@v0.21.0...v0.38.0)

Updates `google.golang.org/protobuf` from 1.32.0 to 1.33.0

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.35.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/net
  dependency-version: 0.38.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.33.0
  dependency-type: indirect
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
- Remove all console.log/error statements from production code
- Add fallback WebSocket event handlers for compatibility
- Remove unused fileInfo parameter from VoiceClipPlayer
- Remove unused fileInfo parameter from VideoClipPlayer
- Add comments for play() catch blocks (autoplay policy)
iOS Safari fixes:
- Add isIOS() detection for platform-specific behavior
- Use MP4/AAC codec on iOS (VP9/WebM not supported)
- Use MP4/H.264 for video on iOS Safari
- Simplified getUserMedia constraints for iOS
- Add isPauseResumeSupported() - iOS doesn't support pause/resume
- Hide pause/resume buttons on iOS Safari

Cross-platform improvements:
- Add getVideoMimeType() with proper codec fallbacks
- Fix file extensions to match actual MIME type
- Use correct extension (.mp4 on iOS, .webm on desktop)
- Add touch event support for audio progress bar seeking
- Mobile-responsive modal sizing

Codec priority:
- Desktop: VP9 > VP8 > H.264
- iOS: H.264/AAC only
- Audio: Opus on desktop, AAC on iOS
- Add isFirefox() detection function
- Fix isPauseResumeSupported() to check MediaRecorder existence first
- Fix getVideoMimeType() to return empty string instead of hardcoded fallback
- Prioritize OGG/Opus codecs for Firefox (better Linux support)
- Prioritize VP8 over VP9 for Firefox video recording
- Add try-catch blocks for pause/resume in MediaRecorderWrapper
- Handle empty mimeType in getFileExtensionForMimeType()
Waveform Visualizer:
- Fix memory leak by tracking MediaElementSource connection
- Add proper AudioContext cleanup on unmount
- Use deterministic pattern instead of Math.random() for static waveform

Server:
- Add .mp3 and .aac to allowed audio extensions
- Add magic number validation for MP3 (ID3/frame sync) and AAC (ADTS)
- Update error message to include new formats

Tests:
- Add test cases for MP3 and AAC file validation
Server configuration:
- Add MaxAudioFileSize, MaxVideoFileSize (in MB)
- Add MaxVideoDuration (separate from audio)
- Add AudioBitrate, VideoBitrate (in kbps)
- Add AllowedAudioFormats, AllowedVideoFormats (configurable)
- Use config values for file size and duration validation
- Return all settings via /api/v1/config endpoint

Plugin settings UI (plugin.json):
- Add dropdowns for audio/video bitrate selection
- Add number inputs for file sizes and durations
- Add text inputs for allowed formats
- Organize settings with clear descriptions

Client-side:
- Create config_service.ts for fetching and caching config
- Update audio_recorder.ts to accept dynamic bitrate
- Update voice_recorder_button to use config (bitrate, max duration, auto-stop)
- Update video_recorder_button to use config (bitrate, max duration, auto-stop)

Settings available in System Console > Plugins > Voice & Video Clips:
- Maximum audio/video duration
- Maximum file sizes
- Preferred formats (WebM, OGG, MP4)
- Audio bitrate (64-256 kbps)
- Video bitrate (500-4000 kbps)
- Allowed file extensions
- Waveform visualization toggle
- Add internationalization with 12 languages (auto-detects system language)
- Add cartoon "pulk" notification sounds for voice/video messages
- Create comprehensive English documentation in doc/ folder
- Update README.md to English with links to detailed docs
- Integrate translations into voice and video recorder components

Languages: en, ru, de, fr, es, pt, zh, ja, ko, it, nl, pl
…ver/go_modules-345a13660d

Bump the go_modules group across 1 directory with 3 updates
- Replace build.yml with standardized ci.yml and auto-release.yml
- Update GitHub Actions to latest versions with pinned SHAs
- Add lint job with golangci-lint
- Set version to 0.4.0
- Add .golangci.yml configuration
- Handle all json.Encode error returns for errcheck compliance
Bumps the npm_and_yarn group with 1 update in the /webapp directory: [webpack](https://github.com/webpack/webpack).


Updates `webpack` from 5.103.0 to 5.105.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.103.0...v5.105.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-version: 5.105.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 7, 2026
@gluckdev gluckdev closed this May 3, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 3, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/webapp/npm_and_yarn-c081eec248 branch May 3, 2026 22:28
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.

2 participants