Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 15, 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.1

Release notes

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

v0.18.1

What's Changed

New Features 🎉

Bug Fixes 🐞

fix: Auto call setGlobalFederationInstance when execute createInstance by @​Nsttt in module-federation/core#3975

Document 📖

Other Changes

New Contributors

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

v0.18.0

What's Changed

New Features 🎉

Bug Fixes 🐞

Document 📖

Other Changes

... (truncated)

Changelog

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

0.18.1

Patch Changes

  • 0bf3a3a: test: add comprehensive test coverage for request pattern filtering

    • Add integration tests for request pattern filtering in provide-filters test case
    • Add test cases verifying modules match/don't match request include filters
    • Add unit tests for extractPathAfterNodeModules utility function
    • Add unit tests for createLookupKeyForSharing utility function
    • Add test files for request filtering scenarios (components/Button.js, utils/helper.js, etc.)

    This enhances test coverage to ensure request pattern filtering functionality works correctly and prevents regressions.

  • Updated dependencies [0bf3a3a]

  • Updated dependencies [9f16eac]

    • @​module-federation/sdk@​0.18.1
    • @​module-federation/manifest@​0.18.1
    • @​module-federation/bridge-react-webpack-plugin@​0.18.1
    • @​module-federation/cli@​0.18.1
    • @​module-federation/data-prefetch@​0.18.1
    • @​module-federation/dts-plugin@​0.18.1
    • @​module-federation/managers@​0.18.1
    • @​module-federation/rspack@​0.18.1
    • @​module-federation/runtime-tools@​0.18.1
    • @​module-federation/inject-external-runtime-core-plugin@​0.18.1
    • @​module-federation/error-codes@​0.18.1

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

... (truncated)

Commits
  • 5f18bc2 chore: release v0.18.1
  • 436d1af PR8: SharePlugin - Unified API (#3914)
  • 0bf3a3a feat: implement nodeModulesReconstructedLookup feature for PR7 (#3913)
  • ec27c71 Release v0.18.0 (#3980)
  • 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)
  • 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.


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 Aug 15, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 15, 2025 01:25
@dependabot dependabot bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels Aug 15, 2025
@bert-e
Copy link
Contributor

bert-e commented Aug 15, 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 15, 2025

Request integration branches

Waiting for integration branch creation to be requested by the user.

To request integration branches, please comment on this pull request with the following command:

/create_integration_branches

Alternatively, the /approve and /create_pull_requests commands will automatically
create the integration branches.

The following options are set: bypass_author_approval, bypass_jira_check

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.1
- [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.1/packages/enhanced)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/shell-ui/multi-6e26c585c1 branch from 0517b3c to 5a0c1d2 Compare September 8, 2025 12:05
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