cesko-digital / app

Komunitní aplikace Česko.Digital
https://app.cesko.digital
BSD 3-Clause "New" or "Revised" License
23 stars 40 forks source link

Bump the dev-dependencies group across 1 directory with 17 updates #1040

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps the dev-dependencies group with 16 updates in the / directory:

Package From To
@mui/material 5.15.19 5.15.21
@mui/x-charts 7.6.1 7.8.0
@slack/web-api 7.0.4 7.2.0
next 14.2.3 14.2.4
@ianvs/prettier-plugin-sort-imports 4.2.1 4.3.0
@playwright/test 1.44.1 1.45.0
@types/node 20.14.0 20.14.9
@typescript-eslint/eslint-plugin 7.11.0 7.14.1
@typescript-eslint/parser 7.11.0 7.14.1
eslint-config-next 14.2.3 14.2.4
postcss 8.4.38 8.4.39
prettier 3.3.0 3.3.2
prettier-plugin-tailwindcss 0.6.1 0.6.5
tailwindcss 3.4.3 3.4.4
ts-jest 29.1.4 29.1.5
typescript 5.4.5 5.5.2

Updates @mui/material from 5.15.19 to 5.15.21

Release notes

Sourced from @​mui/material's releases.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

... (truncated)

Commits


Updates @mui/system from 5.15.15 to 5.15.20

Release notes

Sourced from @​mui/system's releases.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.19

... (truncated)

Changelog

Sourced from @​mui/system's changelog.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

Commits


Updates @mui/x-charts from 7.6.1 to 7.8.0

Release notes

Sourced from @​mui/x-charts's releases.

v7.8.0

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />
    

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid

@mui/x-data-grid@7.8.0

@mui/x-data-grid-pro@7.8.0 pro

... (truncated)

Changelog

Sourced from @​mui/x-charts's changelog.

7.8.0

Jun 28, 2024

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />
    

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid

@mui/x-data-grid@7.8.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by kyusuf, a new releaser for @​mui/x-charts since your current version.


Updates @slack/web-api from 7.0.4 to 7.2.0

Release notes

Sourced from @​slack/web-api's releases.

@​slack/web-api@​7.2.0

What's Changed

4df9fb8c feat(web-api): add new Slack Connect APIs team.externalTeams.list and users.discoverableContacts.lookup (#1826) f3acb2f5 feat(web-api): Update response types to latest automatically generated (#1824) 20f026b6 feat(web-api): user id map in MigrationExchangeResponse as map (#1821)

@​slack/web-api@​7.1.0

What's Changed

The new feature available in this release is access to new Canvas APIs - programmatically manipulate your Canvases to your heart's content!

Additionally:

  • Previously in v7 of web-api, if you were using an API method that required no arguments (e.g. api.test), you still had to pass it an empty object ({}). Thanks to @​davidlj95's work in #1809, that is no longer a requirement!
  • You can now set the attachOriginalToWebAPIRequestError to false to ensure API responses are not logged. By default, this option will be set to false. Many thanks to @​Parama92 for their work in this area!

a2c0fe56 web-api: public canvas APIs (#1813) 9f2935ff feat: allow using WebClient APIs without argument (#1809) - fixes #1769; thank you @​davidlj95 for your contribution! ❤️ b98ef1e1 feat: providing a way to disable message content being logged (#1786) - fixes #1751; thank you @​Parama92 for your contribution! ❤️

Commits
  • b1dad13 Publish @slack/web-api@7.2.0 (#1828)
  • 4df9fb8 feat(web-api): add new Slack Connect APIs team.externalTeams.list and `user...
  • f3acb2f feat(web-api): run response generation script (#1824)
  • 042fec0 chore (types): small refactorings and two new helper types (#1823)
  • 91523a1 feat: set QA apihost (#1822)
  • 753a4de Update test
  • d368a8a feat: set QA apihost
  • 20f026b feat (web-api): user id map in MigrationExchangeResponse as map (#1821)
  • 893b836 types: small refactor in views, jsdoc all view properties, add type tests (#1...
  • f8d06ca types: export helper union types (#1819)
  • Additional commits viewable in compare view


Updates next from 14.2.3 to 14.2.4

Release notes

Sourced from next's releases.

v14.2.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: ensure route handlers properly track dynamic access (#66446)
  • fix NextRequest proxy in edge runtime (#66551)
  • Fix next/dynamic with babel and src dir (#65177)
  • Use vercel deployment url for metadataBase fallbacks (#65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#65235)
  • Fix loading navigation with metadata and prefetch (#66447)
  • prevent duplicate RSC fetch when action redirects (#66620)
  • ensure router cache updates reference the latest cache values (#66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • Use addDependency to track metadata route file changes (#66714)
  • Add timeout/retry handling for fetch cache (#66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)

Credits

Huge thanks to @​ztanner, @​ijjk, @​wbinnssmith, @​huozhi, and @​lubieowoce for helping!

Commits
  • 3078441 v14.2.4
  • 0538a0d [not a backport] fix lint errors
  • 2807fb4 fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)
  • efb476e Add timeout/retry handling for fetch cache (#66652)
  • c16a3f9 Use addDependency to track metadata route file changes (#66714)
  • 942e45a Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • 9728a35 Prevent append of trailing slash in cases where path ends with a file extensi...
  • 44661c2 ensure router cache updates reference the latest cache values (#66681)
  • f7ec039 prevent duplicate RSC fetch when action redirects (#66620)
  • dd6ab93 Fix loading navigation with metadata and prefetch (#66447)
  • Additional commits viewable in compare view


Updates @ianvs/prettier-plugin-sort-imports from 4.2.1 to 4.3.0

Release notes

Sourced from @​ianvs/prettier-plugin-sort-imports's releases.

v4.3.0

What's Changed

Features

This release adds support for experimental import attributes / assertions. There have been a number of styles proposed by TC-39 over the years, but the latest is to use import x from 'x' with { type: 'json' };, which is called an "import attribute". There is also an older "import assertion" form, which uses assert instead of with.

Note: You may need to add "importAttributes" to your "importOrderParserPlugins" option in order to support this. And if you are using the older assertion style, you'll need to add it as '[\"importAttributes\", {\"deprecatedAssertSyntax\": true}]'.

This plugin will also convert the older assertion style to import attributes.

Bugfixes

TypeScript

You can now type your prettier config as simply /** @type {import("prettier").Config} */, and you'll also get the types for the options this plugin adds, automatically.

Docs

New Contributors

Full Changelog: https://github.com/IanVS/prettier-plugin-sort-imports/compare/v4.2.1...v4.3.0

Commits


Updates @playwright/test from 1.44.1 to 1.45.0

Release notes

Sourced from @​playwright/test's releases.

v1.45.0

Clock

Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

  • testing with predefined time;
  • keeping consistent time and timers;
  • monitoring inactivity;
  • ticking through time manually.
// Initialize clock and let the page load naturally.
await page.clock.install({ time: new Date('2024-02-02T08:00:00') });
await page.goto('http://localhost:3333');

// Pretend that the user closed the laptop lid and opened it again at 10am,
// Pause the time once reached that point.
await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

// Assert the page state.
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');

// Close the laptop lid again and open it at 10:30am.
await page.clock.fastForward('30:00');
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');

See the clock guide for more details.

Test runner

  • New CLI option --fail-on-flaky-tests that sets exit code to 1 upon any flaky tests. Note that by default, the test runner exits with code 0 when all failed tests recovered upon a retry. With this option, the test run will fail in such case.

  • New enviroment variable PLAYWRIGHT_FORCE_TTY controls whether built-in list, line and dot reporters assume a live terminal. For example, this could be useful to disable tty behavior when your CI environment does not handle ANSI control sequences well. Alternatively, you can enable tty behavior even when to live terminal is present, if you plan to post-process the output and handle control sequences.

    # Avoid TTY features that output ANSI control sequences
    PLAYWRIGHT_FORCE_TTY=0 npx playwright test
    

    Enable TTY features, assuming a terminal width 80

    PLAYWRIGHT_FORCE_TTY=80 npx playwright test

  • New options testConfig.respectGitIgnore and testProject.respectGitIgnore control whether files matching .gitignore patterns are excluded when searching for tests.

  • New property timeout is now available for custom expect matchers. This property takes into account playwright.config.ts and expect.configure().

    import { expect as baseExpect } from '@playwright/test';
    

    export const expect = baseExpect.extend({
    async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // When no timeout option is specified, use the config timeout.
    const timeout = options?.timeout ?? this.timeout;

... (truncated)

Commits


Updates @types/node from 20.14.0 to 20.14.9

Commits


Updates @typescript-eslint/eslint-plugin from 7.11.0 to 7.14.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v7.14.1

7.14.1 (2024-06-24)

🚀 Features

  • support TypeScript 5.5 (#9397)
  • ast-spec: tighter types and documentation for declaration/* (#9211)

🩹 Fixes

  • keep warnAbountTSVersion in sync with package.json (#9400)
  • eslint-plugin: [no-extraneous-class] handle abstract members (#9367)
  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types (#9378)
  • eslint-plugin: [no-invalid-this] support AccessorProperty (#9411)
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types (#9376)
  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens (#9380)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.14.0

7.14.0 (2024-06-24)

We followed this up soon after with 7.14.1 - see the combined release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v7.14.1

You can read about our versioning strategy and releases on our website.

v7.13.1

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations (#8894)
  • eslint-plugin: [return-await] support explicit resource management (#9044)
  • eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any (#9291)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

7.14.1 (2024-06-24)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

❤️ Thank You

  • Jake Bailey

You can read about our versioning strategy and releases on our website.

7.14.0 (2024-06-24)

🚀 Features

  • support TypeScript 5.5

🩹 Fixes

  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

❤️ Thank You

  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations

... (truncated)

Commits
  • b4fe94f chore(release): publish 7.14.1
  • f29150f fix(eslint-plugin): [prefer-nullish-coalescing] ensure ternary fix does not r...