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): bump the development-dependencies group across 1 directory with 18 updates #120

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the development-dependencies group with 18 updates in the / directory:

Package From To
commitizen 4.3.0 4.3.1
dotenv-cli 7.4.2 7.4.4
husky 9.1.6 9.1.7
turbo 2.1.2 2.3.3
vitest 2.0.5 2.1.8
@playwright/test 1.46.1 1.49.1
@parcel/watcher 2.4.1 2.5.0
@types/lodash 4.17.7 4.17.13
pino 9.3.2 9.5.0
postcss 8.4.41 8.4.49
semantic-release 24.1.3 24.2.0
@graphql-codegen/cli 5.0.2 5.0.3
@graphql-codegen/typed-document-node 5.0.9 5.0.12
@graphql-codegen/typescript 4.0.9 4.1.2
@graphql-codegen/typescript-operations 4.2.3 4.4.0
eslint-plugin-typescript-sort-keys 3.2.0 3.3.0
graphql 16.9.0 16.10.0
ts-essentials 10.0.2 10.0.3

Updates commitizen from 4.3.0 to 4.3.1

Release notes

Sourced from commitizen's releases.

v4.3.1

4.3.1 (2024-09-27)

Bug Fixes

Commits

Updates dotenv-cli from 7.4.2 to 7.4.4

Release notes

Sourced from dotenv-cli's releases.

Fix security issue

entropitor/dotenv-cli#119

Forward signals to child process

entropitor/dotenv-cli#107

Commits

Updates husky from 9.1.6 to 9.1.7

Release notes

Sourced from husky's releases.

v9.1.7

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

Commits

Updates turbo from 2.1.2 to 2.3.3

Release notes

Sourced from turbo's releases.

Turborepo v2.3.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.3.2...v2.3.3

Turborepo v2.3.2

What's Changed

Docs

eslint

@​turbo/repository

Examples

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.3.1...v2.3.2

... (truncated)

Commits
  • 81c4e43 publish 2.3.3 to registry
  • 755f14c fix: correct TUI vim binds direction (#9529)
  • 95129e3 release(turborepo): 2.3.2 (#9520)
  • 6fa050a docs: update ESLint documentation with ESLint v9 (#9515)
  • 2dd46cc chore(examples): Remove spare dependencies from basic example. (#9516)
  • cf68935 docs: fix formatting on /repo/docs/getting-started/installation (#9514)
  • 4f5f048 feat: sibling tasks (#9504)
  • e3fcdee fix(examples): remove --filter from with-docker example. (#9513)
  • b00eea2 chore: update basic example to ESLint v9 and Flat Configurations. (#9501)
  • cbb85b3 chore: add a comment to GitHub release flow types. (#9506)
  • Additional commits viewable in compare view

Updates vitest from 2.0.5 to 2.1.8

Release notes

Sourced from vitest's releases.

v2.1.8

   🐞 Bug Fixes

    View changes on GitHub

v2.1.7

   🐞 Bug Fixes

  • Revert support for Vite 6  -  by @​sheremet-va (fbe5c)
    • This introduced some breaking changes (vitest-dev/vitest#6992). We will enable support for it later. In the meantime, you can still use pnpm.overrides or yarn resolutions to override the vite version in the vitest package - the APIs are compatible.
    View changes on GitHub

v2.1.6

🚀 Features

  • Support Vite 6
    View changes on GitHub

v2.1.5

   🐞 Bug Fixes

   🏎 Performance

... (truncated)

Commits
  • d69cc75 bump: 2.1.8
  • 92f7a2a fix: support Node 21
  • 81ed45b chore: release v2.1.7
  • fbe5c39 fix: revert support for Vite 6
  • b936702 bump: 2.1.6
  • 32f23b9 chore: release v2.1.5
  • 417bdb4 fix(browser): init browsers eagerly when tests are running (#6876)
  • 93b67c2 fix: throw an error and a warning if .poll, .element, .rejects/`.resolv...
  • 9a0c93d fix(browser): stop the browser rpc when the pool is closed (#6858)
  • 251893b chore: set resolve.mainFields and resolve.conditions for SSR environment ...
  • Additional commits viewable in compare view

Updates @playwright/test from 1.46.1 to 1.49.1

Release notes

Sourced from @​playwright/test's releases.

v1.49.1

Highlights

microsoft/playwright#33802 - [Bug]: Codegen's Clear button doesn't work if not recording microsoft/playwright#33806 - [Bug]: playwright hangs while waiting for pending navigations microsoft/playwright#33787 - [Bug]: VSC extension isn't capturing all entered text microsoft/playwright#33788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actions microsoft/playwright#33772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attribut microsoft/playwright#33791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snapshot microsoft/playwright#33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is not valid microsoft/playwright#33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

... (truncated)

Commits
  • 88bc8af chore: mark v1.49.1 (#33921)
  • 9e855d5 cherry-pick(#33821): fix(recorder): allow clearing when recording is disabled...
  • 9365eb5 cherry-pick(#33834): fix: do not stall waiting for pending navigations after ...
  • f92b233 cherry-pick(#33822): fix(codegen): do not reset current tool upon clearing hi...
  • 008722b cherry-pick(#33797): fix(trace): in indexTree check isVisible before addi...
  • 1dc8b3c cherry-pick(#33746): chore: pin typescript while vue-tsc is broken
  • fbc770c cherry-pick(#33793): fix(aria): escape even more yaml (#33795)
  • 1046fe0 cherry-pick(#33753): docs: update extensions doc for new headless
  • 1781bf3 cherry-pick(#33706): docs: release notes for languages v1.49
  • b52a210 cherry-pick(#33712): docs(python): add LocatorAssertions.NotToMatchAriaSnapshot
  • Additional commits viewable in compare view

Updates @parcel/watcher from 2.4.1 to 2.5.0

Release notes

Sourced from @​parcel/watcher's releases.

v2.5.0

Added

  • Support 32-bit arm musl platform
  • Support npm --build-from-source flag to optionally build from source instead of using prebuilt packages. Can be used in conjunction with --no-optional to prevent installing platform-specific dependencies.

Fixed

  • Fix use after free errors (#177)
  • Fix deadlock between Watcher and Debounce threads (#189)
  • Avoid open() calls on stat() failures on macOS to prevent security dialogs (#186)
Commits

Updates @types/lodash from 4.17.7 to 4.17.13

Commits

Updates pino from 9.3.2 to 9.5.0

Release notes

Sourced from pino's releases.

v9.5.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.4.0...v9.5.0

v9.4.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.3.2...v9.4.0

Commits
  • bb68e01 Bumped v9.5.0
  • 84bbd35 fix: Ensure silent log level is respected with browser.transmit option (#2052)
  • 5bc0a92 feature: allow sync flag to be passed to ThreadStream for synchronous… (#2063)
  • f220965 docs -> #2061 Alphabetize transport list and reorder sections in documentatio...
  • d32fd55 docs->added pino-hana transport (#2059)
  • 7cff45a build(deps-dev): bump @​yao-pkg/pkg from 5.13.0 to 5.15.0 (#2050)
  • cd09737 doc: Add Transport @​macfja/pino-fingers-crossed (#2047)
  • 0ab1bdd Update transports.md (#2041)
  • de5a697 build(deps): bump pino-abstract-transport from 1.2.0 to 2.0.0 (#2043)
  • eef2f87 build(deps-dev): bump @​yao-pkg/pkg from 5.12.1 to 5.13.0 (#2042)
  • Additional commits viewable in compare view

Updates postcss from 8.4.41 to 8.4.49

Release notes

Sourced from postcss's releases.

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).
Changelog

Sourced from postcss's changelog.

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).
Commits

Updates semantic-release from 24.1.3 to 24.2.0

Release notes

Sourced from semantic-release's releases.

v24.2.0

24.2.0 (2024-10-25)

Features

  • clarify branch existence requirement in error messages (#3462) (05a2ea9)
Commits
  • 05a2ea9 feat: clarify branch existence requirement in error messages (#3462)
  • 8940f32 ci(action): update actions/setup-node action to v4.1.0 (#3489)
  • 789ac43 chore(deps): update dependency publint to v0.2.12 (#3488)
  • 3ba76ae ci(action): update actions/checkout action to v4.2.2 (#3486)
  • 8612ff1 chore(deps): update dependency npm-run-all2 to v7.0.1 (#3487)
  • e29a892 ci(action): update github/codeql-action action to v3.27.0 (#3485)
  • 98d606e chore(deps): update dependency npm-run-all2 to v7 (#3483)
  • 55938c3 docs(plugins): community plugin semantic-release-kaniko (#3450)
  • 2b4c86c chore(deps): lock file maintenance (#3481)
  • 41c9502 ci(action): update github/codeql-action action to v3.26.13 (#3424)
  • See full diff in compare view

Updates @graphql-codegen/cli from 5.0.2 to 5.0.3

Changelog

Sourced from @​graphql-codegen/cli's changelog.

5.0.3

Patch Changes

Commits
  • effc3bc chore(release): update monorepo packages versions (#10076)
  • afa2dd1 chore(deps): update dependency bob-the-bundler to v7 (#9431)
  • 8bb34e7 chore(deps): update dependency typescript to v5.5.4 (#10069)
  • 5fb302c fix(deps): update all non-major dependencies (#10070)
  • e0092b5 Bump whatwg-node and graphql-config
  • b9006ec Cleanup
  • f8b637a chore(deps): update dependency @​types/mkdirp to v2 (#9948)
  • 7e1e5ab chore(deps): update graphql-tools (#9965)
  • fcdefb6 Add ability to ignore tests to build example script, ignore failed example-re...
  • b830259 chore(deps): update dependency @​types/is-glob to v4.0.4 (#9859)
  • Additional commits viewable in compare view

Updates @graphql-codegen/typed-document-node from 5.0.9 to 5.0.12

Release notes

Sourced from @​graphql-codegen/typed-document-node's releases.

Release 2022-08-04T13:12:01.667Z

@​graphql-codegen/graphql-modules-preset@​2.5.0

Minor Changes

Release 2022-08-04T13:05:23.977Z

No release notes provided.

Release 2022-08-04T13:02:57.827Z

No release notes provided.

Changelog

Sourced from @​graphql-codegen/typed-document-node's changelog.

5.0.12

Patch Changes

5.0.11

Patch Changes

5.0.10

Patch Changes

  • Updated dependencies [3f4f546]:
    • @​graphql-codegen/visitor-plugin-common@​5.4.0
Commits
  • 839b6f0 chore(release): update monorepo packages versions (#10188)
  • 876ea0c chore(release): update monorepo packages versions (#10165)
  • c7af639 Add |undefined in the TypedDocumentString constructor to make it work with --...
  • effc3bc chore(release): update monorepo packages versions (#10076)
  • afa2dd1 chore(deps): update dependency bob-the-bundler to v7 (#9431)
  • See full diff in compare view

Updates @graphql-codegen/typescript from 4.0.9 to 4.1.2

Changelog

Sourced from @​graphql-codegen/typescript's changelog.

4.1.2

Patch Changes

4.1.1

Patch Changes

  • Updated dependencies [55a1e9e, a235051]:
    • @​graphql-codegen/visitor-plugin-common@​5.5.0
    • @​graphql-codegen/plugin-helpers@​5.1.0

4.1.0

Minor Changes

  • #10077 3f4f546 Thanks @​eddeee888! - Extend config.avoidOptions to support query, mutation and subscription

    Previously, config.avoidOpt...

    Description has been truncated

…ry with 18 updates

Bumps the development-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [commitizen](https://github.com/commitizen/cz-cli) | `4.3.0` | `4.3.1` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `7.4.2` | `7.4.4` |
| [husky](https://github.com/typicode/husky) | `9.1.6` | `9.1.7` |
| [turbo](https://github.com/vercel/turborepo) | `2.1.2` | `2.3.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.5` | `2.1.8` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.46.1` | `1.49.1` |
| [@parcel/watcher](https://github.com/parcel-bundler/watcher) | `2.4.1` | `2.5.0` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.7` | `4.17.13` |
| [pino](https://github.com/pinojs/pino) | `9.3.2` | `9.5.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.41` | `8.4.49` |
| [semantic-release](https://github.com/semantic-release/semantic-release) | `24.1.3` | `24.2.0` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `5.0.2` | `5.0.3` |
| [@graphql-codegen/typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node) | `5.0.9` | `5.0.12` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `4.0.9` | `4.1.2` |
| [@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations) | `4.2.3` | `4.4.0` |
| [eslint-plugin-typescript-sort-keys](https://github.com/infctr/eslint-plugin-typescript-sort-keys) | `3.2.0` | `3.3.0` |
| [graphql](https://github.com/graphql/graphql-js) | `16.9.0` | `16.10.0` |
| [ts-essentials](https://github.com/ts-essentials/ts-essentials) | `10.0.2` | `10.0.3` |



Updates `commitizen` from 4.3.0 to 4.3.1
- [Release notes](https://github.com/commitizen/cz-cli/releases)
- [Commits](commitizen/cz-cli@v4.3.0...v4.3.1)

Updates `dotenv-cli` from 7.4.2 to 7.4.4
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v7.4.2...v7.4.4)

Updates `husky` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.6...v9.1.7)

Updates `turbo` from 2.1.2 to 2.3.3
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.1.2...v2.3.3)

Updates `vitest` from 2.0.5 to 2.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/vitest)

Updates `@playwright/test` from 1.46.1 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.46.1...v1.49.1)

Updates `@parcel/watcher` from 2.4.1 to 2.5.0
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/commits/v2.5.0)

Updates `@types/lodash` from 4.17.7 to 4.17.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `pino` from 9.3.2 to 9.5.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.3.2...v9.5.0)

Updates `postcss` from 8.4.41 to 8.4.49
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.41...8.4.49)

Updates `semantic-release` from 24.1.3 to 24.2.0
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v24.1.3...v24.2.0)

Updates `@graphql-codegen/cli` from 5.0.2 to 5.0.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

Updates `@graphql-codegen/typed-document-node` from 5.0.9 to 5.0.12
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typed-document-node/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typed-document-node)

Updates `@graphql-codegen/typescript` from 4.0.9 to 4.1.2
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-operations` from 4.2.3 to 4.4.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/operations)

Updates `eslint-plugin-typescript-sort-keys` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/infctr/eslint-plugin-typescript-sort-keys/releases)
- [Changelog](https://github.com/infctr/eslint-plugin-typescript-sort-keys/blob/master/CHANGELOG.md)
- [Commits](infctr/eslint-plugin-typescript-sort-keys@v3.2.0...v3.3.0)

Updates `graphql` from 16.9.0 to 16.10.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.9.0...v16.10.0)

Updates `ts-essentials` from 10.0.2 to 10.0.3
- [Release notes](https://github.com/ts-essentials/ts-essentials/releases)
- [Changelog](https://github.com/ts-essentials/ts-essentials/blob/master/CHANGELOG.md)
- [Commits](ts-essentials/ts-essentials@v10.0.2...v10.0.3)

---
updated-dependencies:
- dependency-name: commitizen
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: dotenv-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@parcel/watcher"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pino
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: semantic-release
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@graphql-codegen/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@graphql-codegen/typed-document-node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@graphql-codegen/typescript"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@graphql-codegen/typescript-operations"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-typescript-sort-keys
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: graphql
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ts-essentials
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 16, 2024
Copy link

vercel bot commented Dec 16, 2024

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

Name Status Preview Comments Updated (UTC)
nimara-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 16, 2024 11:57am
nimara-ecommerce ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 16, 2024 11:57am

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants