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

chore(deps): bump the minorandpatch group in /website with 4 updates #2387

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2024

Bumps the minorandpatch group in /website with 4 updates: astro, luxon, react-tooltip and @iconify/json.

Updates astro from 4.13.0 to 4.13.1

Release notes

Sourced from astro's releases.

astro@4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    const result = await Astro.callAction(actions.searchPosts, {
    searchTerm: Astro.url.searchParams.get('search'),
    });
    {
    result.data &&
    {
    /* render the results */
    }
    }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    const result = await actions.searchPosts({ searchTerm: 'test' });
    
    
    const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });
    
    

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    const result = await Astro.callAction(actions.searchPosts, {
    searchTerm: Astro.url.searchParams.get('search'),
    });
    {
    result.data &&
    {
    /* render the results */
    }
    }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    const result = await actions.searchPosts({ searchTerm: 'test' });
    
    
    const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });
    
    

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Commits

Updates luxon from 3.4.4 to 3.5.0

Changelog

Sourced from luxon's changelog.

3.5.0 (2024-08-03)

  • Various performance improvements
  • throwOnInvalid causes the constructor to throw if the year is invalid
Commits

Updates react-tooltip from 5.27.1 to 5.28.0

Release notes

Sourced from react-tooltip's releases.

v5.28.0

If you like ReactTooltip, please give the project a star on GitHub 🌟

What's Changed

New Contributors

Full Changelog: ReactTooltip/react-tooltip@v5.27.1...v5.28.0

Commits
  • 08bfc6f chore(version): v5.28.0
  • 0776637 chore: adding tests for disableTooltip prop
  • cc5d197 chore: adding disabledTooltip to options in docs
  • 3d58319 fix: code formating and disableTooltip check for anchorById
  • eba4b01 feat: support for disabled tooltip callback
  • 2172242 chore: Update dark theme logos styling (Fixes #1209) (#1213)
  • See full diff in compare view

Updates @iconify/json from 2.2.233 to 2.2.234

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript labels Aug 5, 2024
@anna-parker
Copy link
Contributor

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/website/minorandpatch-5f881ca8c2 branch from 9f59197 to c7e4954 Compare August 5, 2024 18:51
@anna-parker
Copy link
Contributor

@dependabot rebase

Bumps the minorandpatch group in /website with 4 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [luxon](https://github.com/moment/luxon), [react-tooltip](https://github.com/ReactTooltip/react-tooltip) and [@iconify/json](https://github.com/iconify/icon-sets).


Updates `astro` from 4.13.0 to 4.13.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.13.1/packages/astro)

Updates `luxon` from 3.4.4 to 3.5.0
- [Changelog](https://github.com/moment/luxon/blob/master/CHANGELOG.md)
- [Commits](moment/luxon@3.4.4...3.5.0)

Updates `react-tooltip` from 5.27.1 to 5.28.0
- [Release notes](https://github.com/ReactTooltip/react-tooltip/releases)
- [Changelog](https://github.com/ReactTooltip/react-tooltip/blob/master/CHANGELOG.md)
- [Commits](ReactTooltip/react-tooltip@v5.27.1...v5.28.0)

Updates `@iconify/json` from 2.2.233 to 2.2.234
- [Commits](iconify/icon-sets@2.2.233...2.2.234)

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: luxon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: react-tooltip
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@iconify/json"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/website/minorandpatch-5f881ca8c2 branch from c7e4954 to 349b7c6 Compare August 5, 2024 19:09
@anna-parker anna-parker merged commit fe2f272 into main Aug 5, 2024
14 checks passed
@anna-parker anna-parker deleted the dependabot/npm_and_yarn/website/minorandpatch-5f881ca8c2 branch August 5, 2024 19:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant