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

build: update all non-major dependencies #2044

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented May 3, 2024

This PR contains the following updates:

Package Type Update Change
@codemirror/lint devDependencies patch 6.7.0 -> 6.7.1
@google-cloud/firestore devDependencies minor 7.6.0 -> 7.7.0
@google-cloud/storage devDependencies minor 7.10.2 -> 7.11.0
@lezer/javascript devDependencies patch 1.4.15 -> 1.4.16
@microsoft/api-extractor (source) dependencies patch 7.43.1 -> 7.43.7
@types/diff (source) devDependencies patch 5.2.0 -> 5.2.1
actions/checkout action patch v4.1.4 -> v4.1.6
firebase (source, changelog) devDependencies minor 10.11.1 -> 10.12.0
firebase-functions devDependencies patch 5.0.0 -> 5.0.1
firebase-tools devDependencies minor 13.8.0 -> 13.9.0
github/codeql-action action patch v3.25.3 -> v3.25.5
inquirer (source) devDependencies patch 9.2.20 -> 9.2.21
mermaid devDependencies patch 10.9.0 -> 10.9.1
playwright-core (source) devDependencies minor 1.43.1 -> 1.44.0
preact (source) dependencies minor 10.21.0 -> 10.22.0
protobufjs (source) dependencies minor 7.2.6 -> 7.3.0
protobufjs (source) devDependencies minor 7.2.6 -> 7.3.0
renovate (source) dependencies minor 37.334.4 -> 37.368.3
selenium-webdriver (source) dependencies minor 4.20.0 -> 4.21.0
semver devDependencies patch 7.6.0 -> 7.6.2
zone.js (source, changelog) devDependencies patch 0.14.5 -> 0.14.6

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

codemirror/lint (@​codemirror/lint)

v6.7.1

Compare Source

Bug fixes

Don't perform an additional superfluous timed lint run after forceLinting has been called.

googleapis/nodejs-firestore (@​google-cloud/firestore)

v7.7.0

Compare Source

Features
  • Add several fields to manage state of database encryption update (5811492)
  • Lazy-started transactions (#​2017) (2c726a1)
Bug Fixes
googleapis/nodejs-storage (@​google-cloud/storage)

v7.11.0

Compare Source

Features
  • Add ability to enable hierarchical namespace on buckets (#​2453) (4e5726f)
lezer-parser/javascript (@​lezer/javascript)

v1.4.16

Compare Source

Bug fixes

Don't consume ?. tokens when followed by a digit.

Support type arguments on non-call expressions.

microsoft/rushstack (@​microsoft/api-extractor)

v7.43.7

Compare Source

Thu, 16 May 2024 15:10:22 GMT

Version update only

v7.43.6

Compare Source

Wed, 15 May 2024 23:42:58 GMT

Version update only

v7.43.5

Compare Source

Wed, 15 May 2024 06:04:17 GMT

Version update only

v7.43.4

Compare Source

Fri, 10 May 2024 05:33:33 GMT

Version update only

v7.43.3

Compare Source

Wed, 08 May 2024 22:23:50 GMT

Version update only

v7.43.2

Compare Source

Mon, 06 May 2024 15:11:04 GMT

Version update only

actions/checkout (actions/checkout)

v4.1.6

Compare Source

v4.1.5

Compare Source

firebase/firebase-js-sdk (firebase)

v10.12.0

Compare Source

firebase/firebase-functions (firebase-functions)

v5.0.1

Compare Source

  • Fix App fetching for named firestore instances (#​1562).
firebase/firebase-tools (firebase-tools)

v13.9.0

Compare Source

v13.8.3

Compare Source

  • Internal bug fixes.

v13.8.2

Compare Source

  • Release Firestore Emulator version 1.19.6 which fixes a few Datastore Mode bugs regarding transactions (#​7132).

v13.8.1

Compare Source

  • Temporarily disable performance improvements for second gen functions deploy to avoid a backend issue.
  • Increased the timeout for waiting for emulators to start to 60s. (#​7091)
  • Fixes infinite loop when trying to create a Hosting site.
  • Fix copied functions dist dir files for Next.js when source config ends with slash (#​7099)
github/codeql-action (github/codeql-action)

v3.25.5

Compare Source

v3.25.4

Compare Source

SBoudrias/Inquirer.js (inquirer)

v9.2.21

Compare Source

mermaid-js/mermaid (mermaid)

v10.9.1

Compare Source

What's Changed

BugFixes

  • Cleaning of labels in Block diagram by @​knsv

Docs

New Contributors

Full Changelog: mermaid-js/mermaid@v10.9.0...v10.9.1

microsoft/playwright (playwright-core)

v1.44.0

Compare Source

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData
    });
  • expect(callback).toPass({ intervals }) can now be configured by expect.toPass.inervals option globally in testConfig.expect or per project in testProject.expect.

  • expect(page).toHaveURL(url) now supports ignoreCase option.

  • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

Reporter API

  • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
  • Blob reporter now allows overriding report file path with a single option outputFile. The same option can also be specified as PLAYWRIGHT_BLOB_OUTPUT_FILE environment variable that might be more convenient on CI/CD.
  • JUnit reporter now supports includeProjectInTestName option.

Command line

  • --last-failed CLI option for running only tests that failed in the previous run.

    First run all tests:

    $ npx playwright test
    
    Running 103 tests using 5 workers
    ...
    2 failed
      [chromium] › my-test.spec.ts:8:5 › two ─────────────────────────────────────────────────────────
      [chromium] › my-test.spec.ts:13:5 › three ──────────────────────────────────────────────────────
    101 passed (30.0s)

    Now fix the failing tests and run Playwright again with --last-failed option:

    $ npx playwright test --last-failed
    
    Running 2 tests using 2 workers
      2 passed (1.2s)

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124
preactjs/preact (preact)

v10.22.0

Compare Source

Features

Types

Maintenance

Fixes

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker comp: build renovate managed labels May 3, 2024
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from e4526e9 to 96155c7 Compare May 3, 2024 06:05
@angular-robot angular-robot changed the title build: update dependency renovate to v37.337.0 build: update dependency renovate to v37.338.0 May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 96155c7 to 108805f Compare May 3, 2024 08:06
@angular-robot angular-robot changed the title build: update dependency renovate to v37.338.0 build: update dependency renovate to v37.339.0 May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 108805f to d363c76 Compare May 3, 2024 12:06
@angular-robot angular-robot changed the title build: update dependency renovate to v37.339.0 build: update dependency renovate to v37.340.0 May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from d363c76 to d14a90b Compare May 3, 2024 13:06
@angular-robot angular-robot changed the title build: update dependency renovate to v37.340.0 build: update dependency renovate to v37.340.1 May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from d14a90b to df8514c Compare May 3, 2024 14:06
@angular-robot angular-robot changed the title build: update dependency renovate to v37.340.1 build: update dependency renovate to v37.340.3 May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from df8514c to 66d6153 Compare May 3, 2024 16:06
@angular-robot angular-robot changed the title build: update dependency renovate to v37.340.3 build: update all non-major dependencies May 3, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 14 times, most recently from f9ec945 to e5993eb Compare May 6, 2024 10:05
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 27 times, most recently from 666a672 to 06d6bd5 Compare May 17, 2024 13:06
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 06d6bd5 to 8b545c9 Compare May 17, 2024 14:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project comp: build renovate managed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants