Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 19, 2021

This PR contains the following updates:

Package Change Age Confidence
serverless-webpack 5.3.5 -> 5.15.3 age confidence

Release Notes

serverless-heaven/serverless-webpack (serverless-webpack)

v5.15.3: 5.15.3

Compare Source

Mostly bump deps and drop Node < 18

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.15.2...v5.15.3

v5.15.2: 5.15.2

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.15.1...v5.15.2

v5.15.1: 5.15.1

Compare Source

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.15.0...v5.15.1

v5.15.0: 5.15.0

Compare Source

Main change

We've added support for Serverless v4 🎉

If you want to use Serverless v4 you must disable the default builtin ESBuild support in your serverless.yml (because it conflicts with serverless-webpack):

build:
  esbuild: false

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.14.2...v5.15.0

v5.14.2: 5.14.2

Compare Source

What's Changed

Meta stuff (examples, deps, etc.)

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.14.1...v5.14.2

v5.14.1: 5.14.1

Compare Source

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.14.0...v5.14.1

v5.14.0: 5.14.0

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.13.0...v5.14.0

v5.13.0: 5.13.0

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.12.0...v5.13.0

v5.12.0: 5.12.0

Compare Source

Main Changes

This adds a new config parameter for both NPM & Yarn: copyPackageSectionNames which list entries in your package.json to copy to the output package.json (for ESM output).

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.11.0...v5.12.0

v5.11.0: 5.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.10.0...v5.11.0

v5.10.0: 5.10.0

Compare Source

Main Changes

