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): update root-packages #1127

Merged
merged 1 commit into from
Mar 7, 2024
Merged

chore(deps): update root-packages #1127

merged 1 commit into from
Mar 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config 2.6.3 -> 2.8.0 age adoption passing confidence
dotenv-cli 7.3.0 -> 7.4.0 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.0 age adoption passing confidence
pnpm (source) 8.14.3 -> 8.15.4 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence
semver 7.5.4 -> 7.6.0 age adoption passing confidence
sherif 0.7.0 -> 0.8.1 age adoption passing confidence
simple-git-hooks 2.9.0 -> 2.10.0 age adoption passing confidence
tsx 4.7.0 -> 4.7.1 age adoption passing confidence
turbo (source) 1.11.3 -> 1.12.5 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v2.8.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.6.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
entropitor/dotenv-cli (dotenv-cli)

v7.4.0: Release better variable usage (-v)

Compare Source

Releases https://github.com/entropitor/dotenv-cli/pull/105

eslint/eslint (eslint)

v8.57.0

Compare Source

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#​18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#​18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#​18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#​18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#​18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#​18056) (Milos Djermanovic)

Documentation

Chores

pnpm/pnpm (pnpm)

v8.15.4

Compare Source

v8.15.3

Compare Source

Patch Changes

  • Remove vulnerable "ip" package from the dependencies #​7652.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.2

Compare Source

Patch Changes

  • When purging multiple node_modules directories, pnpm will no longer print multiple prompts simultaneously.
  • Don't print an unnecessary warning when adding new dependencies to a project that uses hoisted node_modules.
  • Linking globally the command of a package that has no name in package.json #​4761.
  • Installation should work with lockfile created by pnpm v9.0.0-alpha.4

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.1

Compare Source

Patch Changes

  • Use the object-hash library instead of node-object-hash for hashing keys of side-effects cache #​7591.
  • bundledDependencies should never be added to the lockfile with false as the value #​7576.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.0

Compare Source

Minor Changes

  • When the license field does not exist in package.json but a license file exists, try to match and extract the license name #​7530.

Patch Changes

  • Running pnpm update -r --latest will no longer downgrade prerelease dependencies #​7436.
  • --aggregate-output should work on scripts executed from the same project #​7556.
  • Prefer hard links over reflinks on Windows as they perform better #​7564.
  • Reduce the length of the side-effects cache key. Instead of saving a stringified object composed from the dependency versions of the package, use the hash calculated from the said object #​7563.
  • Throw an error if pnpm update --latest runs with arguments containing versions specs. For instance, pnpm update --latest foo@next is not allowed #​7567.
  • Don't fail in Windows CoW if the file already exists #​7554.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
npm/node-semver (semver)

v7.6.0

Compare Source

Features
Chores
QuiiBz/sherif (sherif)

v0.8.1

Compare Source

What's Changed

Full Changelog: QuiiBz/sherif@v0.8.0...v0.8.1

v0.8.0

Compare Source

Preserve the JSON indentation on autofix

If you're using a formatter (e.g. Prettier) for your package.json files, you might have noticed that Sherif ignores the indentation and always uses two spaces. This is no longer the case and Sherif will automatically detect and use the correct indentation (2 spaces, 4 spaces, tabs) when autofixing issues!

Yarn nohoist workspaces

We now support the Yarn nohoist workspaces configuration, where the root package.json's workspaces field looks like:

"workspaces": {
  "packages": ["packages/*"],
  "nohoist": []
}

Misc

  • The multiple-dependency-versions will now also report duplicated versions in peerDependencies
  • Reduce the binary size by half

What's Changed

Full Changelog: QuiiBz/sherif@v0.7.0...v0.8.0

toplenboren/simple-git-hooks (simple-git-hooks)

v2.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: toplenboren/simple-git-hooks@2.9.0...2.10.0

privatenumber/tsx (tsx)

v4.7.1

Compare Source

Bug Fixes

This release is also available on:

vercel/turbo (turbo)

v1.12.5

Compare Source

v1.12.4: Turborepo v1.12.4

Compare Source

What's Changed

Docs
create-turbo
@​turbo/repository - ⚠️ Alpha - Expect Breaking Changes

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (rebase) January 26, 2024 17:28
Copy link

netlify bot commented Jan 26, 2024

Deploy Preview for vue-turbo-starter-storybook ready!

Name Link
🔨 Latest commit 4156213
🔍 Latest deploy log https://app.netlify.com/sites/vue-turbo-starter-storybook/deploys/65ea03dddad5100008cb76eb
😎 Deploy Preview https://deploy-preview-1127--vue-turbo-starter-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Jan 26, 2024

Deploy Preview for vue-turbo-starter-nuxt ready!

Name Link
🔨 Latest commit 4156213
🔍 Latest deploy log https://app.netlify.com/sites/vue-turbo-starter-nuxt/deploys/65ea03dd1e177e0008e1a22b
😎 Deploy Preview https://deploy-preview-1127--vue-turbo-starter-nuxt.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/root-packages branch from 6332345 to 13ffc43 Compare January 27, 2024 20:55
@renovate renovate bot changed the title chore(deps): update root dependency vitest to v1.2.2 chore(deps): update root-packages Jan 27, 2024
@renovate renovate bot force-pushed the renovate/root-packages branch 16 times, most recently from ff981fb to 37a69ad Compare February 3, 2024 19:20
@renovate renovate bot force-pushed the renovate/root-packages branch 8 times, most recently from ab3db4b to 58209df Compare February 7, 2024 06:39
@renovate renovate bot force-pushed the renovate/root-packages branch 7 times, most recently from 3c4c86d to 09e45df Compare February 21, 2024 19:50
@renovate renovate bot force-pushed the renovate/root-packages branch 11 times, most recently from 7cac548 to 2719665 Compare February 29, 2024 17:00
@renovate renovate bot force-pushed the renovate/root-packages branch 8 times, most recently from ccfb4f0 to 7af8b62 Compare March 7, 2024 17:34
@renovate renovate bot force-pushed the renovate/root-packages branch from 7af8b62 to 4156213 Compare March 7, 2024 18:13
@renovate renovate bot merged commit 56d3730 into main Mar 7, 2024
7 of 8 checks passed
@renovate renovate bot deleted the renovate/root-packages branch March 7, 2024 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants