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

fix(deps): update all non-major dependencies #350

Merged
merged 1 commit into from
Apr 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 22, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@astrojs/react (source) 3.0.3 -> 3.3.0 age adoption passing confidence dependencies minor
@fontsource/inter (source) 5.0.13 -> 5.0.17 age adoption passing confidence dependencies patch
@types/react (source) 18.0.26 -> 18.2.77 age adoption passing confidence dependencies minor
@types/react-dom (source) 18.0.10 -> 18.2.25 age adoption passing confidence dependencies minor
accesskit 0.12.2 -> 0.12.3 age adoption passing confidence workspace.dependencies patch
accesskit_winit 0.18.0 -> 0.18.7 age adoption passing confidence workspace.dependencies patch
astro (source) 4.0.2 -> 4.6.0 age adoption passing confidence dependencies minor
bitflags 2.4.1 -> 2.5.0 age adoption passing confidence dependencies minor
bitflags 2.4.0 -> 2.5.0 age adoption passing confidence dependencies minor
bytes 1.5.0 -> 1.6.0 age adoption passing confidence dependencies minor
dashmap 5.4.0 -> 5.5.3 age adoption passing confidence dependencies minor
glutin 0.31.2 -> 0.31.3 age adoption passing confidence workspace.dependencies patch
highlight.js (source) 11.7.0 -> 11.9.0 age adoption passing confidence dependencies minor
image 0.24.7 -> 0.25.1 age adoption passing confidence dependencies minor
itertools 0.11.0 -> 0.12.1 age adoption passing confidence dependencies minor
itertools 0.11.0 -> 0.12.1 age adoption passing confidence dev-dependencies minor
raw-window-handle 0.5.2 -> 0.6.0 age adoption passing confidence workspace.dependencies minor
react-icons 5.0.0 -> 5.0.1 age adoption passing confidence dependencies patch
reqwest 0.11.22 -> 0.12.3 age adoption passing confidence dependencies minor
reqwest 0.11.22 -> 0.12.3 age adoption passing confidence dev-dependencies minor
ropey 1.6.0 -> 1.6.1 age adoption passing confidence dependencies patch
serde (source) 1.0.189 -> 1.0.197 age adoption passing confidence dev-dependencies patch
serde_json 1.0.107 -> 1.0.115 age adoption passing confidence dependencies patch
smallvec 1.13.1 -> 1.13.2 age adoption passing confidence workspace.dependencies patch
tokio (source) 1.33.0 -> 1.37.0 age adoption passing confidence workspace.dependencies minor
tracing-subscriber (source) 0.3.17 -> 0.3.18 age adoption passing confidence workspace.dependencies patch
uuid 1.4.1 -> 1.8.0 age adoption passing confidence workspace.dependencies minor
winit 0.29.9 -> 0.29.15 age adoption passing confidence workspace.dependencies patch

Release Notes

withastro/astro (@​astrojs/react)

v3.3.0

Compare Source

Minor Changes

v3.2.0

Compare Source

Minor Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​10136 9cd84bd19b92fb43ae48809f575ee12ebd43ea8f Thanks @​matthewp! - Changes the default behavior of transition:persist to update the props of persisted islands upon navigation. Also adds a new view transitions option transition:persist-props (default: false) to prevent props from updating as needed.

    Islands which have the transition:persist property to keep their state when using the <ViewTransitions /> router will now have their props updated upon navigation. This is useful in cases where the component relies on page-specific props, such as the current page title, which should update upon navigation.

    For example, the component below is set to persist across navigation. This component receives a products props and might have some internal state, such as which filters are applied:

    <ProductListing transition:persist products={products} />

    Upon navigation, this component persists, but the desired products might change, for example if you are visiting a category of products, or you are performing a search.

    Previously the props would not change on navigation, and your island would have to handle updating them externally, such as with API calls.

    With this change the props are now updated, while still preserving state.

    You can override this new default behavior on a per-component basis using transition:persist-props=true to persist both props and state during navigation:

    <ProductListing transition:persist-props="true" products={products} />

v3.0.10

Compare Source

Patch Changes

v3.0.9

Compare Source

Patch Changes

v3.0.8

Compare Source

Patch Changes

v3.0.7

Compare Source

Patch Changes

v3.0.6

Compare Source

Patch Changes
  • #​9141 af43fb517 Thanks @​lilnasy! - Fixes an issue where slotting self-closing elements (img, br, hr) into react components with experimentalReactChildren enabled led to an error.

v3.0.5

Compare Source

Patch Changes

v3.0.4

Compare Source

Patch Changes
fontsource/font-files (@​fontsource/inter)

v5.0.17

Compare Source

v5.0.16

Compare Source

v5.0.15

Compare Source

v5.0.14

Compare Source

AccessKit/accesskit (accesskit)

v0.12.3: accesskit: v0.12.3

Compare Source

Bug Fixes
withastro/astro (astro)

v4.6.0

Compare Source

Minor Changes
  • #​10591 39988ef8e2c4c4888543c973e06d9b9939e4ac95 Thanks @​mingjunlu! - Adds a new dev toolbar settings option to change the horizontal placement of the dev toolbar on your screen: bottom left, bottom center, or bottom right.

  • #​10689 683d51a5eecafbbfbfed3910a3f1fbf0b3531b99 Thanks @​ematipico! - Deprecate support for versions of Node.js older than v18.17.1 for Node.js 18, older than v20.0.3 for Node.js 20, and the complete Node.js v19 release line.

    This change is in line with Astro's Node.js support policy.

  • #​10678 2e53b5fff6d292b7acdf8c30a6ecf5e5696846a1 Thanks @​ematipico! - Adds a new experimental security option to prevent Cross-Site Request Forgery (CSRF) attacks. This feature is available only for pages rendered on demand:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
      experimental: {
        security: {
          csrfProtection: {
            origin: true,
          },
        },
      },
    });

    Enabling this setting performs a check that the "origin" header, automatically passed by all modern browsers, matches the URL sent by each Request.

    This experimental "origin" check is executed only for pages rendered on demand, and only for the requests POST, PATCH, DELETEandPUTwith one of the followingcontent-type` headers: 'application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'.

    It the "origin" header doesn't match the pathname of the request, Astro will return a 403 status code and won't render the page.

  • #​10193 440681e7b74511a17b152af0fd6e0e4dc4014025 Thanks @​ematipico! - Adds a new i18n routing option manual to allow you to write your own i18n middleware:

    import { defineConfig } from 'astro/config';
    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locales: ['en', 'fr'],
        defaultLocale: 'fr',
        routing: 'manual',
      },
    });

    Adding routing: "manual" to your i18n config disables Astro's own i18n middleware and provides you with helper functions to write your own: redirectToDefaultLocale, notFound, and redirectToFallback:

    // middleware.js
    import { redirectToDefaultLocale } from 'astro:i18n';
    export const onRequest = defineMiddleware(async (context, next) => {
      if (context.url.startsWith('/about')) {
        return next();
      } else {
        return redirectToDefaultLocale(context, 302);
      }
    });

    Also adds a middleware function that manually creates Astro's i18n middleware. This allows you to extend Astro's i18n routing instead of completely replacing it. Run middleware in combination with your own middleware, using the sequence utility to determine the order:

    import { defineMiddleware, sequence } from 'astro:middleware';
    import { middleware } from 'astro:i18n'; // Astro's own i18n routing config
    
    export const userMiddleware = defineMiddleware();
    
    export const onRequest = sequence(
      userMiddleware,
      middleware({
        redirectToDefaultLocale: false,
        prefixDefaultLocale: true,
      })
    );
  • #​10671 9e14a78cb05667af9821948c630786f74680090d Thanks @​fshafiee! - Adds the httpOnly, sameSite, and secure options when deleting a cookie

Patch Changes

v4.5.18

Compare Source

Patch Changes

v4.5.17

Compare Source

Patch Changes

v4.5.16

Compare Source

Patch Changes

v4.5.15

Compare Source

Patch Changes

v4.5.14

Compare Source

Patch Changes

v4.5.13

Compare Source

Patch Changes

v4.5.12

Compare Source

Patch Changes

v4.5.11

Compare Source

Patch Changes

v4.5.10

Compare Source

Patch Changes

v4.5.9

Compare Source

Patch Changes

v4.5.8

Compare Source

Patch Changes

v4.5.7

Compare Source

Patch Changes

v4.5.6

Compare Source

Patch Changes

v4.5.5

Compare Source

Patch Changes

v4.5.4

Compare Source

Patch Changes

v4.5.3

Compare Source

Patch Changes

v4.5.2

Compare Source

Patch Changes

v4.5.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a73b31d to 226760e Compare October 28, 2023 07:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2b5c76f to 61ff86b Compare November 1, 2023 13:49
@marc2332 marc2332 self-requested a review November 1, 2023 22:49
@marc2332 marc2332 added the dependencies Pull requests that update a dependency file label Nov 1, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 22cb2ab to 7f71a44 Compare November 7, 2023 04:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 80d0ea8 to 785ce62 Compare November 11, 2023 16:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a25a0d8 to 8fe2a1e Compare November 20, 2023 00:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 330d09b to 8e7a131 Compare November 24, 2023 16:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e8c35e to e9e0b16 Compare April 3, 2024 18:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e9e0b16 to fdb4454 Compare April 3, 2024 21:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fdb4454 to 2a4727f Compare April 4, 2024 19:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2a4727f to c9f0dd3 Compare April 5, 2024 01:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9f0dd3 to 254f65b Compare April 5, 2024 15:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 254f65b to 49c5b6c Compare April 6, 2024 12:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49c5b6c to ed02230 Compare April 9, 2024 02:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ed02230 to 7f34611 Compare April 9, 2024 07:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7f34611 to 3db2edc Compare April 10, 2024 05:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3db2edc to 4b07be9 Compare April 11, 2024 12:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4b07be9 to b112e82 Compare April 11, 2024 18:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b112e82 to a5c4837 Compare April 11, 2024 23:39
@marc2332 marc2332 merged commit 8e59681 into main Apr 12, 2024
7 checks passed
@marc2332 marc2332 deleted the renovate/all-minor-patch branch April 12, 2024 14:33
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.

None yet

1 participant