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 all non-major dependencies (minor) #144

Merged
merged 1 commit into from
Oct 19, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 30, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@playwright/test (source) 1.38.1 -> 1.39.0 age adoption passing confidence devDependencies minor
@vueuse/nuxt (source) ^10.4.1 -> ^10.5.0 age adoption passing confidence devDependencies minor
mcr.microsoft.com/playwright v1.38.1-focal -> v1.39.0-focal age adoption passing confidence container minor
pnpm (source) 8.6.12 -> 8.9.2 age adoption passing confidence packageManager minor

Release Notes

microsoft/playwright (@​playwright/test)

v1.39.0

Compare Source

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@​playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => {
  await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@​playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@​playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
export const expect = mergeExpects(dbExpect, a11yExpect);
import { test, expect } from './fixtures';

test('passes', async ({ page, database }) => {
  await expect(database).toHaveDatabaseUser('admin');
  await expect(page).toPassA11yAudit();
});

Hide implementation details: box test steps

You can mark a test.step() as "boxed" so that errors inside it point to the step call site.

async function login(page) {
  await test.step('login', async () => {
    // ...
  }, { box: true });  // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
  ... error details omitted ...

  14 |   await page.goto('https://github.com/login');
> 15 |   await login(page);
     |         ^
  16 | });

See test.step() documentation for a full example.

New APIs

Browser Versions

  • Chromium 119.0.6045.9
  • Mozilla Firefox 118.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 118
  • Microsoft Edge 118
vueuse/vueuse (@​vueuse/nuxt)

v10.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
pnpm/pnpm (pnpm)

v8.9.2

Compare Source

Patch Changes

  • Don't use reflink on Windows #​7186.
  • Do not run node-gyp rebuild if preinstall lifecycle script is present #​7206.

Our Gold Sponsors

Our Silver Sponsors

v8.9.1

Compare Source

Patch Changes

  • Optimize selection result output of pnpm update --interactive 7109
  • When shared-workspace-lockfile is set to false, read the pnpm settings from package.json files that are nested. This was broken in pnpm v8.9.0 #​7184.
  • Fix file cloning to node_modules on Windows Dev Drives #​7186. This is a fix to a regression that was shipped with v8.9.0.
  • pnpm dlx should ignore any settings that are in a package.json file found in the current working directory #​7198.

Our Gold Sponsors

Our Silver Sponsors

v8.9.0

Compare Source

Minor Changes

  • 🚀Performance improvement: Use reflinks instead of hard links by default on macOS and Windows Dev Drives #​5001.

  • The list of packages that are allowed to run installation scripts now may be provided in a separate configuration file. The path to the file should be specified via the pnpm.onlyBuiltDependenciesFile field in package.json. For instance:

    {
      "dependencies": {
        "@​my-org/policy": "1.0.0"
      }
      "pnpm": {
        "onlyBuiltDependenciesFile": "node_modules/@​my-org/policy/allow-build.json"
      }
    }

    In the example above, the list is loaded from a dependency. The JSON file with the list should contain an array of package names. For instance:

    ["esbuild", "@​reflink/reflink"]

    With the above list, only esbuild and @reflink/reflink will be allowed to run scripts during installation.

    Related issue: #​7137.

  • Add disallow-workspace-cycles option to error instead of warn about cyclic dependencies

  • Allow env rm to remove multiple node versions at once, and introduce env add for installing node versions without setting as default #​7155.

Patch Changes

  • Fix memory error in pnpm why when the dependencies tree is too big, the command will now prune the tree to just 10 end leafs and now supports --depth argument #​7122.
  • Use neverBuiltDependencies and onlyBuiltDependencies from the root package.json of the workspace, when shared-workspace-lockfile is set to false #​7141.
  • Optimize peers resolution to avoid out-of-memory exceptions in some rare cases, when there are too many circular dependencies and peer dependencies #​7149.
  • Instead of pnpm.overrides replacing resolutions, the two are now merged. This is intended to make it easier to migrate from Yarn by allowing one to keep using resolutions for Yarn, but adding additional changes just for pnpm using pnpm.overrides.

Our Gold Sponsors

Our Silver Sponsors

v8.8.0

Compare Source

Minor Changes

  • Add --reporter-hide-prefix option for run command to hide project name as prefix for lifecycle log outputs of running scripts #​7061.

Patch Changes

  • Pass through the --ignore-scripts command to install, when running pnpm dedupe --ignore-scripts #​7102.
  • Throw meaningful error for config sub commands#​7106.
  • When the node-linker is set to hoisted, the package.json files of the existing dependencies inside node_modules will be checked to verify their actual versions. The data in the node_modules/.modules.yaml and node_modules/.pnpm/lock.yaml may not be fully reliable, as an installation may fail after changes to dependencies were made but before those state files were updated #​7107.
  • Don't update git-hosted dependencies when adding an unrelated dependency #​7008.

Our Gold Sponsors

Our Silver Sponsors

v8.7.6

Compare Source

Patch Changes

  • Don't run the prepublishOnly scripts of git-hosted dependencies #​7026.
  • Fix a bug in which use-node-version or node-version isn't passed down to checkEngine when using pnpm workspace, resulting in an error #​6981.
  • Don't print out each deprecated subdependency separately with its deprecation message. Just print out a summary of all the deprecated subdependencies #​6707.
  • Fixed an ENOENT error that was sometimes happening during install with "hoisted" node_modules #​6756.

Our Gold Sponsors

Our Silver Sponsors

v8.7.5

Compare Source

Patch Changes

  • Improve performance of installation by using a worker for creating the symlinks inside node_modules/.pnpm #​7069.
  • Tarballs that have hard links are now unpacked successfully. This fixes a regression introduced in v8.7.0, which was shipped with our new in-house tarball parser #​7062.

Our Gold Sponsors

Our Silver Sponsors

v8.7.4

Compare Source

Patch Changes

  • Fix a bug causing the pnpm server to hang if a tarball worker was requested while another worker was exiting #​7041.
  • Fixes a regression published with pnpm v8.7.3. Don't hang while reading package.json from the content-addressable store #​7051.
  • Allow create scoped package with preferred version. #​7053
  • Reverting a change shipped in v8.7 that caused issues with the pnpm deploy command and "injected dependencies" #​6943.

Our Gold Sponsors

Our Silver Sponsors

v8.7.3

Compare Source

Patch Changes

  • Fix a bug causing errors to be printed as "Cannot read properties of undefined (reading 'code')" instead of the underlying reason when using the pnpm store server #​7032

Our Gold Sponsors

Our Silver Sponsors

v8.7.2

Compare Source

v8.7.1

Compare Source

Patch Changes

  • Fixed an issue with extracting some old versions of tarballs #​6991.
  • Side-effects cache will now be leveraged when running install in a workspace that uses dedicated lockfiles for each project #​6890.
  • Reduce concurrency in the pnpm -r publish command #​6968.
  • Improved the pnpm update --interactive output by grouping dependencies by type. Additionally, a new column has been added with links to the documentation for outdated packages #​6978.

Our Gold Sponsors

Our Silver Sponsors

v8.7.0

Compare Source

Minor Changes

  • Improve performance of installation by using a worker pool for extracting packages and writing them to the content-addressable store #​6850
  • The default value of the resolution-mode setting is changed to highest. This setting was changed to lowest-direct in v8.0.0 and some users were not happy with the change. A twitter poll concluded that most of the users want the old behaviour (resolution-mode set to highest by default). This is a semi-breaking change but should

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

@vercel
Copy link

vercel bot commented Jul 30, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nuxt-new ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 16, 2023 11:02am

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d47fb77 to 18b5dc4 Compare July 30, 2023 22:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 18b5dc4 to 558a71a Compare July 31, 2023 10:37
@renovate renovate bot changed the title chore(deps): update devdependency @vueuse/nuxt to ^10.3.0 chore(deps): update all non-major dependencies (minor) Aug 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 558a71a to b812ee4 Compare August 11, 2023 00:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b812ee4 to 3af82e9 Compare August 17, 2023 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3af82e9 to 053363d Compare August 24, 2023 17:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 053363d to 8ec5467 Compare August 25, 2023 18:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ec5467 to dd3f8fe Compare August 26, 2023 23:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dd3f8fe to 22b71c8 Compare August 28, 2023 04:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22b71c8 to 9be974e Compare August 31, 2023 17:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9be974e to 8ec96fa Compare September 4, 2023 16:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ec96fa to cfb312c Compare September 4, 2023 18:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cfb312c to d77e352 Compare September 6, 2023 01:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d77e352 to 40c78b0 Compare September 11, 2023 13:45
@vercel vercel bot temporarily deployed to Preview October 9, 2023 11:44 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 26eae0e to 638f18a Compare October 9, 2023 12:17
@vercel vercel bot temporarily deployed to Preview October 9, 2023 12:23 Inactive
@vercel vercel bot temporarily deployed to Preview October 9, 2023 12:23 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 638f18a to 55eef1c Compare October 12, 2023 00:22
@vercel vercel bot temporarily deployed to Preview October 12, 2023 00:23 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 55eef1c to 43da701 Compare October 12, 2023 04:45
@vercel vercel bot temporarily deployed to Preview October 12, 2023 04:46 Inactive
@vercel vercel bot temporarily deployed to Preview October 12, 2023 04:46 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 43da701 to 193f92b Compare October 15, 2023 16:46
@vercel vercel bot temporarily deployed to Preview October 15, 2023 16:47 Inactive
@vercel vercel bot temporarily deployed to Preview October 15, 2023 16:47 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 193f92b to be1171a Compare October 16, 2023 01:11
@vercel vercel bot temporarily deployed to Preview October 16, 2023 01:12 Inactive
@vercel vercel bot temporarily deployed to Preview October 16, 2023 01:12 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from be1171a to 4b669f8 Compare October 16, 2023 11:01
@vercel vercel bot temporarily deployed to Preview October 16, 2023 11:02 Inactive
@vercel vercel bot temporarily deployed to Preview October 16, 2023 11:02 Inactive
@danielroe danielroe merged commit 71ebe9f into main Oct 19, 2023
@danielroe danielroe deleted the renovate/all-minor-patch branch October 19, 2023 18:53
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.

1 participant