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

Update all non-major dependencies #27057

Merged
merged 4 commits into from
Feb 23, 2024
Merged

Update all non-major dependencies #27057

merged 4 commits into from
Feb 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/webpack-plugin (source) 2.11.0 -> 2.14.1 age adoption passing confidence
chokidar 3.5.3 -> 3.6.0 age adoption passing confidence
cronstrue 2.47.0 -> 2.48.0 age adoption passing confidence
dotenv 16.4.1 -> 16.4.5 age adoption passing confidence
jsrsasign (source) 11.0.0 -> 11.1.0 age adoption passing confidence
mini-css-extract-plugin 2.7.7 -> 2.8.0 age adoption passing confidence
postcss (source) 8.4.33 -> 8.4.35 age adoption passing confidence
postcss-import 16.0.0 -> 16.0.1 age adoption passing confidence
postcss-preset-env (source) 9.3.0 -> 9.4.0 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence
proxy-agent (source) 6.3.1 -> 6.4.0 age adoption passing confidence
semver 7.5.4 -> 7.6.0 age adoption passing confidence
webpack 5.90.1 -> 5.90.3 age adoption passing confidence

Release Notes

getsentry/sentry-javascript-bundler-plugins (@​sentry/webpack-plugin)

v2.14.1

Compare Source

  • fix(core): Stop .env files from being picked up (#​486)
  • feat(core): Add telemetry for React component annotations (#​482)

v2.14.0

Compare Source

  • ref(component-annotate): Use default export (#​478)

v2.13.0

Compare Source

  • ref(component-annotate): Conform to Babel plugin naming conventions

v2.12.0

Compare Source

  • ref(component-annotate): Prefix plugin name with babel
paulmillr/chokidar (chokidar)

v3.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: paulmillr/chokidar@3.5.3...3.6.0

bradymholt/cronstrue (cronstrue)

v2.48.0

Compare Source

What's Changed

New Contributors

Full Changelog: bradymholt/cRonstrue@v2.47.0...v2.48.0

motdotla/dotenv (dotenv)

v16.4.5

Compare Source

Changed
  • 🐞 fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814

v16.4.4

Compare Source

Changed
  • 🐞 Replaced chaining operator ?. with old school && (fixing node 12 failures) #​812

v16.4.3

Compare Source

Changed
  • Fixed processing of multiple files in options.path #​805

v16.4.2

Compare Source

Changed
kjur/jsrsasign (jsrsasign)

v11.1.0: restore KJUR.crypto.Cipher class without RSA/RSAOAEP support

Compare Source

  • Changes from 11.0.0 to 11.1.0 (2024-Feb-01)
    • src/crypto.js
      • restore KJUR.crypto.Cipher class without RSA and RSAOAEP encryption/decryption support
webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.8.0

Compare Source

Features
2.7.7 (2024-01-10)
Bug Fixes
2.7.6 (2023-05-19)
Bug Fixes
2.7.5 (2023-03-16)
Bug Fixes
2.7.4 (2023-03-16)
Bug Fixes
  • module identifier, don't merge modules with different media/suppors/layer (#​1021) (ad3729b)
2.7.3 (2023-03-07)
Bug Fixes
  • avoid to throw error when link doesn't have parentNode (#​1016) (6292440)
2.7.2 (2022-12-06)
Bug Fixes
2.7.1 (2022-11-29)
Bug Fixes
postcss/postcss (postcss)

v8.4.35

Compare Source

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

v8.4.34

Compare Source

  • Fixed AtRule#nodes type (by Tim Weißenfels).
  • Cleaned up code (by Dmitry Kirillov).
postcss/postcss-import (postcss-import)

v16.0.1

Compare Source

  • Fix crash when handling some @imports with media conditions (#​557, #​558)
csstools/postcss-plugins (postcss-preset-env)

v9.4.0

Compare Source

February 19, 2024

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
TooTallNate/proxy-agents (proxy-agent)

v6.4.0

Compare Source

Minor Changes
  • e7e0e56: Allow getProxyForUrl() option to return a Promise
Patch Changes
npm/node-semver (semver)

v7.6.0

Compare Source

Features
Chores
webpack/webpack (webpack)

v5.90.3

Compare Source

Bug Fixes

  • don't mangle when destructuring a reexport
  • types for Stats.toJson() and Stats.toString()
  • many internal types
  • [CSS] clean up export css local vars

Perf

  • simplify and optimize chunk graph creation

v5.90.2

Compare Source

Bug Fixes

  • use Math.imul in fnv1a32 to avoid loss of precision, directly hash UTF16 values
  • the setStatus() of the HMR module should not return an array, which may cause infinite recursion
  • __webpack_exports_info__.xxx.canMangle shouldn't always same as default
  • mangle export with destructuring
  • use new runtime to reconsider skipped connections activeState
  • make dynamic import optional in try/catch
  • improve auto publicPath detection

Dependencies & Maintenance

  • improve CI setup and include Node.js@21

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added Dependencies Pull requests that update a dependency file T-Task Tasks for the team like planning labels Feb 22, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 20b6424 to 97d326c Compare February 23, 2024 00:44
Signed-off-by: Michael Telatynski <[email protected]>
Signed-off-by: Michael Telatynski <[email protected]>
Signed-off-by: Michael Telatynski <[email protected]>
Copy link
Contributor Author

renovate bot commented Feb 23, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@t3chguy t3chguy marked this pull request as ready for review February 23, 2024 10:58
@t3chguy t3chguy requested review from a team as code owners February 23, 2024 10:58
@t3chguy t3chguy added this pull request to the merge queue Feb 23, 2024
Merged via the queue into develop with commit e35d040 Feb 23, 2024
30 checks passed
@t3chguy t3chguy deleted the renovate/all-minor-patch branch February 23, 2024 11:21
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 T-Task Tasks for the team like planning
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant