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

Merged
merged 1 commit into from
Jul 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/netlify (source) 2.3.0 -> 2.4.0 age adoption passing confidence
@commitlint/cli (source) 17.6.5 -> 17.6.6 age adoption passing confidence
@commitlint/config-conventional (source) 17.6.5 -> 17.6.6 age adoption passing confidence
@nanostores/vue 0.9.1 -> 0.10.0 age adoption passing confidence
@supabase/supabase-js 2.24.0 -> 2.26.0 age adoption passing confidence
@types/node (source) 18.16.16 -> 18.16.19 age adoption passing confidence
@unocss/astro 0.53.4 -> 0.53.5 age adoption passing confidence
@unocss/preset-uno (source) 0.53.4 -> 0.53.5 age adoption passing confidence
@unocss/reset 0.53.4 -> 0.53.5 age adoption passing confidence
@unocss/transformer-directives (source) 0.53.4 -> 0.53.5 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.7.2 -> 2.8.3 age adoption passing confidence
nanostores 0.9.1 -> 0.9.3 age adoption passing confidence
netlify-cli 15.8.0 -> 15.9.0 age adoption passing confidence
vitest 0.32.2 -> 0.33.0 age adoption passing confidence
vue (source) 3.2.47 -> 3.3.4 age adoption passing confidence
vue-tsc 1.8.3 -> 1.8.5 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/netlify)

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.6

Compare Source

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

conventional-changelog/commitlint (@​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.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.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.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                  @​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

v2.7.2

Compare Source

Patch Changes

v2.7.1

Compare Source

Patch Changes

v2.7.0

Compare Source

Minor Changes
  • #​7353 76fcdb84d Thanks @​bholmesdev! - Remove legacy handling for MDX content collections. Ensure you are using @astrojs/mdx v0.18 or above.

  • #​7385 8e2923cc6 Thanks @​ematipico! - Astro.locals is now exposed to the adapter API. Node Adapter can now pass in a locals object in the SSR handler middleware.

  • #​7220 459b5bd05 Thanks @​ematipico! - Shipped a new SSR build configuration mode: split.
    When enabled, Astro will "split" the single entry.mjs file and instead emit a separate file to render each individual page during the build process.

    These files will be emitted inside dist/pages, mirroring the directory structure of your page files in src/pages/, for example:

    ├── pages
    │   ├── blog
    │   │   ├── entry._slug_.astro.mjs
    │   │   └── entry.about.astro.mjs
    │   └── entry.index.astro.mjs
    

    To enable, set build.split: true in your Astro config:

    // src/astro.config.mjs
    export default defineConfig({
      output: 'server',
      adapter: node({
        mode: 'standalone',
      }),
      build: {
        split: true,
      },
    });
  • #​7220 459b5bd05 Thanks @​ematipico! - The Astro hook astro:build:ssr now receives a new option in their payload, called entryPoints.

    entryPoints is defined as a Map<RouteData, URL>, where RouteData represents the information of a Astro route and URL is the path to the physical file emitted at the end of the build.

    export function integration(): AstroIntegration {
      return {
        name: 'my-integration',
        hooks: {
          'astro:build:ssr': ({ entryPoints }) => {
            // do something with `entryPoints`
          },
        },
      };
    }
Patch Changes
  • #​7438 30bb36371 Thanks @​bluwy! - Fix astro:build:setup hook updateConfig utility, where the configuration wasn't correctly updated when the hook was fired.

  • #​7436 3943fa390 Thanks @​kossidts! - Fix an issue related to the documentation. Destructure the argument of the function to customize the Astro dev server based on the command run.

  • #​7424 7877a06d8 Thanks @​bholmesdev! - Update internal types for more stable builds for Astro maintainers.

  • #​7427 e314a04bf Thanks @​ematipico! - Correctly emit the middleware code during the build phase. The file emitted is now dist/middleware.mjs

  • #​7423 33cdc8622 Thanks @​bmenant! - Ensure injected /_image endpoint for image optimization is not prerendered on hybrid output.

v2.6.6

Compare Source

Patch Changes

v2.6.5

Compare Source

Patch Changes

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes
nanostores/nanostores (nanostores)

v0.9.3

Compare Source

  • Fixed support for synchronous action for onAction (by Eduard Aksamitov).
  • Added actionId export (by Eduard Aksamitov).

0.9.2

  • Fixed getPath and setPath exports (by Dan Kozlov).
  • Fixed docs (Robert Kuzhin).

0.9.1

  • Fixed computed() with undefined input (by Bogdan Chadkin).

0.9

  • Call subscribers only if store’s value as changed (by Bogdan Chadkin).
  • Removed deprecated 0.7 API.
  • Added Store#value to public API.
  • Reduced size (by Bogdan Chadkin).
  • Moved to import type.
  • Fixed docs (by Joshua Byrd & @​Royserg).

0.8.1

  • Marked deprecated types by TSDoc.

0.8

  • Added deepMap store (by Dan Kozlov).
  • Added onAction event (by Eduard Aksamitov).
  • Deprecate mapTemplate.
  • Removed Node.js 14 support.

0.7.4

  • Fixed onStop() and onMount() conflict.

0.7.3

  • Fixed infinite loop on some diamond dependencies (by Roman Gorev).

0.7.2

  • Fixed diamond dependency problem (by Roman Gorev).

0.7.1

  • Fixed calling get() in onMount() and onStart().
  • Fixed atom type (by Brian Takita).

0.7

  • Removed deprecated 0.4 API.

0.6

  • Dropped Node.js 12 support.

0.5.13

0.5.12

  • Fixed computed regression (by Brian Takita).

0.5.11

  • Fixed wrong listeners order after store.off() (by Brian Takita).

0.5.10

  • Fixed multiple onMount listeners support.

0.5.9

  • Fixed onMount support in computed stores.

0.5.8

  • Fixed AnySyncTemplate type (by Eduard Aksamitov).

0.5.7

  • Fixed Atom#notify() types (by Aleksandr Slepchenkov).
  • Fixed docs (by Gor Davtyan and Daniil Pronin).

0.5.6

  • Fixed deprecate types.

0.5.5

  • Fixed deprecate types.

0.5.4

  • Fixed docs.

0.5.3

  • Fixed action() types.

0.5.2

  • Fixed types (by @​davidmz).
  • Fixed docs (by Eduard Aksamitov).

0.5.1

  • Reduced package size.

0.5 “Eustratius”

  • Renamed createStore() to atom() (by Usman Yunusov).
  • Renamed createMap() to map() (by Usman Yunusov).
  • Renamed defineMap() to mapTemplate() (by Usman Yunusov).
  • Renamed createdDerived() to computed() (by Usman Yunusov).
  • Renamed effect to task.
  • Renamed keepAlive() to keepMount().
  • Replaced getValue(store) with store.get().
  • Removed store cleaning in disabled mode.
  • Moved React/Preact/Vue integrations to separated packages.
  • Added store events like onMount or onSet (by @​eddort).
  • Added action() wrapper to change tracking (by @​eddort).
  • Added listenKeys() to listen for specific keys in map store.
  • Map store now change object link on changes (by Eduard Aksamitov).
  • Fixed diamond problem (by @​eddort).

0.4.9

  • Fixed Vue re-render (by Eduard Aksamitov).

0.4.8

  • Fixed optional keys in map store.
  • Fixed functions as store value support.

0.4.7

  • Fixed package size.

0.4.6

  • Fixed map store default type (by Alexey Berezin).

0.4.5

  • Fixed key type in map store methods (by Alexey Berezin).

0.4.4

  • Fixed changedKey type in map store (by Aleksandr Slepchenkov).

0.4.3

  • Fixed cleaning effects in tests.
  • Reduced all features size.

0.4.2

  • Fixed ending effect on error.
  • Fixed docs (by @​droganov).

0.4.1

  • Fixed React batch types.

0.4 “Zhang Xu”

  • Moved router and persistent store to separated projects.
  • Added project logo (by Eduard Aksamitov).
  • Added React Native support.
  • Added effect() and allEffects() functions for tests.
  • Added update() and updateKey() helpers.
  • Fixed stores on listeners changes during store change event.
  • Fixed cleanStores() on undefined in store.

0.3.3

  • Fixed React batching.
  • Fixed docs (by Aleksandr Slepchenkov).

0.3.2

  • Fixed map store initializer regression.

0.3.1

  • Fixed MapStore#setKey() regression.

0.3 “Esmâ Ibret Hanim”

  • Renamed project to nanostores
  • Split Store type to ReadableStore and WritableStore.
  • Added redirectPage() (by Aleksei Gurianov).

0.2 “Hasan Çeleb”

  • Do not clean store’s value on no listeners.
  • Added Preact support (by @​Merciful12).
  • Added docs.
  • Added keepActive() shortcut.
  • Added BuilderStore<typeof Builder> type.
  • Fixed examples (by @​2bj).

0.1 “Ahmed Karahisari”

  • Initial release.

v0.9.2

Compare Source

  • Fixed getPath and setPath exports (by Dan Kozlov).
  • Fixed docs (Robert Kuzhin).
netlify/cli (netlify-cli)

v15.9.0

Compare Source

Features
Bug Fixes

v15.8.1

Compare Source

Bug Fixes

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 16, 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]
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/025d97/7b4683/cache/others/npm/_logs/2023-07-16T17_52_29_616Z-debug-0.log

@jochemkeller jochemkeller merged commit d93807c into updates Jul 17, 2023
1 check failed
@jochemkeller jochemkeller deleted the renovate/all-minor-patch branch July 17, 2023 09:45
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