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 #211

Merged
merged 1 commit into from
Jul 30, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 29, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/netlify (source) 2.5.0 -> 2.5.1 age adoption passing confidence
@commitlint/cli (source) 17.6.5 -> 17.6.7 age adoption passing confidence
@commitlint/config-conventional (source) 17.6.5 -> 17.6.7 age adoption passing confidence
@nanostores/vue 0.9.0 -> 0.10.0 age adoption passing confidence
@supabase/supabase-js 2.27.0 -> 2.31.0 age adoption passing confidence
@types/node (source) 18.17.0 -> 18.17.1 age adoption passing confidence
@unocss/astro 0.53.6 -> 0.54.0 age adoption passing confidence
@unocss/preset-uno (source) 0.53.6 -> 0.54.0 age adoption passing confidence
@unocss/reset 0.53.6 -> 0.54.0 age adoption passing confidence
@unocss/transformer-directives (source) 0.53.6 -> 0.54.0 age adoption passing confidence
@vite-pwa/astro 0.0.5 -> 0.1.1 age adoption passing confidence
@vuelidate/core 2.0.2 -> 2.0.3 age adoption passing confidence
@vuelidate/validators 2.0.2 -> 2.0.3 age adoption passing confidence
astro (source) 2.9.1 -> 2.9.6 age adoption passing confidence
c8 8.0.0 -> 8.0.1 age adoption passing confidence
nanostores 0.9.1 -> 0.9.3 age adoption passing confidence
netlify-cli 15.4.0 -> 15.9.1 age adoption passing confidence
node-fetch 3.3.1 -> 3.3.2 age adoption passing confidence
simple-git-hooks 2.8.1 -> 2.9.0 age adoption passing confidence
vitest 0.32.0 -> 0.33.0 age adoption passing confidence
vue (source) 3.2.47 -> 3.3.4 age adoption passing confidence
vue-tsc 1.8.6 -> 1.8.8 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/netlify)

v2.5.1

Compare Source

Patch Changes

v2.5.0

Compare Source

Minor Changes
Patch Changes

v2.4.0

Compare Source

Minor Changes
  • #​7615 f21357b69 Thanks @​ematipico! - The Netlify adapter builds to a single function by default. Astro 2.7 added support for splitting your build into separate entry points per page. If you use this configuration, the Netlify adapter will generate a separate function for each page. This can help reduce the size of each function so they are only bundling code used on that page.

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import netlify from '@​astrojs/netlify/functions';
    
    export default defineConfig({
      output: 'server',
      adapter: netlify(),
      build: {
        split: true,
      },
    });
Patch Changes
conventional-changelog/commitlint (@​commitlint/cli)

v17.6.7

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.6.6

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.6.7

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v17.6.6

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

nanostores/vue (@​nanostores/vue)

v0.10.0

Compare Source

  • Refactored devtools part:
    • Added better logging and tagging.
    • Removed attachStores method.
    • Extended devtools method.
  • Dropped Node.js 16 support.
  • Updated dependencies.

v0.9.1

Compare Source

  • Fixed broken devtools: removed support for mapTemplate.
  • Updated dependencies.
supabase/supabase-js (@​supabase/supabase-js)

v2.31.0

Compare Source

Features

v2.30.0

Compare Source

Features

v2.29.0

Compare Source

Features
  • roll back to fixed gotrue-js 2.43.1 until 2.45.0 is fixed (#​817) (f450b33)

v2.28.0

Compare Source

Features

v2.27.0

Compare Source

Features

v2.26.0

Compare Source

Features

v2.25.0

Compare Source

Features
  • version bump realtime-js to 2.7.3 (c4a101f)
unocss/unocss (@​unocss/astro)

v0.54.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v0.53.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.53.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.53.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.53.3

Compare Source

No significant changes

    View changes on GitHub
vite-pwa/astro (@​vite-pwa/astro)

v0.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.1.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub
vuelidate/vuelidate (@​vuelidate/core)

v2.0.3

Compare Source

Bug Fixes
vuelidate/vuelidate (@​vuelidate/validators)

v2.0.3

Compare Source

Bug Fixes
withastro/astro (astro)

v2.9.6

Compare Source

Patch Changes

v2.9.5

Compare Source

Patch Changes

v2.9.4

Compare Source

Patch Changes

v2.9.3

Compare Source

Patch Changes
  • #​7782 0f677c009 Thanks @​bluwy! - Refactor Astro rendering to write results directly. This improves the rendering performance for all Astro files.

  • #​7786 188eeddd4 Thanks @​matthewp! - Execute scripts when navigating to a new page.

    When navigating to an new page with client-side navigation, scripts are executed (and re-executed) so that any new scripts on the incoming page are run and the DOM can be updated.

    However, type=module scripts never re-execute in Astro, and will not do so in client-side routing. To support cases where you want to modify the DOM, a new astro:load event listener been added:

    document.addEventListener('astro:load', () => {
      updateTheDOMSomehow();
    });

v2.9.2

Compare Source

Patch Changes

v2.9.1

Compare Source

Patch Changes

v2.9.0

Compare Source

Minor Changes
  • #​7686 ec745d689 Thanks @​matthewp! - Redirects configuration

    This change moves the redirects configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag:

    experimental: {
      redirects: true,
    }

    If you have been waiting for stabilization before using redirects, now you can do so. Check out the docs on redirects to learn how to use this built-in feature.

  • #​7707 3a6e42e19 Thanks @​ottomated! - Improved hoisted script bundling

    Astro's static analysis to determine which <script> tags to bundle together just got a little smarter!

    Astro create bundles that optimize script usage between pages and place them in the head of the document so that they are downloaded as early as possible. One limitation to Astro's existing approach has been that you could not dynamically use hoisted scripts. Each page received the same, all-inclusive bundle whether or not every script was needed on that page.

    Now, Astro has improved the static analysis to take into account the actual imports used.

    For example, Astro would previously bundle the <script>s from both the <Tab> and <Accordian> component for the following library that re-exports multiple components:

    @​matthewp/my-astro-lib

    export { default as Tabs } from './Tabs.astro';
    export { default as Accordion } from './Accordion.astro';

    Now, when an Astro page only uses a single component, Astro will send only the necessary script to the page. A page that only imports the <Accordian> component will not receive any <Tab> component's scripts:

v2.8.5

Compare Source

Patch Changes

v2.8.4

Compare Source

Patch Changes

v2.8.3

Compare Source

Patch Changes

v2.8.2

Compare Source

Patch Changes

v2.8.1

Compare Source

Patch Changes

v2.8.0

Compare Source

Minor Changes
  • #​7532 9e5fafa2b Thanks @​ematipico! - The astro/middleware module exports a new utility called trySerializeLocals.

    This utility can be used by adapters to validate their locals before sending it
    to the Astro middleware.

    This function will throw a runtime error if the value passed is not serializable, so
    consumers will need to handle that error.

  • #​7532 9e5fafa2b Thanks @​ematipico! - Astro exposes the middleware file path to the integrations in the hook astro:build:ssr

    // myIntegration.js
    import type { AstroIntegration } from 'astro';
    function integration(): AstroIntegration {
      return {
        name: 'fancy-astro-integration',
        hooks: {
          'astro:build:ssr': ({ middlewareEntryPoint }) => {
            if (middlewareEntryPoint) {
              // do some operations
            }
          },
        },
      };
    }

    The middlewareEntryPoint is only defined if the user has created an Astro middleware.

  • #​7432 6e9c29579 Thanks @​ematipico! - Adds a new command astro info, useful for sharing debugging information about your current environment when you need help!

    astro info

    Output

    Astro version            v2.6.6
    Package manager          pnpm
    Platform                 darwin
    Architecture             arm64
    Adapter                  @&#8203;astrojs/vercel/serverless
    Integrations             None
    
  • #​7532 9e5fafa2b Thanks @​ematipico! - The astro/middleware module exports a new API called createContext.

    This a low-level API that adapters can use to create a context that can be consumed by middleware functions.

  • #​7532 9e5fafa2b Thanks @​ematipico! - Introduced a new build option for SSR, called build.excludeMiddleware.

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      build: {
        excludeMiddleware: true,
      },
    });

    When enabled, the code that belongs to be middleware won't be imported
    by the final pages/entry points. The user is responsible for importing it and
    calling it manually.

Patch Changes

v2.7.4

Compare Source

Patch Changes

v2.7.3

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "before 6am on Sunday" in timezone Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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
Copy link
Contributor Author

renovate bot commented Jul 29, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
/usr/local/bin/docker: line 4: .: filename argument required
.: usage: . filename [arguments]
[22:36:49.030] INFO (43): Downloading file ...
    url: "https://github.com/containerbase/node-prebuild/releases/download/18.17.0/node-18.17.0-focal-x86_64.tar.xz.sha512"
    output: "/tmp/worker/e41a05/7ee4fd/cache/containerbase/4f1b66de1eebc4e832e9ad5a012165a5e79cd3b1c3892eb6646e768a14a95e7c/node-18.17.0-focal-x86_64.tar.xz.sha512"
[22:36:49.075] INFO (43): Download completed  in 45ms.
[22:36:49.196] INFO (59): Downloading file ...
    url: "https://github.com/containerbase/node-prebuild/releases/download/18.17.0/node-18.17.0-focal-x86_64.tar.xz"
    output: "/tmp/worker/e41a05/7ee4fd/cache/containerbase/d71155bd68a6dac4a334976c5d82cd47e91bf95aa8811a4ec27c615d8d82df76/node-18.17.0-focal-x86_64.tar.xz"
[22:36:49.449] INFO (59): Download completed  in 253ms.
npm ERR! code EOVERRIDE
npm ERR! Override for vue@3.3.4 conflicts with direct dependency

npm ERR! A complete log of this run can be found in: /tmp/worker/e41a05/7ee4fd/cache/others/npm/_logs/2023-07-29T22_37_19_212Z-debug-0.log

@jochemkeller jochemkeller merged commit 0e6ff24 into updates Jul 30, 2023
1 check failed
@jochemkeller jochemkeller deleted the renovate/all-minor-patch branch July 30, 2023 07:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant