Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2025

Bumps koa to 3.0.1 and updates ancestor dependency @module-federation/enhanced. These dependencies need to be updated together.

Updates koa from 2.11.0 to 3.0.1

Release notes

Sourced from koa's releases.

v3.0.1

What's Changed

Full Changelog: koajs/koa@v3.0.0...v3.0.1

v3.0.0

This is a major release.

Breaking

  • Minimum node v18
  • Removes .redirect('back'), adds .back(fallback_url) @​fl0w koajs/koa#1115
  • For .redirect(), don't render redirect values in anchor ref koajs/koa@ff25eb4
  • req.origin should display the origin header if it exists, not the current hostname koajs/koa#1008. origin now aligns with the Origin header as used in CORS.
  • .body=<json> should not overwrite type if type already json koajs/koa#1120
  • Remove special ENOENT support koajs/koa#1861 - this is a big change and will require any file servers to adapt to this change for handling 404s / files not found
  • Removes generator deprecation messages. Generators are no longer supported. Koa no longer asserts if generators are used. Set content-length: 0 if body is explicitly set to null @​ognjenjevremovic #1528 Remove obsolete createAsyncCtxStorageMiddleware koajs/koa#1817
  • ctx.throw now requires a format of ctx.throw(status, error, properties). See: https://www.npmjs.com/package/http-errors

New

Fixes

... (truncated)

Changelog

Sourced from koa's changelog.

[!IMPORTANT] Moving forwards we are using the GitHub releases page at https://github.com/koajs/koa/releases in combination with np for publishing releases and their changelogs.


3.0.0-alpha.3 / 2025-02-11

fixes

  • Avoid redos on host and protocol getter

3.0.0-alpha.2 / 2024-11-04

breaking changes

  • Update http-errors to v2.0.0 #1486
  • Remove res.redirect('back'), add back() method to ctx #1115
  • Replace node querystring with URLSearchParams #1828
  • Remove obsolete createAsyncCtxStorageMiddleware #1817

features

  • Add support for web WHATWG #1830

updates

  • Update cookies to ~0.9.1 #1846
  • Update statuses to ^2.0.1
  • Update supertest to ^7.0.0 #1841

fixes

  • Fix exports.defaults in package.json #1630
  • Fix leaky handles in tests #1838
  • Fix body null checks #1814
  • Fix reformatting redirect URLs #1805 #1804
  • Fix passing ctx in error handler #1758

migrations

  • Migrate from jest to the native node test runner #1845

3.0.0-alpha.1 / 2023-04-12

fixes

3.0.0-alpha.0 / 2023-01-02

Breaking Changes

... (truncated)

Commits
  • 1ddb048 3.0.1
  • 422c551 Merge commit from fork
  • 6e51eb1 build(deps-dev): bump form-data from 4.0.3 to 4.0.4 (#1894)
  • d378e5c build(deps-dev): bump supertest from 7.1.1 to 7.1.4 (#1895)
  • cb22d8d build(deps): bump statuses from 2.0.1 to 2.0.2 (#1888)
  • 0acad8f feat: replace cache-content-type with mime-types directly (#1886)
  • 2f6e814 feat: replace debug module with pure node:util::debuglog (#1885)
  • 8620ced build(deps): bump debug from 4.4.0 to 4.4.1 (#1880)
  • dec1ffc build(deps-dev): bump supertest from 7.1.0 to 7.1.1 (#1879)
  • 9057541 chore: removes done callbacks in tests [CHORE-1870] (#1875)
  • Additional commits viewable in compare view

Updates @module-federation/enhanced from 0.2.8 to 0.18.0

Release notes

Sourced from @​module-federation/enhanced's releases.

v0.18.0

What's Changed

New Features 🎉

Bug Fixes 🐞

Document 📖

Other Changes

New Contributors

Full Changelog: module-federation/core@v0.17.1...v0.18.0

v0.17.1

What's Changed

New Features 🎉

Bug Fixes 🐞

... (truncated)

Changelog

Sourced from @​module-federation/enhanced's changelog.

0.18.0

Minor Changes

  • 0ab51b8: fix(enhanced): add module factory for EntryDependency when entry is empty

    • bind normalModuleFactory for EntryDependency when no moduleFactory is bound for EntryDependency
  • 98a29c3: feat(enhanced): add include/exclude filtering for shared modules

    • Add include/exclude filtering for both ConsumeSharedPlugin and ProvideSharedPlugin
    • Support version-based filtering using semantic version ranges (e.g., include: { version: '^18.0.0' })
    • Support request pattern filtering with string and RegExp (e.g., include: { request: /^Button/ })
    • Add singleton warnings when filters are used to prevent multiple shared instances
    • Enhanced type definitions and JSON schema validation for filtering options

Patch Changes

  • Updated dependencies [08f089a]
  • Updated dependencies [f6381e6]
    • @​module-federation/dts-plugin@​0.18.0
    • @​module-federation/sdk@​0.18.0
    • @​module-federation/data-prefetch@​0.18.0
    • @​module-federation/runtime-tools@​0.18.0
    • @​module-federation/cli@​0.18.0
    • @​module-federation/manifest@​0.18.0
    • @​module-federation/rspack@​0.18.0
    • @​module-federation/bridge-react-webpack-plugin@​0.18.0
    • @​module-federation/managers@​0.18.0
    • @​module-federation/inject-external-runtime-core-plugin@​0.18.0
    • @​module-federation/error-codes@​0.18.0

0.17.1

Patch Changes

  • bc3bc10: enhance HoistContainerReferencesPlugin for better module hoisting

    • Separate handling for container, federation, and remote dependencies
    • Improved support for runtimeChunk: 'single' configuration
    • Proper remote module hoisting using the new addRemoteDependency hook
    • Simplified cleanup logic for better performance
    • Changed runtime chunk detection to include all chunks with runtime (not just entry chunks)
    • Added comprehensive unit tests for the plugin functionality
  • 7000c1f: fix: BuildVersion now correctly reads from project's package.json

    • Fixed getBuildVersion() to accept optional root parameter for correct directory resolution
    • Updated StatsManager to use compiler.context when determining build version
    • Ensures buildVersion in mf-manifest.json matches the project's package.json version

... (truncated)

Commits
  • 3612e03 chore: release v0.18.0
  • 0ab51b8 fix(enhanced): add module factory for EntryDependency when entry is e… (#3953)
  • 98a29c3 feat(enhanced): add include/exclude filtering support for shared modules (#3949)
  • 05d5f9b release v0.17.1 (#3950)
  • 8727aa3 fix(enhanced): compilerInstance type should be string not enum (#3829)
  • 7000c1f fix: buildVersion now correctly reads from project's package.json (#3928)
  • bc3bc10 feat: enhance HoistContainerReferencesPlugin for better module hoisting (#3903)
  • a7cf276 feat: upgrade NX to 21.2.3, Storybook to 9.0.9, and TypeScript to 5.8.3 (#3920)
  • cce6a94 refactor: rename container hooks for clarity and consistency
  • 1825b9d fix(enhanced): add runtime safety checks to prevent errors (#3900)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by shawzhou, a new releaser for @​module-federation/enhanced 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 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.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [koa](https://github.com/koajs/koa) to 3.0.1 and updates ancestor dependency [@module-federation/enhanced](https://github.com/module-federation/core/tree/HEAD/packages/enhanced). These dependencies need to be updated together.


Updates `koa` from 2.11.0 to 3.0.1
- [Release notes](https://github.com/koajs/koa/releases)
- [Changelog](https://github.com/koajs/koa/blob/master/History.md)
- [Commits](koajs/koa@2.11.0...v3.0.1)

Updates `@module-federation/enhanced` from 0.2.8 to 0.18.0
- [Release notes](https://github.com/module-federation/core/releases)
- [Changelog](https://github.com/module-federation/core/blob/main/packages/enhanced/CHANGELOG.md)
- [Commits](https://github.com/module-federation/core/commits/v0.18.0/packages/enhanced)

---
updated-dependencies:
- dependency-name: koa
  dependency-version: 3.0.1
  dependency-type: indirect
- dependency-name: "@module-federation/enhanced"
  dependency-version: 0.18.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 6, 2025
@bert-e
Copy link
Contributor

bert-e commented Aug 6, 2025

Hello dependabot[bot],

My role is to assist you with the merge of this
pull request. Please type @bert-e help to get information
on this process, or consult the user documentation.

Available options
name description privileged authored
/after_pull_request Wait for the given pull request id to be merged before continuing with the current one.
/bypass_author_approval Bypass the pull request author's approval
/bypass_build_status Bypass the build and test status
/bypass_commit_size Bypass the check on the size of the changeset TBA
/bypass_incompatible_branch Bypass the check on the source branch prefix
/bypass_jira_check Bypass the Jira issue check
/bypass_peer_approval Bypass the pull request peers' approval
/bypass_leader_approval Bypass the pull request leaders' approval
/approve Instruct Bert-E that the author has approved the pull request. ✍️
/create_pull_requests Allow the creation of integration pull requests.
/create_integration_branches Allow the creation of integration branches.
/no_octopus Prevent Wall-E from doing any octopus merge and use multiple consecutive merge instead
/unanimity Change review acceptance criteria from one reviewer at least to all reviewers
/wait Instruct Bert-E not to run until further notice.
Available commands
name description privileged
/help Print Bert-E's manual in the pull request.
/status Print Bert-E's current status in the pull request TBA
/clear Remove all comments from Bert-E from the history TBA
/retry Re-start a fresh build TBA
/build Re-start a fresh build TBA
/force_reset Delete integration branches & pull requests, and restart merge process from the beginning.
/reset Try to remove integration branches unless there are commits on them which do not appear on the source branch.

Status report is not available.

The following options are set: bypass_author_approval, bypass_jira_check

@bert-e
Copy link
Contributor

bert-e commented Aug 6, 2025

Waiting for approval

The following approvals are needed before I can proceed with the merge:

  • the author

  • one peer

Peer approvals must include at least 1 approval from the following list:

The following options are set: bypass_author_approval, bypass_jira_check

Copy link

codecov bot commented Aug 6, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 63.45%. Comparing base (4a33315) to head (3e48477).
⚠️ Report is 51 commits behind head on development/4.1.

Additional details and impacted files
@@                 Coverage Diff                 @@
##           development/4.1     #929      +/-   ##
===================================================
+ Coverage            62.44%   63.45%   +1.00%     
===================================================
  Files                  273      273              
  Lines                12629    12649      +20     
  Branches              3642     3654      +12     
===================================================
+ Hits                  7886     8026     +140     
+ Misses                4719     4600     -119     
+ Partials                24       23       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@bert-e
Copy link
Contributor

bert-e commented Sep 15, 2025

Conflict

There is a conflict between your branch dependabot/npm_and_yarn/multi-2270368bb2 and the
destination branch development/4.1.

Please resolve the conflict on the feature branch (dependabot/npm_and_yarn/multi-2270368bb2).

git fetch && \
git checkout origin/dependabot/npm_and_yarn/multi-2270368bb2 && \
git merge origin/development/4.1

Resolve merge conflicts and commit

git push origin HEAD:dependabot/npm_and_yarn/multi-2270368bb2

The following options are set: bypass_author_approval, bypass_jira_check

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.

1 participant