Skip to content

chore(deps-dev): Bump webpack-dev-server from 5.2.1 to 5.2.3#2767

Merged
ankita10119 merged 1 commit intomasterfrom
dependabot/npm_and_yarn/webpack-dev-server-5.2.3
Apr 2, 2026
Merged

chore(deps-dev): Bump webpack-dev-server from 5.2.1 to 5.2.3#2767
ankita10119 merged 1 commit intomasterfrom
dependabot/npm_and_yarn/webpack-dev-server-5.2.3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

Bumps webpack-dev-server from 5.2.1 to 5.2.3.

Release notes

Sourced from webpack-dev-server's releases.

v5.2.3

5.2.3 (2026-01-12)

Bug Fixes

  • add cause for errorObject (#5518) (37b033d)
  • compatibility with event target and universal target and lazy compilation (574026c)
  • overlay: add ESC key to dismiss overlay (#5598) (f91baa8)
  • progress indicator styles (#5557) (41a53a1)
  • upgrade selfsigned to v5

v5.2.2

5.2.2 (2025-06-03)

Bug Fixes

  • "Overlay enabled" false positive (18e72ee)
  • do not crush when error is null for runtime errors (#5447) (309991f)
  • remove unnecessary header X_TEST (#5451) (64a6124)
  • respect the allowedHosts option for cross-origin header check (#5510) (03d1214)
Changelog

Sourced from webpack-dev-server's changelog.

5.2.3 (2026-01-12)

Bug Fixes

  • add cause for errorObject (#5518) (37b033d)
  • compatibility with event target and universal target and lazy compilation (574026c)
  • overlay: add ESC key to dismiss overlay (#5598) (f91baa8)
  • progress indicator styles (#5557) (41a53a1)
  • upgrade selfsigned to v5

5.2.2 (2025-06-03)

Bug Fixes

  • "Overlay enabled" false positive (18e72ee)
  • do not crush when error is null for runtime errors (#5447) (309991f)
  • remove unnecessary header X_TEST (#5451) (64a6124)
  • respect the allowedHosts option for cross-origin header check (#5510) (03d1214)
Commits
  • b550a70 chore(release): 5.2.3
  • 9704dc5 chore: upgrade selfsigned to v5 and remove node-forge dependency (#5618)
  • 92bf644 chore: bump express to update qs (#5621)
  • 792b2f0 chore(deps-dev): bump the dependencies group with 4 updates (#5606)
  • 6d587ca chore(deps): bump the dependencies group across 1 directory with 27 updates (...
  • f91baa8 fix(overlay): add ESC key to dismiss overlay (#5598)
  • 574026c fix: compatibility with event target and universal target and lazy compilation
  • c53955d docs: remove unused files
  • efe0aea test: fix
  • b6bb50c chore(deps): update
  • Additional commits viewable in compare view

@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Apr 2, 2026
@dependabot dependabot bot requested a review from a team as a code owner April 2, 2026 08:47
@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Apr 2, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/webpack-dev-server-5.2.3 branch from e7a15f8 to e56f581 Compare April 2, 2026 11:12
@ankita10119
Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 5.2.1 to 5.2.3.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v5.2.1...v5.2.3)

---
updated-dependencies:
- dependency-name: webpack-dev-server
  dependency-version: 5.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/webpack-dev-server-5.2.3 branch from e56f581 to 907f399 Compare April 2, 2026 11:17
@ankita10119 ankita10119 merged commit e658313 into master Apr 2, 2026
4 of 5 checks passed
@ankita10119 ankita10119 deleted the dependabot/npm_and_yarn/webpack-dev-server-5.2.3 branch April 2, 2026 11:24
ankita10119 added a commit that referenced this pull request Apr 6, 2026
…s to 3.1.0, and fix dev setup (#2771)

### Changes

This PR consolidates three related dependency upgrades and fixes the
local development setup that had been broken since PR #2622 . It
supersedes #2769 (which will be closed).

1. **webpack-dev-server** `v4 `→ `v5` (`package.json`,
`webpack.config.js`)

PR #2622 bumped **webpack-dev-server** from `4.15.2` to `5.2.1`. This
was a breaking change that went unnoticed because CI only runs tests, it
never starts the dev server. Running npm start after that bump resulted
in:

_ValidationError: Invalid options object. Dev Server has been
initialized using
  an options object that does not match the API schema.
  - options has an unknown property 'https'._

**Root cause**: webpack-dev-server v5 removed the https shorthand option
that existed in v4. The replacement is the server object API.

Fix in `webpack.config.js`:

// Before (v4 API — broken in v5)
  `https: getDevCerts() || true`

// After (v5 API)
  ```
server: {
    type: 'https',
    options: getDevCerts() || {}
  }
```

`package.json`: Version constraint updated from ^4.15.2 back to ^5.2.1 (resolves to 5.2.3, also covering PR #2767's bump).

2. Fix 403 Forbidden when loading bundle from Auth0 hosted pages (webpack.config.js)

After fixing the startup crash, a second issue surfaced when testing against a custom hosted login page on manage.auth0.com: the browser reported Auth0Lock is not defined.Inspecting the Network tab showed the bundle request returning 403 Forbidden.

**Root cause**: webpack-dev-server v5 introduced a security middleware (cross-origin-header-check) that blocks any request where both of these are true:
  - `sec-fetch-mode: no-cors` — always set by <script> tags
  - `sec-fetch-site: cross-site` — always set when an external origin (e.g. manage.auth0.com) loads a resource from localhost:3000

The combination of these two headers causes webpack-dev-server to return 403 before the bundle is served.

**Fix**:

 ` allowedHosts: 'all'`

This disables the cross-origin host check. It is safe for a local dev server — it has no effect on production builds and only applies when npm start is running. The original v4 server had no such restriction.

3. **auth0-password-policies** `1.0.2` → `3.1.0` and password-sheriff `1.1.1` → `2.0.0` (`package.json`, `webpack.config.js`)

`auth0-password-policies@1.0.2` was published in November 2018. After 7 years of inactivity, versions 1.1.0 through 3.1.0 were released between August 2025 and February 2026.Dependabot opened PR #2705 targeting 1.1.1 (the first post-gap release), but that PR failed CI and was superseded by two further major versions before it could be merged. This PR
jumps directly to the current latest (3.1.0).

**Why password-sheriff is also bumped**:
`auth0-password-policies@3.x` declares `password-sheriff@^2.0.0` as a peer/dependency. Lock also uses password-sheriff directly in src/field/password.js and `src/ui/input/password/password_strength.jsx `via `password-sheriff/lib/policy`. The `lib/policy.js` API is identical between `v1` and `v2` , the only additions are two new built-in rule types (sequentialChars, maxLength) which Lock does not use. Bumping Lock's direct constraint to ^2.0.0 avoids having two copies of password-sheriff in the install tree.

**Why webpack.config.js needed a new babel-loader rule**:
`auth0-password-policies@3.1.0` ships its source with ES2020 syntax (optional chaining ?.). The project runs es-check es2017 against the built bundle as a CI gate. The existing webpack babel rule has `exclude: node_modules`, so third-party packages are bundled as-is. For most packages this is fine since they ship pre-built ES5, but auth0-password-policies does not.

A dedicated babel-loader rule for `auth0-password-policies` is added before the main rule. There is one non-obvious subtlety: Babel 7's `.babelrc` is file-relative, it only applies to files within the same package root and is silently ignored when Babel processes files in a different package under node_modules. This means Babel would run but apply no transforms, leaving ?. in the output. The fix is to pass presets explicitly in the rule's options alongside configFile: false and `babelrc: false`, so Babel uses exactly those presets regardless of config file boundaries:

```
  {
    test: /\.js$/,
include: path.join(__dirname, 'node_modules',
'auth0-password-policies'),
    loader: 'babel-loader',
    options: {
presets: [['@babel/preset-env', { useBuiltIns: 'entry', corejs: '3.26.1'
}]],
      configFile: false,
      babelrc: false
    }
  }
```
  
4. Fix webpack 5 compilation warning for CordovaAuth0Plugin (`src/core/web_api/p2_api.js`)

After the auth0-js bump in PR #2766 (9.30.1 → 9.32.0), webpack emitted two warnings on every build:

  ```
WARNING in ./src/core/web_api/p2_api.js
  export 'default' (imported as 'CordovaAuth0Plugin') was not found in
  'auth0-js/dist/cordova-auth0-plugin.min.js' (module has no exports)
```

**Root cause**: `cordova-auth0-plugin.min.js` uses a UMD format
(module.exports = factory()). Webpack 5's static analysis cannot resolve
a default export from a module.exports assignment inside a UMD IIFE, so
it warns when the file is imported with ES module import default syntax.

**Fix**: Replace the ES module import with require(), which webpack
handles correctly for CommonJS/UMD modules:

// Before
`import CordovaAuth0Plugin from
'auth0-js/dist/cordova-auth0-plugin.min.js';`

// After
`const CordovaAuth0Plugin =
require('auth0-js/dist/cordova-auth0-plugin.min.js');`

Runtime behaviour is unchanged, the `typeof CordovaAuth0Plugin ===
'function'` guard already in place handles the case where the plugin is
unavailable.

### References

  - Supersedes #2769
  - Supersedes #2705
  - Fixes dev setup broken by #2622
- Related to #2767 (webpack-dev-server 5.2.1 → 5.2.3, covered by ^5.2.1
range)
- Related to #2766 (auth0-js 9.30.1 → 9.32.0, source of the
CordovaAuth0Plugin warning)

### Testing

Tested with local development setup.

* [ ] This change adds unit test coverage
* [ ] This change adds integration test coverage
* [ ] This change has been tested on the latest version of the
platform/language

### Checklist

* [ ] I have read the [Auth0 general contribution
guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
* [ ] I have read the [Auth0 Code of
Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
* [ ] All code quality tools/guidelines have been run/followed
* [ ] All relevant assets have been compiled
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant