Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update webpack packages #1490

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 7, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@compiled/webpack-loader (source) ^0.12.7 -> ^0.17.0 age adoption passing confidence
babel-loader ^9.1.3 -> ^9.2.1 age adoption passing confidence
babel-loader ^9.1.2 -> ^9.2.1 age adoption passing confidence
css-loader ^7.1.1 -> ^7.1.2 age adoption passing confidence
css-loader ^6.7.3 -> ^6.11.0 age adoption passing confidence
css-minimizer-webpack-plugin ^5.0.0 -> ^5.0.1 age adoption passing confidence
html-webpack-plugin ^5.5.0 -> ^5.6.0 age adoption passing confidence
style-loader ^3.3.2 -> ^3.3.4 age adoption passing confidence
webpack ^5.91.0 -> ^5.95.0 age adoption passing confidence
webpack ^5.76.1 -> ^5.95.0 age adoption passing confidence
webpack ^5.94.0 -> ^5.95.0 age adoption passing confidence
webpack-cli (source) ^5.0.1 -> ^5.1.4 age adoption passing confidence
webpack-dev-server ^5.0.4 -> ^5.1.0 age adoption passing confidence
webpack-dev-server ^4.11.1 -> ^4.15.2 age adoption passing confidence

Release Notes

atlassian-labs/compiled (@​compiled/webpack-loader)

v0.17.0

Compare Source

Minor Changes
  • 4fb5c6e: Adds a new option that can be passed to the babel plugin called classHashPrefix. Its value is used to add a prefix to the class names when generating their hashes.

  • 2750e28: Make support for @atlaskit/css as a first-class import consistently default. This means the same functionality of parsing JSX pragmas, linting specific imports, and extracting styles should all work from @compiled/react and @atlaskit/css equally without the importSources: ['@​atlaskit/css'] config we use internally.

    This was already the default in about 1/3rd of the code, but not consistent. Now it's consistent and I've cleaned up duplicated import patterns.

Patch Changes

v0.16.0

Compare Source

Minor Changes
  • 9a15e74: Sort shorthand properties so that they come before longhand properties.

    When using Compiled, one of the following will happen:

    Option 1. If stylesheet extraction is turned off ("runtime mode"): shorthand properties will be sorted before longhand properties, as long as they are not in a pseudo-selector like :hover or :active. This is enabled by default and cannot be turned off.

    Option 2. If stylesheet extraction is turned on and one of the below is true:

    • You are using Webpack
    • You are using Parcel AND you are running in production mode

    ... shorthand properties will only be sorted if sortShorthand: true is passed to CompiledExtractPlugin (Webpack), or sortShorthand: true is passed to your Compiled config file like .compiledcssrc (Parcel). When sorting shorthand properties using this method (option 2), shorthand properties will always be sorted before longhand properties, taking precedence over pseudo-selectors like :hover or :active.

Patch Changes

v0.15.0

Compare Source

Minor Changes
  • 83c721d: Modify the early-exit on our Webpack loader to work with options.importSources to properly transform other Compiled aliases.
Patch Changes

v0.14.1

Compare Source

Patch Changes
  • 8f3149f: When parsing the Webpack config rules option, also handle the situation where a rule might be falsy (null, undefined, 0, "")

v0.14.0

Compare Source

Minor Changes
  • a0f8c89: - Set parserBabelPlugins to default to ['typescript', 'jsx']
    • This is already used across different Atlassian codebases.
    • Add missing 'babelrc: false' for all internal parseAsync calls to Babel. This was already included for transformFromAstAsync calls.
Patch Changes

v0.13.0

Compare Source

Minor Changes
  • 83c47f8: [BREAKING] Add a deterministic sorting to media queries and other at-rules in Compiled. We use a simplified version of what the sort-css-media-queries package does - sorting min-width and min-height from smallest to largest, then max-width and max-height from largest to smallest. If ranges or features involving height and width are not present in the at-rule, the at-rule will be sorted lexicographically / alphabetically.

    Situations you may need to be careful of:

    • In situations where two at-rules with the same property apply at the same time, this may break your styles, as the order in which the styles are applied will change. (For example, overlapping @media queries)
    • Because all at-rules will now be sorted lexicographically / alphabetically, @layer blocks you pass to Compiled APIs may not be outputted in the same order, causing different CSS than expected.

    This is turned on by default. If you do not want your at-rules to be sorted, set sortAtRules to false in your configuration:

    • Webpack users: the @compiled/webpack-loader options in your Webpack configuration
    • Parcel users: your Compiled configuration, e.g. .compiledcssrc or similar
    • Babel users: the @compiled/babel-plugin-strip-runtime options in your .babelrc.json or similar, if you have the @compiled/babel-plugin-strip-runtime plugin enabled.
Patch Changes
babel/babel-loader (babel-loader)

v9.2.1

Compare Source

v9.2.0

Compare Source

webpack-contrib/css-loader (css-loader)

v7.1.2

Compare Source

webpack-contrib/css-minimizer-webpack-plugin (css-minimizer-webpack-plugin)

v5.0.1

Compare Source

jantimon/html-webpack-plugin (html-webpack-plugin)

v5.6.0

Compare Source

Features
  • add @rspack/core as an optional peer dependency (#​1829) (56ff3ae)
  • Added support type=systemjs-module via the scriptLoading option (#​1822) (7effc30)
Bug Fixes
5.5.4 (2023-12-06)
Bug Fixes
5.5.3 (2023-06-10)
Bug Fixes
5.5.2 (2023-06-08)
Bug Fixes
5.5.1 (2023-04-15)
Bug Fixes
  • perf: defer loading of pretty-error to improve startup time (#​1789) (988709d)

v5.5.4

Compare Source

v5.5.3

Compare Source

v5.5.2

Compare Source

v5.5.1

Compare Source

webpack-contrib/style-loader (style-loader)

v3.3.4

Compare Source

3.3.4 (2024-01-09)
Bug Fixes

v3.3.3

Compare Source

webpack/webpack (webpack)

v5.95.0

Compare Source

Bug Fixes

  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility

New Features

  • Add new optimization.avoidEntryIife option (true by default for the production mode)
  • Pass output.hash* options to loader context

Performance

  • Avoid unneeded re-visit in build chunk graph

v5.94.0

Compare Source

v5.93.0

Compare Source

v5.92.1

Compare Source

v5.92.0

Compare Source

Bug Fixes

  • Correct tidle range's comutation for module federation
  • Consider runtime for pure expression dependency update hash
  • Return value in the subtractRuntime function for runtime logic
  • Fixed failed to resolve promise when eager import a dynamic cjs
  • Avoid generation extra code for external modules when remapping is not required
  • The css/global type now handles the exports name
  • Avoid hashing for @keyframe and @property at-rules in css/global type
  • Fixed mangle with destructuring for JSON modules
  • The stats.hasWarnings() method now respects the ignoreWarnings option
  • Fixed ArrayQueue iterator
  • Correct behavior of __webpack_exports_info__.a.b.canMangle
  • Changed to the correct plugin name for the CommonJsChunkFormatPlugin plugin
  • Set the chunkLoading option to the import when environment is unknown and output is module
  • Fixed when runtimeChunk has no exports when module chunkFormat used
  • [CSS] Fixed parsing minimized CSS import
  • [CSS] URLs in CSS files now have correct public path
  • [CSS] The css module type should not allow parser to switch mode
  • [Types] Improved context module types

New Features

  • Added platform target properties to compiler
  • Improved multi compiler cache location and validating it
  • Support import attributes spec (with keyword)
  • Support node: prefix for Node.js core modules in runtime code
  • Support prefetch/preload for module chunk format
  • Support "..." in the importsFields option for resolver
  • Root module is less prone to be wrapped in IIFE
  • Export InitFragment class for plugins
  • Export compileBooleanMatcher util for plugins
  • Export InputFileSystem and OutputFileSystem types
  • [CSS] Support the esModule generator option for CSS modules
  • [CSS] Support CSS when chunk format is module
webpack/webpack-cli (webpack-cli)

v5.1.4

Compare Source

Bug Fixes
  • multi compiler progress output (f659624)

v5.1.3

Compare Source

Bug Fixes

v5.1.2

Compare Source

Bug Fixes
  • improve check for custom webpack and webpack-dev-server package existance (0931ab6)
  • improve help for some flags (f468614)
  • improved support for .cts and .mts extensions (a77daf2)

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features
Performance Improvements

5.0.2 (2023-04-21)

Bug Fixes
  • error message for missing default export in configuration (#​3685) (e0a4a09)
  • perf: reduced startup time (3b79059)

5.0.1 (2022-12-05)

Bug Fixes

v5.0.2

Compare Source

Bug Fixes
  • error message for missing default export in configuration (#​3685) (e0a4a09)
  • perf: reduced startup time (3b79059)
webpack/webpack-dev-server (webpack-dev-server)

v5.1.0

Compare Source

Features
  • add visual progress indicators (a8f40b7)
  • added the app option to be Function (by default only with connect compatibility frameworks) (3096148)
  • allow the server option to be Function (#​5275) (02a1c6d)
  • http2 support for connect and connect compatibility frameworks which support HTTP2 (#​5267) (6509a3f)
Bug Fixes
5.0.4 (2024-03-19)
Bug Fixes
5.0.3 (2024-03-12)
Bug Fixes
5.0.2 (2024-02-16)
Bug Fixes
5.0.1 (2024-02-13)
Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 7, 2023
@changeset-bot
Copy link

changeset-bot bot commented Aug 7, 2023

⚠️ No Changeset found

Latest commit: fbbf031

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 11, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 21, 2023
@renovate renovate bot force-pushed the renovate/webpack-packages branch 3 times, most recently from 7319fb8 to 7c20a28 Compare August 29, 2023 06:23
@renovate renovate bot force-pushed the renovate/webpack-packages branch from 7c20a28 to 2ac473b Compare August 31, 2023 01:30
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 31, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 31, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 5, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 6, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 7, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 30, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 30, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 1, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 11, 2024
@renovate renovate bot enabled auto-merge (squash) October 11, 2024 00:55
@renovate renovate bot force-pushed the renovate/webpack-packages branch 2 times, most recently from 1a730e5 to 762b21a Compare October 11, 2024 04:15
@renovate renovate bot force-pushed the renovate/webpack-packages branch from 762b21a to 079f5f8 Compare October 11, 2024 06:15
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 11, 2024
@renovate renovate bot force-pushed the renovate/webpack-packages branch 2 times, most recently from df69977 to 4966bb0 Compare October 14, 2024 04:45
@renovate renovate bot force-pushed the renovate/webpack-packages branch from 4966bb0 to 4da8e4d Compare October 14, 2024 06:52
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 14, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 15, 2024
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.

0 participants