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 #80

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
chart.js (source) 4.4.3 -> 4.4.7 age adoption passing confidence
katex (source) 0.16.10 -> 0.16.21 age adoption passing confidence
less (source) 4.2.0 -> 4.2.2 age adoption passing confidence
mini-css-extract-plugin 2.9.0 -> 2.9.2 age adoption passing confidence
plotly.js-strict-dist 2.33.0 -> 2.35.3 age adoption passing confidence
prettier (source) 3.3.2 -> 3.4.2 age adoption passing confidence
terser-webpack-plugin 5.3.10 -> 5.3.11 age adoption passing confidence
webpack 5.92.0 -> 5.97.1 age adoption passing confidence

Release Notes

chartjs/Chart.js (chart.js)

v4.4.7

Compare Source

Essential Links
Types
  • #​11521 fix: correct typing for doughnut, pie, and polarArea charts
  • #​11948 Export TRBL from geometric
Documentation
  • #​11968 Add documentation about setting default tooltip fonts
  • #​11962 Show correct title in multi series pie chart example
Development

Thanks to @​Connormiha, @​DustinEwan, @​LeeLenaleee, @​dependabot and @​dependabot[bot]

v4.4.6

Compare Source

v4.4.5

Compare Source

Essential Links

Bugs Fixed

  • #​11927 Don't apply default colors in the colors plugin when defaults are used
  • #​11907 Avoid error if borderOpts.dash is undefined
  • #​11882 Fix initial dataset stacks

Types

  • #​11931 Allow array's in backgroundColor defaults and add hover background and border color to defaults

Documentation

Development

Thanks to @​HieroglypH, @​LeeLenaleee, @​dependabot, @​dependabot[bot] and @​dregad

v4.4.4

Compare Source

Essential Links

Bugs Fixed

  • #​11873 Check if range method exists on element before executing it
  • #​11863 Return false from the average tooltip positioner on no valid data
  • #​11858 Bugfix/issue 11804 tooltip show for all invisible
  • #​11851 fix: Unset _resizeBeforeDraw before _resize() call to avoid possible recursion
  • #​11844 fix issue #<!---->11717
  • #​11788 Fix drawing angle lines on reversed radial scale

Types

  • #​11867 fix(types): exclude DeepPartial<unknown[]> from ChartOptions interface
  • #​11862 fix(types): add xCenter and yCenter properties to RadialLinearScale interface
  • #​11817 Remove box padding from legend types
  • #​11796 Add fit method to LegendElement interface
  • #​11780 types: Allow passing undefined for chart options

Documentation

  • #​11871 Add radial linear scale to docs section of samples
  • #​11823 Update OffscreenCanvas documentation, as it is widely available now
  • #​11781 Fix some typos

Development

Thanks to @​CatchABus, @​LeeLenaleee, @​MichelHMachado, @​artus9033, @​huqingkun, @​jdufresne and @​joliss

KaTeX/KaTeX (katex)

v0.16.21

Compare Source

Bug Fixes
  • escape \htmlData attribute name (57914ad)

v0.16.20

Compare Source

Bug Fixes

v0.16.19

Compare Source

Bug Fixes

v0.16.18

Compare Source

Bug Fixes

v0.16.17

Compare Source

Bug Fixes
  • MathML combines multidigit numbers with sup/subscript, comma separators, and multicharacter text when outputting to DOM (#​3999) (7d79e22), closes #​3995

v0.16.16

Compare Source

Features

v0.16.15

Compare Source

Features
  • italic sans-serif in math mode via \mathsfit command (#​3998) (2218901)

v0.16.14

Compare Source

Features

v0.16.13

Compare Source

Bug Fixes

v0.16.12

Compare Source

Features

v0.16.11

Compare Source

Features
less/less.js (less)

v4.2.2

Compare Source

v4.2.1

Compare Source

webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.9.2

Compare Source

v2.9.1

Compare Source

plotly/plotly.js (plotly.js-strict-dist)

v2.35.3

Compare Source

Fixed
  • Set height and width on the .plotly-container div to 100% to fix gl3d rendering in Dash Enterprise apps [#​7313]

v2.35.2

Compare Source

Fixed
  • Fix require path to maplibre-gl.css (regression introduced in 2.35.1) [#​7146],
    with thanks to @​birkskyum for the contribution!

v2.35.1

Compare Source

Fixed
  • Fix rendering traces with zorder on overlayed subplots case of multiple traces in each subplot [#​7141]
  • Fix missing CSS for map(maplibre) subplots when used offline [#​7140],
    with thanks to @​birkskyum for the contribution!

v2.35.0

Compare Source

Added
Changed
  • Deprecate mapbox traces and mapbox subplot [#​7087]
  • Drop obsolete npm v6 installation [#​7095]
  • Use Node.js v18 and npm v10 in development [#​7078]
  • Update npm lockfile to v3 [#​7099]
  • Update turf to v7 [#​7116]
Fixed

v2.34.0

Compare Source

Added
  • Add subtitle attribute to layout.title to enable adding subtitles to plots [#​7012]
  • Introduce "u" and "s" pseudo html tags to add partial underline and strike-through styles to SVG text elements [#​7043]
  • Add geometric mean functionality and 'geometric mean ascending' + 'geometric mean descending' to category_order on cartesian axes [#​6223],
    with thanks to @​acxz and @​prabhathc for the contribution!
  • Add axis property ticklabelindex for drawing the label for each minor tick n positions away from a major tick,
    with thanks to @​my-tien for the contribution! [#​7036]
  • Add property ticklabelstandoff and ticklabelshift to cartesian axes to adjust positioning of tick labels,
    with thanks to @​my-tien for the contribution! [#​7006]
  • Add x0shift, x1shift, y0shift, y1shift to shapes to add control over positioning of shape vertices on (multi-)category axes,
    with thanks to @​my-tien for the contribution! [#​7005]
Fixed
  • Fix displaying scattergl traces while zooming or panning (regression introduced in 2.26.0) [#​7018],
    with thanks to @​eiriklv for the contribution!
  • Fix for excessive hoverlabel removal and overlap for plots with both scatter and bar traces [#​6954],
    with thanks to @​mbant for the contribution!
  • Fix adding cartesian "togglehover" when included in modebar.add [#​5879],
    with thanks to @​Sizurka for the contribution!
  • Handle zorder between overlaying cartesian subplots [#​7032],
    This feature was anonymously sponsored: thank you to our sponsor!
prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

webpack-contrib/terser-webpack-plugin (terser-webpack-plugin)

v5.3.11

Compare Source

webpack/webpack (webpack)

v5.97.1

Compare Source

Bug Fixes
  • Performance regression
  • Sub define key should't be renamed when it's a defined variable

v5.97.0

Compare Source

v5.96.1

Compare Source

v5.96.0

Compare Source

Bug Fixes

  • Fixed Module Federation should track all referenced chunks
  • Handle Data URI without base64 word
  • HotUpdateChunk have correct runtime when modified with new runtime
  • Order of chunks ids in generated chunk code
  • No extra Javascript chunks when using asset module as an entrypoint
  • Use optimistically logic for output.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables for optimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings in output.devtoolNamespace
  • No extra runtime for get javascript/css chunk filename
  • No extra runtime for prefetch and preload in JS runtime when it was unsed in CSS
  • Avoid cache invalidation using ProgressPlugin
  • Increase parallelism when using importModule on the execution stage
  • Correctly parsing string in export and import
  • Typescript types
  • [CSS] css/auto considers a module depending on its filename as css (pure CSS) or css/local, before it was css/global and css/local
  • [CSS] Always interpolate classes even if they are not involved in export
  • [CSS] No extra runtime in Javascript runtime chunks for asset modules used in CSS
  • [CSS] No extra runtime in Javascript runtime chunks for external asset modules used in CSS
  • [CSS] No extra runtime for the node target
  • [CSS] Fixed url()s and @import parsing
  • [CSS] Fixed - emit a warning on broken :local and :global

New Features

  • Export CSS and ESM runtime modules
  • Single Runtime Chunk and Federation eager module hoisting
  • [CSS] Support /* webpackIgnore: true */ for CSS files
  • [CSS] Support src() support
  • [CSS] CSS nesting in CSS modules

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


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (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.

👻 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 renovate bot force-pushed the renovate/all-minor-patch branch from 619ddb0 to cde5171 Compare July 2, 2024 16:45
@renovate renovate bot changed the title Update dependency webpack to v5.92.1 Update all non-major dependencies Jul 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e889427 to c9b50d2 Compare July 18, 2024 16:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9c79c29 to 55584e6 Compare August 22, 2024 13:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 55584e6 to b1ceb93 Compare August 29, 2024 16:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1346d2a to 256e6df Compare September 10, 2024 21:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 256e6df to b1a71f7 Compare September 25, 2024 17:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b1a71f7 to 74e22a6 Compare October 15, 2024 21:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 75f621e to 193f6b1 Compare November 1, 2024 12:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 721c3a8 to ed6b751 Compare December 1, 2024 19:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a948371 to 19c7999 Compare December 9, 2024 19:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from eea5929 to 54077fe Compare December 17, 2024 16:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 54077fe to df7d0f8 Compare December 18, 2024 20:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df7d0f8 to 91d27be Compare December 29, 2024 17:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8aa3f6d to 2b7b88c Compare January 19, 2025 09:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b7b88c to a0aa890 Compare January 19, 2025 21:22
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