SatcherInstitute / health-equity-tracker

Health Equity Tracker is a free-to-use data visualization platform that is enabling new insights into the impact of COVID-19 and other social and political determinants of health on historically underrepresented groups in the United States.
https://healthequitytracker.org/
MIT License
17 stars 24 forks source link

Bump the minor-frontend group in /frontend with 9 updates #3545

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the minor-frontend group in /frontend with 9 updates:

Package From To
@mui/icons-material 5.16.6 5.16.7
@mui/material 5.16.6 5.16.7
jotai 2.9.1 2.9.2
vite 5.3.5 5.4.0
@playwright/test 1.45.3 1.46.0
@types/node 22.1.0 22.2.0
cspell 8.13.1 8.13.3
postcss 8.4.40 8.4.41
tailwindcss 3.4.7 3.4.9

Updates @mui/icons-material from 5.16.6 to 5.16.7

Release notes

Sourced from @​mui/icons-material's releases.

v5.16.7

Aug 9, 2024

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

@mui/material@5.16.7

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​oliviertassinari, @​zanivan

Changelog

Sourced from @​mui/icons-material's changelog.

5.16.7

Aug 9, 2024

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

@mui/material@5.16.7

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​oliviertassinari, @​zanivan

Commits


Updates @mui/material from 5.16.6 to 5.16.7

Release notes

Sourced from @​mui/material's releases.

v5.16.7

Aug 9, 2024

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

@mui/material@5.16.7

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​oliviertassinari, @​zanivan

Changelog

Sourced from @​mui/material's changelog.

5.16.7

Aug 9, 2024

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

@mui/material@5.16.7

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​oliviertassinari, @​zanivan

Commits


Updates jotai from 2.9.1 to 2.9.2

Release notes

Sourced from jotai's releases.

v2.9.2

A small improvement in atomFamily for edge use cases.

What's Changed

New Contributors

Full Changelog: https://github.com/pmndrs/jotai/compare/v2.9.1...v2.9.2

Commits


Updates vite from 5.3.5 to 5.4.0

Release notes

Sourced from vite's releases.

create-vite@5.4.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.0 (2024-08-07)

5.4.0-beta.1 (2024-08-01)

5.4.0-beta.0 (2024-07-30)

Commits


Updates @playwright/test from 1.45.3 to 1.46.0

Release notes

Sourced from @​playwright/test's releases.

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';

export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

# Only run test files with uncommitted changes
npx playwright test --only-changed

Only run test files changed relative to the "main" branch

npx playwright test --only-changed=main

Component Testing: New router fixture

This release introduces an experimental router fixture to intercept and handle network requests in component testing. There are two ways to use the router fixture:

  • Call router.route(url, handler) that behaves similarly to page.route().
  • Call router.use(handlers) and pass MSW library request handlers to it.

Here is an example of reusing your existing MSW handlers in the test.

</tr></table> 

... (truncated)

Commits
  • 99a3631 chore: mark v1.46 (#32013)
  • 929fef3 cherry-pick(#32012): chore(lint): bump Microsoft.CodeAnalysis for linting cod...
  • cf31aa8 cherry-pick(#32008): chore(client-certificates): rewrite error for unsupporte...
  • ed9b4d9 cherry-pick(#32007): fix(client-certificates): report error to the browser if...
  • fca1fa0 cherry-pick(#31973): chore: run client-certificate tests in service mode
  • ff11273 cherry-pick(#32010): docs: release notes for 1.46 update
  • 4953ac3 cherry-pick(#31975): chore: remove bright counter from sidebar tab se… (#31976)
  • 4c66f8a cherry-pick(#31970): fix(trace): do not place expect into unfinished … (#31974)
  • deba37b cherry-pick(#31960): feat(ui mode): linkify attachment names and content (#31...
  • 2cfe733 cherry-pick(#31961): fix(trace-viewer): make 'hide route actions' work for .NET
  • Additional commits viewable in compare view


Updates @types/node from 22.1.0 to 22.2.0

Commits


Updates cspell from 8.13.1 to 8.13.3

Release notes

Sourced from cspell's releases.

v8.13.3

Changes

Fixes

fix: Try non-English suffix endings on word breaks (#6066)

Related to #6065.

When breaking a camel case word into its parts there are two word break patterns:

  • regExpCamelCaseWordBreaks
  • regExpCamelCaseWordBreaksWithEnglishSuffix is the default pattern. It is the same as regExpCamelCaseWordBreaks, but will not split ALL CAPS words with English suffixes.

Using just regExpCamelCaseWordBreaks misses unknown 4-letter words. The code below was tried, but it missed flagging words like LSTMs:

  • LSTM was caught.
  • LSTMs was missed because it becomes LST and Ms.
const results = _checkCamelCaseWord(vr, regExpCamelCaseWordBreaks);
if (!results.length) return results;
const resultsEnglishBreaks = _checkCamelCaseWord(vr, regExpCamelCaseWordBreaksWithEnglishSuffix);
return results.length < resultsEnglishBreaks.length ? results : resultsEnglishBreaks;
  • Make sure the API doesn't change when adding functions to text.ts.
  • Fix possible accent issue with wordSplitter (note, not an issue with Normalized strings).

Dictionary Updates

fix: Workflow Bot -- Update Dictionaries (main) (#6070)

Update Dictionaries (main)

... (truncated)

Changelog

Sourced from cspell's changelog.

8.13.3 (2024-08-12)

8.13.2 (2024-08-08)

Commits


Updates postcss from 8.4.40 to 8.4.41

Release notes

Sourced from postcss's releases.

8.4.41

Changelog

Sourced from postcss's changelog.

8.4.41

Commits


Updates tailwindcss from 3.4.7 to 3.4.9

Release notes

Sourced from tailwindcss's releases.

v3.4.9

Fixed

  • No longer warns when broad glob patterns are detecting vendor folders

v3.4.8

Fixed

  • Fix minification when using nested CSS (#14105)
  • Warn when broad glob patterns are used in the content configuration (#14140)
Changelog

Sourced from tailwindcss's changelog.

[3.4.9] - 2024-08-08

Fixed

  • No longer warns when broad glob patterns are detecting vendor folders

[3.4.8] - 2024-08-07

Fixed

  • Fix minification when using nested CSS (#14105)
  • Warn when broad glob patterns are used in the content configuration (#14140)
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
netlify[bot] commented 1 month ago

Deploy Preview for health-equity-tracker ready!

Name Link
Latest commit 2f0c42dc7fefa5bc949d960a7915bd981c023ad7
Latest deploy log https://app.netlify.com/sites/health-equity-tracker/deploys/66ba679d4449990008c1a6e1
Deploy Preview https://deploy-preview-3545--health-equity-tracker.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.