The lib is finally compatible with Yarn 2 (and above)! Thanks to @​jagonzalr (and others involved in #​642).
You need to define the option noNonInteractive to true in the packagerOptions in serverless.yml.

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.9.1...v5.10.0

v5.9.1: 5.9.1

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.9.0...v5.9.1

v5.9.0: 5.9.0

Compare Source

Main Changes

  1. Webpack entries can now be overridden via function option entrypoint in serverless.yml
  2. Fix a warning of undefined plugin CLI option --webpack-use-polling

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.8.0...v5.9.0

v5.8.0: 5.8.0

Compare Source

Main changes

  1. We have added a new CLI option --skip-build which has the same behavior of the previous removed CLI option --no-build. That option allows to run a function with an existing compiled output. (see #​1190)

  2. We have also properly defined CLI options to remove all errors like Detected unrecognized CLI options when using Serverless > v1 (see #​1187)

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.7.1...v5.8.0

v5.7.1: 5.7.1

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.7.0...v5.7.1

v5.7.0: 5.7.0

Compare Source

Main changes

  1. @​medikoo changed the output log when using Serverless v3, it's less verbose and more clean

    progress: Screenshot 2021-10-13 at 17 50 37

    success: Screenshot 2021-10-13 at 17 50 08

  2. We switch back to archiver instead of bestzip to ensure consistent artifact. The switch to bestzip was mostly for faster zip because it tend to use the native zip command instead of the one from Node.

  3. Support for NPM 8 was added by @​moroine

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.6.1...v5.7.0

v5.6.1: 5.6.1

Compare Source

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.6.0...v5.6.1

v5.6.0: 5.6.0

Compare Source

Detailed changes

  1. There is now a noInstall options in packagerOptions (for both NPM & Yarn) to skip deps installation during the Serverless package / deployment. If you enable that option, be sure packages are installed before.

    custom:
      webpack:
        packagerOptions:
          noInstall: true
  2. The --no-build CLI argument has been removed.
    You should now define it inside your Serverless configuration:

    custom:
      webpack:
        noBuild: true
  3. The --watch CLI argument has been improved and now works properly.

What's Changed

Full Changelog: serverless-heaven/serverless-webpack@v5.5.5...v5.6.0

v5.5.5: 5.5.5

Compare Source

What's Changed

New Contributors

Full Changelog: serverless-heaven/serverless-webpack@v5.5.4...v5.5.5

v5.5.4: 5.5.4

Compare Source

This release include one fix (#​953) when using serverless-webpack with webpack >= 5.52.0

v5.5.3: 5.5.3

Compare Source

This release include one fix (#​944 thanks @​mostthingsweb) when using sls deploy function --function=function-name for a function defined without an explicit runtime (that bug were introduced in 5.5.2).

v5.5.2: 5.5.2

Compare Source

Here is a small release with few fixes.

v5.5.1: 5.5.1

Compare Source

Here is a small release with few fixes with one important improvement in memory usage when packaging function individually.

Thanks to contributors! 🤝

v5.5.0: 5.5.0

Compare Source

New features were added in that release 🎉

Again, thanks to contributors! 🤝

We added the ability to specify the node_modules relative dir

In #​689, thanks to @​ypxing

This'll help people using monorepo. You define this option like that:

### serverless.yml
custom:
  webpack:
    includeModules:
      nodeModulesRelativeDir: '../../' # relative path to current working directory.
Fix the spawn E2BIG error when zipping

In #​813, thanks to @​j0k3r

While fixing a bug when using the excludeRegex option a new one appear when we give a huge files list to the zip command. It crashed with the E2BIG error.
Now, if you define the excludeRegex option, we'll never use the zip command but the NodeJS way to create the zip to avoid that error. It'll be slower but it'll work.

Extends the --no-build option to serverless offline start

In #​770, #​649 & #​501, thanks to @​nponeccop, @​francisu & @​todda00

Extends the --no-build option to serverless offline start and serverless offline, allowing the ability to use previously compiled files from either a previous serverless offline start (when keeping output files) or from a direct serverless webpack

Add Serverless Container Support

In #​723, thanks to @​rogersgt

It adds support for Docker Images as Custom Runtimes. Check the doc about that: https://github.com/serverless-heaven/serverless-webpack#support-for-docker-images-as-custom-runtimes

Add support for Yarn network-concurrency option

In #​550, thanks @​cfroese

It adds the ability to specify the network-concurrency option when using Yarn as the packager.

### serverless.yml
custom:
  webpack:
    packager: 'yarn'
    packagerOptions:
      networkConcurrency: 1

Full changelog

  • Add ability to specify the node_modules relative dir #​689
  • Fix the spawn E2BIG error when zipping #​813
  • Extends the --no-build option to serverless offline start #​770
  • Add Serverless Container Support #​723
  • Add support for Yarn network-concurrency option #​550

v5.4.2: 5.4.2

Compare Source

Finally, some annoying bugs introduced in 5.4.0 are now fixed. Thanks to contributors! 🤝

The next release will be the 5.5.0 with some additional features ✨

v5.4.1: 5.4.1

Compare Source

Here is a small release with few fixes. Thanks to contributors! 🤝
There are still some bugs reported since 5.4.0 was released that we need to work on.

v5.4.0: 5.4.0

Compare Source

After a long silence, here the latest release ✌️
We have new options, new arguments and some optimizations 🚀

📚 The full changelog is available here. But here are some highlights:

New options:
  • noFrozenLockfile (boolean) under the packagerOptions for the Yarn packager allows you to not have an up to date yarn.lock. See #​687
  • excludeRegex (string) allows you to filter files that match the regex before adding to the zip. See #​612
  • serializedCompile (boolean) allows you to run each webpack buid one at a time to reduce memory usage. See #​517
  • allowCustomRuntime (boolean) added to the function level in your serverless.yml allows you force the packaging when you are using a nodejs custom runtime ONLY. See #​675
  • concurrency (integer) allow to set the concurrency (defaults to the number of available cores), only works when packing functions individually. See #​681
New arguments:
  • the --no-build used when deploying won't re-build everything if you already build it (using sls webpack for example). See #​560
Optimizations:
  • switched to bestzip instead of archiver to use natine zip command if it exists. See #​596
  • speed up cleanup process when removing .webpack folder. See #​462

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from b2fa3f0 to 0069cff Compare April 28, 2021 08:29
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.4.1 Update dependency serverless-webpack to v5.4.2 Apr 28, 2021
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 0069cff to 8a88346 Compare May 10, 2021 19:59
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.4.2 Update dependency serverless-webpack to v5.5.0 May 10, 2021
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 8a88346 to 5c08d10 Compare June 10, 2021 09:11
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.5.0 Update dependency serverless-webpack to v5.5.1 Jun 10, 2021
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 5c08d10 to abe8eee Compare October 18, 2021 16:20
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.5.1 Update dependency serverless-webpack to v5.5.5 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from abe8eee to 03b1815 Compare March 7, 2022 13:55
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.5.5 Update dependency serverless-webpack to v5.6.1 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 03b1815 to a90e82d Compare April 24, 2022 21:16
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.6.1 Update dependency serverless-webpack to v5.7.0 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from a90e82d to b46e2df Compare May 16, 2022 00:44
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.7.0 Update dependency serverless-webpack to v5.7.1 May 16, 2022
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from b46e2df to ceb2999 Compare September 25, 2022 18:41
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.7.1 Update dependency serverless-webpack to v5.9.1 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from ceb2999 to 85ae02a Compare November 20, 2022 13:41
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.9.1 Update dependency serverless-webpack to v5.10.0 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 85ae02a to 0e797a2 Compare March 19, 2023 02:02
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.10.0 Update dependency serverless-webpack to v5.11.0 Mar 25, 2023
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.11.0 Update dependency serverless-webpack to v5.12.0 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch 2 times, most recently from edeeb09 to 3d9ad5e Compare July 28, 2023 10:02
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.12.0 Update dependency serverless-webpack to v5.13.0 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 3d9ad5e to f8d02b4 Compare May 17, 2024 20:14
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.13.0 Update dependency serverless-webpack to v5.14.0 May 17, 2024
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from f8d02b4 to f7b2299 Compare June 18, 2024 11:41
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.14.0 Update dependency serverless-webpack to v5.14.1 Jun 18, 2024
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from f7b2299 to f08b7bb Compare September 6, 2024 14:27
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.14.1 Update dependency serverless-webpack to v5.14.2 Sep 6, 2024
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from f08b7bb to 7fc5183 Compare October 23, 2024 11:31
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.14.2 Update dependency serverless-webpack to v5.15.0 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 7fc5183 to 27dc052 Compare March 12, 2025 06:32
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.15.0 Update dependency serverless-webpack to v5.15.1 Mar 12, 2025
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 27dc052 to 5d505d6 Compare July 9, 2025 07:45
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.15.1 Update dependency serverless-webpack to v5.15.2 Jul 9, 2025
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 5d505d6 to 9d64d14 Compare August 10, 2025 14:16
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 9d64d14 to 5f174ba Compare August 19, 2025 15:36
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 5f174ba to ea75e34 Compare September 6, 2025 18:46
@renovate renovate bot changed the title Update dependency serverless-webpack to v5.15.2 Update dependency serverless-webpack to v5.15.3 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from ea75e34 to 96b90f2 Compare September 25, 2025 18:52
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 96b90f2 to 71f1bc8 Compare October 21, 2025 23:44
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from 71f1bc8 to e4f0bbf Compare November 10, 2025 20:44
@renovate renovate bot force-pushed the renovate/serverless-webpack-5.x branch from e4f0bbf to 963fee7 Compare November 18, 2025 14:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant