dev: bump the safe group across 1 directory with 15 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(10 months ago)
(10 months ago)
dependencies javascript
Bumps the safe group with 15 updates in the / directory:
| Package | From | To |
|---|---|---|
| @tabler/icons-react | 3.34.1 |
3.35.0 |
| @reduxjs/toolkit | 2.8.2 |
2.9.0 |
| @sentry/react | 10.8.0 |
10.13.0 |
| apexcharts | 5.3.4 |
5.3.5 |
| query-string | 9.2.2 |
9.3.1 |
| yup | 1.7.0 |
1.7.1 |
| @babel/core | 7.28.3 |
7.28.4 |
| @babel/eslint-parser | 7.28.0 |
7.28.4 |
| @babel/runtime-corejs2 | 7.28.3 |
7.28.4 |
| @inquirer/prompts | 7.8.4 |
7.8.6 |
| @storybook/cli | 9.1.3 |
9.1.7 |
| @testing-library/cypress | 10.0.3 |
10.1.0 |
| jest | 30.1.2 |
30.1.3 |
| mjml | 4.15.3 |
4.16.1 |
| stylelint | 16.23.1 |
16.24.0 |
Updates @tabler/icons-react from 3.34.1 to 3.35.0
Release notes
Sourced from @tabler/icons-react's releases.
Release 3.55.0
18 new icons:
filled/device-gamepadfilled/file-dollarfilled/file-eurofilled/file-musicfilled/file-pencilfilled/file-scissorsfilled/file-settingsfilled/file-signalfilled/file-timefilled/file-unknownfilled/file-uploadfilled/file-vectorfilled/filesfilled/registeredfilled/video-minusfilled/video-plusfilled/writing-signfilled/writing
Commits
147130cRelease 3.35.0- See full diff in compare view
Updates @reduxjs/toolkit from 2.8.2 to 2.9.0
Release notes
Sourced from @reduxjs/toolkit's releases.
v2.9.0
This feature release rewrites RTK Query's internal subscription and polling systems and the
useStableQueryArgshook for better perf, adds automaticAbortSignalhandling to requests still in progress when a cache entry is removed, fixes a bug with thetransformResponseoption for queries, adds a newbuilder.addAsyncThunkmethod, and fixes assorted other issues.Changelog
RTK Query Performance Improvements
We had reports that RTK Query could get very slow when there were thousands of subscriptions to the same cache entry. After investigation, we found that the internal polling logic was attempting to recalculate the minimum polling time after every new subscription was added. This was highly inefficient, as most subscriptions don't change polling settings, and it required repeated O(n) iteration over the growing list of subscriptions. We've rewritten that logic to debounce the update check and ensure a max of one polling value update per tick for the entire API instance.
Related, while working on the request abort changes, testing showed that use of plain
Records to hold subscription data was inefficient because we have to iterate keys to check size. We've rewritten the subscription handling internals to useMaps instead, as well as restructuring some additional checks around in-flight requests.These two improvements drastically improved runtime perf for the thousands-of-subscriptions-one-cache-entry repro, eliminating RTK methods as visible hotspots in the perf profiles. It likely also improves perf for general usage as well.
We've also changed the implementation of our internal
useStableQueryArgshook to avoid callingserializeQueryArgson its value, which can avoid potential perf issues when a query takes a very large object as its cache key.[!NOTE] The internal logic switched from serializing the query arg to doing reference checks on nested values. This means that if you are passing a non-POJO value in a query arg, such as
useSomeQuery({a: new Set()}), and you haverefetchOnMountOrArgChangeenabled, this will now trigger refeteches each time as theSetreferences are now considered different based on equality instead of serialization.Abort Signal Handling on Cleanup
We've had numerous requests over time for various forms of "abort in-progress requests when the data is no longer needed / params change / component unmounts / some expensive request is taking too long". This is a complex topic with multiple potential use cases, and our standard answer has been that we don't want to abort those requests - after all, cache entries default to staying in memory for 1 minute after the last subscription is removed, so RTKQ's cache can still be updated when the request completes. That also means that it doesn't make sense to abort a request "on unmount".
However, it does then make sense to abort an in-progress request if the cache entry itself is removed. Given that, we've updated our cache handling to automatically call the existing
resPromise.abort()method in that case, triggering theAbortSignalattached to thebaseQuery. The handling at that point depends on your app -fetchBaseQueryshould handle that, a custombaseQueryorqueryFnwould need to listen to theAbortSignal.We do have an open issue asking for further discussions of potential abort / cancelation use cases and would appreciate further feedback.
New Options
The builder callback used in
createReducerandcreateSlice.extraReducersnow hasbuilder.addAsyncThunkavailable, which allows handling specific actions from a thunk in the same way that you could define a thunk insidecreateSlice.reducers:const slice = createSlice({ name: 'counter', initialState: { loading: false, errored: false, value: 0, }, reducers: {}, extraReducers: (builder) => builder.addAsyncThunk(asyncThunk, { pending(state) { state.loading = true }, fulfilled(state, action) { state.value = action.payload }, rejected(state) { state.errored = true }, </tr></table>
... (truncated)
Commits
98c54c6Release 2.9.00a86abdexport some useful async thunk typesd02c27aadd docs for addAsyncThunk (#5066)ab346b9fixdoc: incorrect position of keepUnusedDataFor for two scenarios (#5062)d2bbb8dRewrite subscription handling and polling calculations for better perf (#5064)3c6de47Merge pull request #5065 from reduxjs/feature/TS5.9-matrixc37b977Add missing error value38537c3Don't run Node10 checks for TS 6+821be20Add TS 5.9 to the matrix407688dAbort pending requests if the cache entry is removed (#5061)- Additional commits viewable in compare view
Updates @sentry/react from 10.8.0 to 10.13.0
Release notes
Sourced from @sentry/react's releases.
10.13.0
Important Changes
feat(browser): Add option to explicitly end pageload span via
reportPageLoaded()(#17697)With this release you can take manual control of ending the pageload span. Usually this span is ended automatically by the SDK, based on a period of inactivity after the initial page was loaded in the browser. If you want full control over the pageload duration, you can tell Sentry, when your page was fully loaded:
Sentry.init({ //... integrations: [ // 1. Enable manual pageload reporting Sentry.browserTracingIntegration({ enableReportPageLoaded: true }), ], });// 2. Whenever you decide the page is loaded, call:
Sentry.reportPageLoaded();
Note that if
Sentry.reportPageLoaded()is not called within 30 seconds of the initial pageload (or whatever value thefinalTimeoutoption is set to), the pageload span will be ended automatically.feat(core,node): Add instrumentation for
GoogleGenerativeAI(#17625)The SDK now automatically instruments the
@google/generative-aipackage to provide insights into your AI operations.feat(nextjs): Promote
useRunAfterProductionCompileHookto non-experimental build option (#17721)The
useRunAfterProductionCompileHookoption is no longer experimental and is now a stable build option for Next.js projects.feat(nextjs): Use
afterProductionCompilehook for webpack builds (#17655)Next.js projects using webpack can opt-in to use the
useRunAfterProductionCompileHookhook for source map uploads.feat(nextjs): Flip default value for
useRunAfterProductionCompileHookfor Turbopack builds (#17722)The
useRunAfterProductionCompileHookoption is now enabled by default for Turbopack builds, enabling automated source map uploads.feat(node): Do not drop 300 and 304 status codes by default (#17686)
HTTP transactions with 300 and 304 status codes are now captured by default, providing better visibility into redirect and caching behavior.
Other Changes
- feat(core): Add logger to core and allow scope to be passed log methods (#17698)
- feat(core): Allow to pass
onSuccesstohandleCallbackErrors(#17679)- feat(core): Create template attributes in
consoleLoggingIntegration(#17703)- feat(deps): bump
@sentry/clifrom 2.52.0 to 2.53.0 (#17652)- feat(node): Add extra platforms to
oscontext (#17720)- fix(browser): Ensure idle span duration is adjusted when child spans are ignored (#17700)
... (truncated)
Changelog
Sourced from @sentry/react's changelog.
10.13.0
Important Changes
feat(browser): Add option to explicitly end pageload span via
reportPageLoaded()(#17697)With this release you can take manual control of ending the pageload span. Usually this span is ended automatically by the SDK, based on a period of inactivity after the initial page was loaded in the browser. If you want full control over the pageload duration, you can tell Sentry, when your page was fully loaded:
Sentry.init({ //... integrations: [ // 1. Enable manual pageload reporting Sentry.browserTracingIntegration({ enableReportPageLoaded: true }), ], });// 2. Whenever you decide the page is loaded, call:
Sentry.reportPageLoaded();
Note that if
Sentry.reportPageLoaded()is not called within 30 seconds of the initial pageload (or whatever value thefinalTimeoutoption is set to), the pageload span will be ended automatically.feat(core,node): Add instrumentation for
GoogleGenerativeAI(#17625)The SDK now automatically instruments the
@google/generative-aipackage to provide insights into your AI operations.feat(nextjs): Promote
useRunAfterProductionCompileHookto non-experimental build option (#17721)The
useRunAfterProductionCompileHookoption is no longer experimental and is now a stable build option for Next.js projects.feat(nextjs): Use
afterProductionCompilehook for webpack builds (#17655)Next.js projects using webpack can opt-in to use the
useRunAfterProductionCompileHookhook for source map uploads.feat(nextjs): Flip default value for
useRunAfterProductionCompileHookfor Turbopack builds (#17722)The
useRunAfterProductionCompileHookoption is now enabled by default for Turbopack builds, enabling automated source map uploads.feat(node): Do not drop 300 and 304 status codes by default (#17686)
HTTP transactions with 300 and 304 status codes are now captured by default, providing better visibility into redirect and caching behavior.
Other Changes
- feat(core): Add logger to core and allow scope to be passed log methods (#17698)
- feat(core): Allow to pass
onSuccesstohandleCallbackErrors(#17679)- feat(core): Create template attributes in
consoleLoggingIntegration(#17703)- feat(deps): bump
@sentry/clifrom 2.52.0 to 2.53.0 (#17652)- feat(node): Add extra platforms to
oscontext (#17720)
... (truncated)
Commits
d18a95erelease: 10.13.0a2e84ffMerge pull request #17727 from getsentry/prepare-release/10.13.085e8678meta(changelog): Update changelog for 10.13.061b3f97feat(nextjs): Flip default value foruseRunAfterProductionCompileHookturbo...cf7913cfeat(nextjs): PromoteuseRunAfterProductionCompileHookto non-experimental ...9e24a70chore: Add external contributor to CHANGELOG.md (#17725)592ed90chore: Add link to build and test icon in readme (#17719)51c16a4feat(node): Add extra platforms tooscontext (#17720)ee4ed05chore(repo): Add changelog entry forreportPageLoaded(#17724)0e0c711feat(core): Create template attributes inconsoleLoggingIntegration(#17703)- Additional commits viewable in compare view
Updates apexcharts from 5.3.4 to 5.3.5
Commits
- See full diff in compare view
Updates query-string from 9.2.2 to 9.3.1
Release notes
Sourced from query-string's releases.
v9.3.1
- Fix custom type functions with array formats 720f2ff
https://github.com/sindresorhus/query-string/compare/v9.3.0...v9.3.1
v9.3.0
- Add
replaceroption tostringify()509014d- Fix encoded separator incorrectly splitting single values into arrays ec67fea
https://github.com/sindresorhus/query-string/compare/v9.2.2...v9.3.0
Commits
6c6f6609.3.1720f2ffFix custom type functions with array formatsb46abfc9.3.0509014dAddreplaceroption tostringify()ab603a8Document supported value types forstringify()ec67feaFix encoded separator incorrectly splitting single values into arrays2e1f45aAdd comprehensive test coverage forqueryString.exclude()- See full diff in compare view
Updates yup from 1.7.0 to 1.7.1
Commits
- See full diff in compare view
Updates @babel/core from 7.28.3 to 7.28.4
Release notes
Sourced from @babel/core's releases.
v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)Committers: 5
- Babel Bot (
@babel-bot)- Bill Collins (
@mrginglymus)- Glenn Willen (
@gwillen)- Huáng Jùnliàng (
@JLHwung)@liuxingbaoyu
Changelog
Sourced from @babel/core's changelog.
v7.28.4 (2025-09-05)
:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)
Commits
Updates @babel/eslint-parser from 7.28.0 to 7.28.4
Release notes
Sourced from @babel/eslint-parser's releases.
v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)Committers: 5
- Babel Bot (
@babel-bot)- Bill Collins (
@mrginglymus)- Glenn Willen (
@gwillen)- Huáng Jùnliàng (
@JLHwung)@liuxingbaoyuv7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin,babel-plugin-proposal-decorators,babel-plugin-transform-class-static-block,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo):bug: Bug Fix
babel-parser:nail_care: Polish
babel-plugin-transform-regenerator,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressionsCommitters: 5
- Babel Bot (
@babel-bot)- Huáng Jùnliàng (
@JLHwung)- Jam Balaya (
@JamBalaya56562)- Nicolò Ribaudo (
@nicolo-ribaudo)- easrng (
@easrng)
... (truncated)
Changelog
Sourced from @babel/eslint-parser's changelog.
v7.28.4 (2025-09-05)
:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin,babel-plugin-proposal-decorators,babel-plugin-transform-class-static-block,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo):bug: Bug Fix
babel-parser:nail_care: Polish
babel-plugin-transform-regenerator,babel-plugin-transform-runtime
- #17363 Do not save last yield in call in temp var (
@nicolo-ribaudo):memo: Documentation
:house: Internal
:microscope: Output optimization
babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressionsv7.28.2 (2025-07-24)
:bug: Bug Fix
babel-types
- #17445 [babel 7] Make
operatorparam int.tsTypeOperatoroptional (@nicolo-ribaudo)babel-helpers,babel-plugin-transform-async-generator-functions,babel-plugin-transform-regenerator,babel-preset-env,babel-runtime-corejs3
- #17441 fix:
regeneratorDefinecompatibility with es5 strict mode (@liuxingbaoyu)v7.28.1 (2025-07-12)
:bug: Bug Fix
babel-plugin-transform-async-generator-functions,babel-plugin-transform-regenerator
- #17426 fix:
regeneratorcorrectly handlesthrowoutside oftry(@liuxingbaoyu):memo: Documentation
... (truncated)
Commits
Updates @babel/runtime-corejs2 from 7.28.3 to 7.28.4
Release notes
Sourced from @babel/runtime-corejs2's releases.
v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)Committers: 5
- Babel Bot (
@babel-bot)- Bill Collins (
@mrginglymus)- Glenn Willen (
@gwillen)- Huáng Jùnliàng (
@JLHwung)@liuxingbaoyu
Changelog
Sourced from @babel/runtime-corejs2's changelog.
v7.28.4 (2025-09-05)
:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)
Commits
35055e3v7.28.4- See full diff in compare view
Updates @inquirer/prompts from 7.8.4 to 7.8.6
Release notes
Sourced from @inquirer/prompts's releases.
@inquirer/prompts@7.8.6
- Reduce number of transitive dependencies
@inquirer/prompts@7.8.5
- Fix #1834: (rawlist) Allows specifying numbers as explicit keys of option within the list.
Commits
8300fe3Publishb85cbe2chore: Speed up linting CI stage8fc86fefeat: Introduce@inquirer/core/ansi exportdcca892chore(@inquirer/testing): Remove unnecessary ansi code filtering logicdaef4f5chore: Bump yarn + yarn dedupe62045dcPublish7e75de6Publishb8361c5fix(@inquirer/rawlist): Properly handle specified numeric keys (previously wo...e3aed9cChore(deps): Bump actions/setup-node from 4 to 5 (#1832)93c7750Chore(deps-dev): Bump the linting group with 6 updates (#1831)- Additional commits viewable in compare view
Updates @storybook/cli from 9.1.3 to 9.1.7
Release notes
Sourced from @storybook/cli's releases.
v9.1.7
9.1.7
- Dependencies: Update
vite-plugin-storybook-nextjsto 2.0.7 - #32331, thanks@k35o!- React: Preserve
@ts-expect-errorin preview - #32442, thanks@mrginglymus!- Telemetry: Queue error reporting & filter browser-extention - #32499, thanks
@ndelangen!v9.1.6
9.1.6
- CLI: Capture the version specifier used in
create-storybook- #32344, thanks@shilman!- Instrumenter: Fix userEvent.type performance regression - #32439, thanks
@ndelangen!- React Native Web: Fix RNW peer dependency version - #32438, thanks
@dannyhw!- Telemetry: Record known CLI integrations - #32448, thanks
@shilman!v9.1.5
9.1.5
- CSF: Support
satisfies x as ysyntax - #32169, thanks@diagramatics!- Vitest addon: Handle Playwright installation errors gracefully - #32329, thanks
@ndelangen!v9.1.4
9.1.4
- Angular: Properly merge builder options and browserTarget options - #32272, thanks
@kroeder!- Core: Optimize bundlesize, by reusing internal/babel in mocking-utils - #32350, thanks
@ndelangen!- Svelte & Vue: Add framework-specific
docgenoption to disable docgen processing - #32319, thanks@copilot-swe-agent!- Svelte: Support
@sveltejs/vite-plugin-sveltev6 - #32320, thanks@JReinhold!
Changelog
Sourced from @storybook/cli's changelog.
9.1.7
- Dependencies: Update
vite-plugin-storybook-nextjsto 2.0.7 - #32331, thanks@k35o!- React: Preserve
@ts-expect-errorin preview - #32442, thanks@mrginglymus!- Telemetry: Queue error reporting & filter browser-extention - #32499, thanks
@ndelangen!9.1.6
- CLI: Capture the version specifier used in
create-storybook- #32344, thanks@shilman!- Instrumenter: Fix userEvent.type performance regression - #32439, thanks
@ndelangen!- React Native Web: Fix RNW peer dependency version - #32438, thanks
@dannyhw!- Telemetry: Record known CLI integrations - #32448, thanks
@shilman!9.1.5
- CSF: Support
satisfies x as ysyntax - #32169, thanks@diagramatics!- Vitest addon: Handle Playwright installation errors gracefully - #32329, thanks
@ndelangen!9.1.4
- Angular: Properly merge builder options and browserTarget options - #32272, thanks
@kroeder!- Core: Optimize bundlesize, by reusing internal/babel in mocking-utils - #32350, thanks
@ndelangen!- Svelte & Vue: Add framework-specific
docgenoption to disable docgen processing - #32319, thanks@copilot-swe-agent!- Svelte: Support
@sveltejs/vite-plugin-sveltev6 - #32320, thanks@JReinhold!
Commits
006b304Bump version from "9.1.6" to "9.1.7" [skip ci]304edc3Bump version from "9.1.5" to "9.1.6" [skip ci]56c04b0Bump version from "9.1.4" to "9.1.5" [skip ci]9f02684Bump version from "9.1.3" to "9.1.4" [skip ci]c1dd869Update sandbox generation script to include resolutions for@types/reactand ...e1fcd14Update sandbox generation script to include resolutions for react and react-d...- See full diff in compare view
Updates @testing-library/cypress from 10.0.3 to 10.1.0
Release notes
Sourced from @testing-library/cypress's releases.
v10.1.0
10.1.0 (2025-09-02)
Features
Commits
e6ac135feat: support Cypress 15 (#282)- See full diff in compare view
Updates jest from 30.1.2 to 30.1.3
Release notes
Sourced from jest's releases.
30.1.3
Fixes
- Fix
unstable_mockModulewithnode:prefixed core modules.
Changelog
Sourced from jest's changelog.
30.1.3
Fixes
- Fix
unstable_mockModulewithnode:prefixed core modules.
Commits
da9b532v30.1.3- See full diff in compare view
Updates mjml from 4.15.3 to 4.16.1
Release notes
Sourced from mjml's releases.
v4.16.1
Fixes
- Fix build issue of version 4.16.0 for mjml-browser
Full Changelog: https://github.com/mjmlio/mjml/compare/v4.16.0...v4.16.1
v4.16.0
What's Changed
Features
- Add direction property to mj-social-element to reverse icon/text order by
@jamestomasinoin mjmlio/mjml#2881- mjml-table: supports 'auto' table width by
@dazgreerin mjmlio/mjml#2962- Added font-weight attribute to mj-accordion-title by
@dazgreerin mjmlio/mjml#2963- Add attributes for accessibility in MjBody by
@lleperein mjmlio/mjml#2954Fixes
- Watch wrong files on CLI by
@iRyusain mjmlio/mjml#2838- Pass parent attributes to rawXML child components by
@norchardin mjmlio/mjml#2922- mjml-wrapper/mjml-section: border-radius not being applied by
@dazgreerin mjmlio/mjml#2966- mjml-wrapper/section: border-radius bug by
@dazgreerin mjmlio/mjml#2980- mjml-parser: HTML Comments rendered with additional white space by
@dazgreerin mjmlio/mjml#2972Documentation
- Add mjml-python to ports, and update missing implementation for MJML. by
@mgd020in mjmlio/mjml#2845- Remove blank "Nesting" section by
@dfabulichin mjmlio/mjml#2864- Add a link for Laravel / PHP platform by
@EvanSchleretin mjmlio/mjml#2885- Remove missing features for MJML.NET by
@SebastianStehlein mjmlio/mjml#2905- Add mjml-bar-chart presentation to community components by
@Freezystemin mjmlio/mjml#2953Dependencies
- Bump lodash from 4.17.15 to 4.17.21 by
@abalam666in mjmlio/mjml#2831- Bump brace-expansion from 1.1.11 to 1.1.12 by
@dependabot[bot] in mjmlio/mjml#2956- Updated Babel to 7.28.3 by
@dazgreerin mjmlio/mjml#2978New Contributors
@abalam666made their first contribution in mjmlio/mjml#2831@mgd020made their first contribution in mjmlio/mjml#2845@dfabulichmade their first contribution in mjmlio/mjml#2864@jamestomasinomade their first contribution in mjmlio/mjml#2881@EvanSchleretmade their first contribution in mjmlio/mjml#2885@norchardmade their first contribution in mjmlio/mjml#2922@dazgreermade their first contribution in mjmlio/mjml#2962@lleperemade their first contribution in mjmlio/mjml#2954Full Changelog: https://github.com/mjmlio/mjml/compare/v4.15.3...v4.16.0
Commits
c2021f7v4.16.1c4e003av4.16.0c9a4c10Merge pull request #2980 from mjmlio/fix-29799224d69fix(mjml-wrapper/section): border-radius bug0abf95ffix(babel): updated to latest3d87d12fix(mjml-parser): better comments rendering848ee01fix(mjml-accordion): Added font-weight attribute to mj-accordion-title #2936fb2f3ddfix(mjml-wrapper/mjml-section): border-radius not being applied #29618b41953fix(mjml-table): supports 'auto' table width - #2906- See full diff in compare view
Maintainer changes
This version was pushed to npm by totocap, a new releaser for mjml since your current version.
Updates stylelint from 16.23.1 to 16.24.0
Release notes
Sourced from stylelint's releases.
16.24.0
It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.
- Added:
rule-nesting-at-rule-required-listrule (#8680) (@sw1tch3roo).- Added:
ignoreAtRules: []tonesting-selector-no-missing-scoping-root(#8743) (@karlhorky).- Fixed:
function-no-unknownfalse positives forcontrast-color()andsibling-*()(#8729) (@Mouvedia).- Fixed:
selector-pseudo-class-no-unknownfalse positives for:heading(#8749) (Pull Request Statistics
Commits:
1Files Changed:
2Additions:
+633Deletions:
-587
Package Dependencies
Technical Details
| ID: | 8254161 |
| UUID: | 2851270267 |
| Node ID: | PR_kwDOCdvj-c6p8u57 |
| Host: | GitHub |
| Repository: | TheThingsNetwork/lorawan-stack |
| Merge State: | Unknown |