agrc / gis.utah.gov

The official UGRC website
https://gis.utah.gov
MIT License
25 stars 40 forks source link

deps(dev): bump the safe-dependencies group with 11 updates #2737

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the safe-dependencies group with 11 updates:

Package From To
@astrojs/partytown 2.0.4 2.1.0
@astrojs/react 3.3.0 3.3.1
@astrojs/sitemap 3.1.2 3.1.4
@tailwindcss/typography 0.5.12 0.5.13
astro 4.6.2 4.7.0
google-auth-library 9.8.0 9.9.0
react 18.2.0 18.3.1
@types/react 18.2.79 18.3.1
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.25 18.3.0
tailwind-merge 2.2.2 2.3.0

Updates @astrojs/partytown from 2.0.4 to 2.1.0

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.1.0

Minor Changes

  • #10833 8d5f3e8 Thanks @​renovate! - Updates the @builder.io/partytown dependency to v0.10. This should not affect projects in most cases.
Changelog

Sourced from @​astrojs/partytown's changelog.

2.1.0

Minor Changes

  • #10833 8d5f3e8 Thanks @​renovate! - Updates the @builder.io/partytown dependency to v0.10. This should not affect projects in most cases.
Commits


Updates @astrojs/react from 3.3.0 to 3.3.1

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​3.3.1

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

3.3.1

Patch Changes

Commits


Updates @astrojs/sitemap from 3.1.2 to 3.1.4

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.1.4

Patch Changes

@​astrojs/sitemap@​3.1.3

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.1.4

Patch Changes

3.1.3

Patch Changes

Commits


Updates @tailwindcss/typography from 0.5.12 to 0.5.13

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.13

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.13] - 2024-04-26

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)
Commits


Updates astro from 4.6.2 to 4.7.0

Release notes

Sourced from astro's releases.

astro@4.7.0

Minor Changes

  • #10665 7b4f284 Thanks @​Princesseuh! - Adds new utilities to ease the creation of toolbar apps including defineToolbarApp to make it easier to define your toolbar app and app and server helpers for easier communication between the toolbar and the server. These new utilities abstract away some of the boilerplate code that is common in toolbar apps, and lower the barrier of entry for app authors.

    For example, instead of creating an event listener for the app-toggled event and manually typing the value in the callback, you can now use the onAppToggled method. Additionally, communicating with the server does not require knowing any of the Vite APIs anymore, as a new server object is passed to the init function that contains easy to use methods for communicating with the server.

    import { defineToolbarApp } from "astro/toolbar";
    

    export default defineToolbarApp({ init(canvas, app, server) {

    • app.addEventListener("app-toggled", (e) => {
    •  console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);.
      
    • });
    • app.onToggled(({ state }) => {
    •    console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);
      
    • });
    • if (import.meta.hot) {
    •  import.meta.hot.send(&quot;my-app:my-client-event&quot;, { message: &quot;world&quot; });
      
    • }
    • server.send("my-app:my-client-event", { message: "world" })
    • if (import.meta.hot) {
    •  import.meta.hot.on(&quot;my-server-event&quot;, (data: {message: string}) =&gt; {
      
    •    console.log(data.message);
      
    •  });
      
    • }
    • server.on<{ message: string }>("my-server-event", (data) => {
    •  console.log(data.message); // data is typed using the type parameter
      
    • }); }, })

Server helpers are also available on the server side, for use in your integrations, through the new toolbar object:

"astro:server:setup": ({ toolbar }) => {
  toolbar.on<{ message: string }>("my-app:my-client-event", (data) => {
    console.log(data.message);
    toolbar.send("my-server-event", { message: "hello" });
  });
}

... (truncated)

Changelog

Sourced from astro's changelog.

4.7.0

Minor Changes

  • #10665 7b4f284 Thanks @​Princesseuh! - Adds new utilities to ease the creation of toolbar apps including defineToolbarApp to make it easier to define your toolbar app and app and server helpers for easier communication between the toolbar and the server. These new utilities abstract away some of the boilerplate code that is common in toolbar apps, and lower the barrier of entry for app authors.

    For example, instead of creating an event listener for the app-toggled event and manually typing the value in the callback, you can now use the onAppToggled method. Additionally, communicating with the server does not require knowing any of the Vite APIs anymore, as a new server object is passed to the init function that contains easy to use methods for communicating with the server.

    import { defineToolbarApp } from "astro/toolbar";
    

    export default defineToolbarApp({ init(canvas, app, server) {

    • app.addEventListener("app-toggled", (e) => {
    •  console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);.
      
    • });
    • app.onToggled(({ state }) => {
    •    console.log(`App is now ${state ? &quot;enabled&quot; : &quot;disabled&quot;}`);
      
    • });
    • if (import.meta.hot) {
    •  import.meta.hot.send(&quot;my-app:my-client-event&quot;, { message: &quot;world&quot; });
      
    • }
    • server.send("my-app:my-client-event", { message: "world" })
    • if (import.meta.hot) {
    •  import.meta.hot.on(&quot;my-server-event&quot;, (data: {message: string}) =&gt; {
      
    •    console.log(data.message);
      
    •  });
      
    • }
    • server.on<{ message: string }>("my-server-event", (data) => {
    •  console.log(data.message); // data is typed using the type parameter
      
    • }); }, })

Server helpers are also available on the server side, for use in your integrations, through the new toolbar object:

"astro:server:setup": ({ toolbar }) => {
  toolbar.on<{ message: string }>("my-app:my-client-event", (data) => {
    console.log(data.message);
    toolbar.send("my-server-event", { message: "hello" });
  });
}

... (truncated)

Commits


Updates google-auth-library from 9.8.0 to 9.9.0

Release notes

Sourced from google-auth-library's releases.

v9.9.0

9.9.0 (2024-04-18)

Features

  • Adds suppliers for custom subject token and AWS credentials (#1795) (c680b5d)
Changelog

Sourced from google-auth-library's changelog.

9.9.0 (2024-04-18)

Features

  • Adds suppliers for custom subject token and AWS credentials (#1795) (c680b5d)
Commits


Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.79 to 18.3.1

Commits


Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.25 to 18.3.0

Commits


Updates tailwind-merge from 2.2.2 to 2.3.0

Release notes

Sourced from tailwind-merge's releases.

v2.3.0

New Features

Documentation

Full Changelog: https://github.com/dcastil/tailwind-merge/compare/v2.2.2...v2.3.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy and @​jamesreaco for sponsoring tailwind-merge! ❤️

Commits
  • 69baa12 v2.3.0
  • 428f681 add v2.3.0 changelog
  • 103b949 Merge pull request #403 from dcastil/add-support-for-tailwindcss-v3.4.2
  • 1a0ffe3 add support for mix-blend-plus-darker utility
  • aae31bb Merge pull request #402 from LarsArtmann/patch-1
  • 57a5afb All all falsely bigint's in ClassNameValue
  • 7aa5790 Added support for bigint in ClassNameValue type
  • 361cf8c Merge pull request #398 from dcastil/renovate/all-minor-patch
  • 54c510a chore(deps): update all non-major dependencies
  • e96959a Add Laravel and PHP packages to docs
  • Additional commits viewable in compare view


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 4 months ago

Deploy Preview for gis-utah-gov ready!

Name Link
Latest commit c39053f99c0ec87cf9d6bbd9f71419c20f64ce53
Latest deploy log https://app.netlify.com/sites/gis-utah-gov/deploys/6631e2f54c0b3900082ebfb5
Deploy Preview https://deploy-preview-2737--gis-utah-gov.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

Lighthouse
1 paths audited
Performance: 95 (no change from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 93 (no change from production)
PWA: -
View the detailed breakdown and full score reports

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