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-dev): Bump the npm-development group with 4 updates #1441

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm-development group with 4 updates: @commitlint/cli, @unocss/eslint-config, @unocss/nuxt and nuxt.

Updates @commitlint/cli from 19.1.0 to 19.2.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.2.0

19.2.0 (2024-03-15)

Features

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.1.0...v19.2.0

Changelog

Sourced from @​commitlint/cli's changelog.

19.2.0 (2024-03-15)

Features

  • cli: introduce new --last flag, to stop recommending HEAD~1 (#3916) (99f4f3f)
Commits

Updates @unocss/eslint-config from 0.58.5 to 0.58.6

Release notes

Sourced from @​unocss/eslint-config's releases.

v0.58.6

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @unocss/nuxt from 0.58.5 to 0.58.6

Release notes

Sourced from @​unocss/nuxt's releases.

v0.58.6

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates nuxt from 3.10.3 to 3.11.0

Release notes

Sourced from nuxt's releases.

v3.11.0

👀 Highlights

This is possibly the last minor release before Nuxt v4, and so we've packed it full of features and improvements we hope will delight you! ✨

🪵 Better logging

When developing a Nuxt application and using console.log in your application, you may have noticed that these logs are not displayed in your browser console when refreshing the page (during server-side rendering). This can be frustrating, as it makes it difficult to debug your application. This is now a thing of the past!

Now, when you have server logs associated with a request, they will be bundled up and passed to the client and displayed in your browser console. Asynchronous context is used to track and associate these logs with the request that triggered them. (#25936).

For example, this code:

<script setup>
console.log('Log from index page')
const { data } = await useAsyncData(() => {
console.log('Log inside useAsyncData')
return $fetch('/api/test')
})
</script>

will now log to your browser console when you refresh the page:

Log from index page
[ssr] Log inside useAsyncData 
    at pages/index.vue

👉 We also plan to support streaming of subsequent logs to the Nuxt DevTools in future.

We've also added a dev:ssr-logs hook (both in Nuxt and Nitro) which is called on server and client, allowing you to handle them yourself if you want to.

If you encounter any issues with this, it is possible to disable them - or prevent them from logging to your browser console.

export default defineNuxtConfig({
  features: {
    devLogs: false
    // or 'silent' to allow you to handle yourself with `dev:ssr-logs` hook
  },
})

🎨 Preview mode

A new usePreviewMode composable aims to make it simple to use preview mode in your Nuxt app.

... (truncated)

Commits
  • 78d5098 v3.11.0
  • 1cae15a chore(nuxt): ensure type template has const filename
  • 02d6838 feat(nuxt): add clear utility to useAsyncData/useFetch (#26259)
  • 3c7e68c fix(nuxt): handle nightly releases for hoisted types
  • 33ce71d refactor(nuxt): use addTypeTemplate in more places
  • 87c0678 fix(nuxt): provide appMiddleware types with universal router
  • 4925670 refactor(nuxt): use addTypeTemplate for page augmentations
  • cac7454 refactor(nuxt): rename nuxtMiddleware to appMiddleware
  • c6aa617 chore: do not export unused type
  • f9fe282 feat(nuxt): add nuxtMiddleware route rule (#25841)
  • Additional commits viewable in compare view

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 npm-development group with 4 updates: [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli), [@unocss/eslint-config](https://github.com/unocss/unocss/tree/HEAD/packages/eslint-config), [@unocss/nuxt](https://github.com/unocss/unocss/tree/HEAD/packages/nuxt) and [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt).


Updates `@commitlint/cli` from 19.1.0 to 19.2.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.2.0/@commitlint/cli)

Updates `@unocss/eslint-config` from 0.58.5 to 0.58.6
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v0.58.6/packages/eslint-config)

Updates `@unocss/nuxt` from 0.58.5 to 0.58.6
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v0.58.6/packages/nuxt)

Updates `nuxt` from 3.10.3 to 3.11.0
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.11.0/packages/nuxt)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: "@unocss/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: "@unocss/nuxt"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: nuxt
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 17, 2024
@dependabot dependabot bot requested a review from vinayakkulkarni March 17, 2024 19:40
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 18, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 18, 2024
auto-merge was automatically disabled March 18, 2024 19:20

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-development-7a3e8e884f branch March 18, 2024 19:20
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant