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 11 updates #2155

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

https://dependabot-npm-and-yarn-w.loculus.org/

Bumps the minorandpatch group in /website with 11 updates:

Package From To
@astrojs/mdx 3.1.0 3.1.1
@astrojs/node 8.2.6 8.3.1
astro 4.10.1 4.10.3
react-tooltip 5.26.4 5.27.0
rsuite 5.64.0 5.64.1
@astrojs/react 3.5.0 3.6.0
@iconify/json 2.2.218 2.2.220
@testing-library/jest-dom 6.4.5 6.4.6
eslint-plugin-astro 1.2.0 1.2.2
prettier 3.3.1 3.3.2
sass 1.77.4 1.77.5

Updates @astrojs/mdx from 3.1.0 to 3.1.1

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.1

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.1

Patch Changes

Commits

Updates @astrojs/node from 8.2.6 to 8.3.1

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​8.3.1

Patch Changes

@​astrojs/node@​8.3.0

Minor Changes

Changelog

Sourced from @​astrojs/node's changelog.

8.3.1

Patch Changes

8.3.0

Minor Changes

Commits

Updates astro from 4.10.1 to 4.10.3

Release notes

Sourced from astro's releases.

astro@4.10.3

Patch Changes

  • #11213 94ac7ef Thanks @​florian-lefebvre! - Removes the PUBLIC_ prefix constraint for astro:env public variables

  • #11213 94ac7ef Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental astro:env feature only

    Server secrets specified in the schema must now be imported from astro:env/server. Using getSecret() is no longer required to use these environment variables in your schema:

    - import { getSecret } from 'astro:env/server'
    - const API_SECRET = getSecret("API_SECRET")
    + import { API_SECRET } from 'astro:env/server'

    Note that using getSecret() with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema.

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

... (truncated)

Changelog

Sourced from astro's changelog.

4.10.3

Patch Changes

  • #11213 94ac7ef Thanks @​florian-lefebvre! - Removes the PUBLIC_ prefix constraint for astro:env public variables

  • #11213 94ac7ef Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental astro:env feature only

    Server secrets specified in the schema must now be imported from astro:env/server. Using getSecret() is no longer required to use these environment variables in your schema:

    - import { getSecret } from 'astro:env/server'
    - const API_SECRET = getSecret("API_SECRET")
    + import { API_SECRET } from 'astro:env/server'

    Note that using getSecret() with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema.

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

... (truncated)

Commits

Updates react-tooltip from 5.26.4 to 5.27.0

Release notes

Sourced from react-tooltip's releases.

v5.27.0

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

What's Changed

Full Changelog: ReactTooltip/react-tooltip@v5.26.4...v5.27.0

Commits
  • d23da63 chore(version): v5.27.0
  • 193b3b4 docs: switch to mouseover and mouseout as default events
  • f85c6d8 feat: switch to mouseover and mouseout as default events
  • 2bc225a docs: add mouseover and mouseout as default events
  • f040c6e feat: add mouseover and mouseout as default events
  • c13bde2 Merge pull request #1196 from ReactTooltip/chore/update-sponsors
  • b07c321 chore: remove dopt from sponsors list
  • e59397c Merge pull request #1148 from ReactTooltip/feat/automated-beta-releases
  • b47e870 chore: apply changes tested on auto-beta-releases repository
  • 102cc19 chore: bump version to v5.25.2-beta.1148.5
  • Additional commits viewable in compare view

Updates rsuite from 5.64.0 to 5.64.1

Release notes

Sourced from rsuite's releases.

v5.64.1

Bug Fixes

  • DateInput,DateRangeInput: fix date input error when manually input date (#3832) (40db883)
  • Modal: fix overflow not working when Modal is in Drawer (#3839) (d65b28d)
  • Table: fix flexGrow is invalid when the table is hidden and then shown (#489) (8cdf3bf)

Full Changelog: rsuite/rsuite@v5.64.0...v5.64.1

Changelog

Sourced from rsuite's changelog.

5.64.1 (2024-06-14)

Bug Fixes

  • DateInput,DateRangeInput: fix date input error when manually input date (#3832) (40db883)
  • Modal: fix overflow not working when Modal is in Drawer (#3839) (d65b28d)
Commits
  • f53a843 build: bump 5.64.1
  • d65b28d fix(Modal): fix overflow not working when Modal is in Drawer (#3839)
  • 4d0c1ff build(deps): bump rsuite-table from 5.18.2 to 5.18.3 (#3838)
  • 40db883 fix(DateInput,DateRangeInput): fix date input error when manually input date ...
  • 4a33ec3 build(deps-dev): bump braces from 3.0.2 to 3.0.3 in /examples/with-vite (#3837)
  • ce9cc2e ci: add a Github Action to send Twitter notifications (#3833)
  • 5a05f15 build(deps): bump rsuite to 5.64.0 in /examples/with-nextjs-app (#3829)
  • a46a061 build(docs): bump rsuite 5.64.0
  • See full diff in compare view

Updates @astrojs/react from 3.5.0 to 3.6.0

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​3.6.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

Changelog

Sourced from @​astrojs/react's changelog.

3.6.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

Commits

Updates @iconify/json from 2.2.218 to 2.2.220

Commits

Updates @testing-library/jest-dom from 6.4.5 to 6.4.6

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.4.6

6.4.6 (2024-06-10)

Bug Fixes

Commits

Updates eslint-plugin-astro from 1.2.0 to 1.2.2

Release notes

Sourced from eslint-plugin-astro's releases.

v1.2.2

Patch Changes

  • #397 58b3f19 Thanks @​ota-meshi! - fix: no-exports-from-components rule, which allowed getStaticPath instead of getStaticPaths

v1.2.1

Patch Changes

Changelog

Sourced from eslint-plugin-astro's changelog.

1.2.2

Patch Changes

  • #397 58b3f19 Thanks @​ota-meshi! - fix: no-exports-from-components rule, which allowed getStaticPath instead of getStaticPaths

1.2.1

Patch Changes

Commits
  • 045aedb chore: release eslint-plugin-astro (#398)
  • 58b3f19 fix: no-exports-from-components rule, which allowed getStaticPath instead o...
  • 767bcc5 chore: release eslint-plugin-astro (#396)
  • 5174590 Update no-exports-from-components rule to allow exceptions (#395)
  • 43aa17b chore(deps): update dependency nyc to v17 (#394)
  • 5015b41 chore(deps): update dependency prettier-plugin-astro to ^0.14.0 (#391)
  • b7d7e84 chore(deps): update dependency monaco-editor to ^0.49.0 (#390)
  • See full diff in compare view

Updates prettier from 3.3.1 to 3.3.2

Release notes

Sourced from prettier's releases.

3.3.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.2

diff

Fix handlebars path expressions starts with @ (#16358 by @​Princeyadav05)

{{! Input }}
<div>{{@x.y.z}}</div>
{{! Prettier 3.3.1 }}
<div>{{@​x}}</div>
{{! Prettier 3.3.2 }}
<div>{{@​x.y.z}}</div>

Commits

Updates sass from 1.77.4 to 1.77.5

Release notes

Sourced from sass's releases.

Dart Sass 1.77.5

To install Sass 1.77.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fully trim redundant selectors generated by @extend.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.77.5

  • Fully trim redundant selectors generated by @extend.
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

Bumps the minorandpatch group in /website with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.0` | `3.1.1` |
| [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node) | `8.2.6` | `8.3.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.10.1` | `4.10.3` |
| [react-tooltip](https://github.com/ReactTooltip/react-tooltip) | `5.26.4` | `5.27.0` |
| [rsuite](https://github.com/rsuite/rsuite) | `5.64.0` | `5.64.1` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `3.5.0` | `3.6.0` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.218` | `2.2.220` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.5` | `6.4.6` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `1.2.0` | `1.2.2` |
| [prettier](https://github.com/prettier/prettier) | `3.3.1` | `3.3.2` |
| [sass](https://github.com/sass/dart-sass) | `1.77.4` | `1.77.5` |


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

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

Updates `astro` from 4.10.1 to 4.10.3
- [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.10.3/packages/astro)

Updates `react-tooltip` from 5.26.4 to 5.27.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.26.4...v5.27.0)

Updates `rsuite` from 5.64.0 to 5.64.1
- [Release notes](https://github.com/rsuite/rsuite/releases)
- [Changelog](https://github.com/rsuite/rsuite/blob/main/CHANGELOG.md)
- [Commits](rsuite/rsuite@v5.64.0...v5.64.1)

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

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

Updates `@testing-library/jest-dom` from 6.4.5 to 6.4.6
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.5...v6.4.6)

Updates `eslint-plugin-astro` from 1.2.0 to 1.2.2
- [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-astro@v1.2.0...v1.2.2)

Updates `prettier` from 3.3.1 to 3.3.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.1...3.3.2)

Updates `sass` from 1.77.4 to 1.77.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.77.4...1.77.5)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@astrojs/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: react-tooltip
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: rsuite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@astrojs/react"
  dependency-type: direct:development
  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
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript labels Jun 17, 2024
@corneliusroemer corneliusroemer added the preview Triggers a deployment to argocd label Jun 17, 2024
@corneliusroemer corneliusroemer merged commit c38b59d into main Jun 17, 2024
14 checks passed
@corneliusroemer corneliusroemer deleted the dependabot/npm_and_yarn/website/minorandpatch-bcf8709ce3 branch June 17, 2024 15:57
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 preview Triggers a deployment to argocd
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant