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(deps): bump the medusa group with 8 updates #15

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps the medusa group with 8 updates:

Package From To
@medusajs/admin 7.1.8 7.1.12
@medusajs/event-bus-local 1.9.7 1.9.8
@medusajs/event-bus-redis 1.8.10 1.8.12
@medusajs/file-local 1.0.2 1.0.3
@medusajs/medusa 1.18.1 1.20.4
medusa-fulfillment-manual 1.1.38 1.1.40
medusa-interfaces 1.3.7 1.3.9
medusa-payment-stripe 6.0.6 6.0.9

Updates @medusajs/admin from 7.1.8 to 7.1.12

Changelog

Sourced from @​medusajs/admin's changelog.

7.1.12

Patch Changes

7.1.11

Patch Changes

7.1.10

Patch Changes

7.1.9

Patch Changes

Commits

Updates @medusajs/event-bus-local from 1.9.7 to 1.9.8

Changelog

Sourced from @​medusajs/event-bus-local's changelog.

1.9.8

Patch Changes

Commits

Updates @medusajs/event-bus-redis from 1.8.10 to 1.8.12

Changelog

Sourced from @​medusajs/event-bus-redis's changelog.

1.8.12

Patch Changes

1.8.11

Patch Changes

Commits

Updates @medusajs/file-local from 1.0.2 to 1.0.3

Changelog

Sourced from @​medusajs/file-local's changelog.

1.0.3

Patch Changes

  • #6100 4792c5522 Thanks @​shahednasser! - chore(@​medusajs/medusa): add missing constructor to some services fix(@​medusajs/file-local): Fix argument passed to the constructor fix(medusa-file-minio): Fix argument passed to the constructor fix(medusa-file-s3): Fix argument passed to the constructor
Commits

Updates @medusajs/medusa from 1.18.1 to 1.20.4

Release notes

Sourced from @​medusajs/medusa's releases.

v1.20.4

Highlights

Introducing Worker Mode

This release ships Worker Mode, a new runtime mode for Medusa instances.

Worker Mode allows you to start a Medusa instance in a process separate from the main application process. An instance running in Worker Mode is useful for executing long-running or resource-heavy tasks in the background. Those tasks are offloaded to a separate process and will not affect the performance of the main application. Examples of tasks are importing data or updating a search index. While Worker Mode is especially good for resource-intensive tasks, we recommend always starting an instance in this mode if possible.

Worker Mode introduces three new runtime modes for your Medusa instance:

  • server: API Routes are registered, and no workers are started.
  • worker: API Routes are not registered, and workers are started.
  • shared: API routes are registered, and workers are started (the regular runtime mode + default).

The worker mode is configured in medusa-config.js:

// medusa-config.js
const projectConfig = {
  ...,
  database_url: "...",
  worker_mode: "worker",
};

In this release, the Redis Event Bus has been updated to leverage the worker architecture. Instantiating a Medusa instance with worker_mode: "server" and a different one with worker_mode: "worker" will separate background job processing from the public-facing main application, given that the Redis Event Bus module is installed.

Features

... (truncated)

Changelog

Sourced from @​medusajs/medusa's changelog.

1.20.4

Patch Changes

1.20.3

Patch Changes

... (truncated)

Commits
  • 74e17ee chore: Version Packages (#6757)
  • 7bc7ade feat: Create user account (#6819)
  • 509ddf9 feat(medusa): migrate medusa unit tests / plugins integration tests to swc je...
  • 26531c5 feat(dashboard): Draft orders create (#6680)
  • 20132d7 feat(medusa, core-flows): add retrieve stock location endpoint to api-v2 (#6791)
  • deab12e feat(types, medusa, core-flows): add delete-stock-location endpoint to api-v2...
  • 9073d7a feat(core-flows,medusa,types,utils): rename psma to prices (#6796)
  • 68b9812 feat(core-flows, medusa): add create stock location endpoint for api-v2 (#6787)
  • 0deb277 feat: Add successRedirectUrl to auth options (#6792)
  • aa15466 feat(core-flows, types, medusa): Add Update location level endpoint for api-v...
  • Additional commits viewable in compare view

Updates medusa-fulfillment-manual from 1.1.38 to 1.1.40

Changelog

Sourced from medusa-fulfillment-manual's changelog.

1.1.40

Patch Changes

1.1.39

Patch Changes

Commits

Updates medusa-interfaces from 1.3.7 to 1.3.9

Release notes

Sourced from medusa-interfaces's releases.

v1.3.9

Bugs

  • fix(medusa): Create Cart with country code in shipping address (#2197)

Docs

  • docs: add upgrade guide for 1.3.8 (#2170)
  • docs: added returns user guide (#2199)
  • docs: added user guide for draft orders (#2198)
  • docs: added "Manage Order's Fulfillments" user guide (#2196)
  • docs: added user guide for manage payment (#2194)
  • docs: updated strapi docs (#2193)
  • docs: removed prerequisite section and added required/optional tool section (#2192)
  • docs: adjust summary length of endpoints (#2188)
  • docs: added manage order details user guide (#2190)
  • docs: added edit section to manage regions user guide (#2189)
  • docs: added docs for cron job (#2186)
  • docs: Add links in the Payment Architecture Overview documentation to the entities in the Entities Reference (#2174)
  • docs: added missing info for dry run (#2175)
  • docs: fixes for sidebar on small devices (#2161)
  • docs: adjust font size of sidebar items (#2158)
  • docs: added batch jobs concept documentation (#2160)
  • docs: restructured docs sidebar (#2156)

Migrations & Upgrades

Upgrading to v1.3.8

v1.3.8

Features

  • feat(medusa): Product Import API (#1706)
  • feat(medusa): Import API - Sales Channel support (#2124)
  • feat(medusa): Convert SwapService to TypeScript (#2000)

Bugs

  • fix(medusa): Delete ProductOption on Product with Variants (#1846)
  • fix(medusa-plugin-meilisearch): Update Meilisearch dependency (#2140)

Chores

  • chore(medusa): Remove deprecated dependency @​hapi/joi (#2069)

Docs

  • docs: Add request and error examples (#2109)
  • docs: Fix problem in starter URLs (#2128)
  • docs: Rearrange user guide (#2127)
  • docs: Added link to user guide (#2129)
Changelog

Sourced from medusa-interfaces's changelog.

1.3.9

Patch Changes

1.3.8

Patch Changes

Commits

Updates medusa-payment-stripe from 6.0.6 to 6.0.9

Changelog

Sourced from medusa-payment-stripe's changelog.

6.0.9

Patch Changes

6.0.8

Patch Changes

6.0.7

Patch Changes

Commits
  • 74e17ee chore: Version Packages (#6757)
  • 509ddf9 feat(medusa): migrate medusa unit tests / plugins integration tests to swc je...
  • bacfa3e feat(medusa-payment-paypal,medusa-payment-stripe): speed up unit tests in CI ...
  • 26c9bad chore: Version Packages (#6360)
  • ce39b9b feat(payment, payment-stripe): Add Stripe module provider (#6311)
  • 47272bf chore: Version Packages (#5880)
  • 125879a fix(medusa-payment-stripe): change webhook environment variables to plugin op...
  • 99a4f94 feat(medusa-payment-stripe): Add delay to Stripe webhook (#5838)
  • 7f62ab1 fix(medusa-payment-stripe): Fix error handling (#5991)
  • 946db51 chore(): Add engines to all package.json if needed (#5812)
  • See full diff 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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2024
Copy link

vercel bot commented Apr 1, 2024

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

Name Status Preview Comments Updated (UTC)
threshold-backend ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 26, 2024 5:51pm

Bumps the medusa group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@medusajs/admin](https://github.com/medusajs/medusa/tree/HEAD/packages/admin) | `7.1.8` | `7.1.12` |
| [@medusajs/event-bus-local](https://github.com/medusajs/medusa/tree/HEAD/packages/event-bus-local) | `1.9.7` | `1.9.8` |
| [@medusajs/event-bus-redis](https://github.com/medusajs/medusa/tree/HEAD/packages/event-bus-redis) | `1.8.10` | `1.8.12` |
| [@medusajs/file-local](https://github.com/medusajs/medusa/tree/HEAD/packages/medusa-file-local) | `1.0.2` | `1.0.3` |
| [@medusajs/medusa](https://github.com/medusajs/medusa/tree/HEAD/packages/medusa) | `1.18.1` | `1.20.4` |
| [medusa-fulfillment-manual](https://github.com/medusajs/medusa/tree/HEAD/packages/medusa-fulfillment-manual) | `1.1.38` | `1.1.40` |
| [medusa-interfaces](https://github.com/medusajs/medusa/tree/HEAD/packages/medusa-interfaces) | `1.3.7` | `1.3.9` |
| [medusa-payment-stripe](https://github.com/medusajs/medusa/tree/HEAD/packages/medusa-payment-stripe) | `6.0.6` | `6.0.9` |


Updates `@medusajs/admin` from 7.1.8 to 7.1.12
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/admin/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/@medusajs/[email protected]/packages/admin)

Updates `@medusajs/event-bus-local` from 1.9.7 to 1.9.8
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/event-bus-local/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/@medusajs/[email protected]/packages/event-bus-local)

Updates `@medusajs/event-bus-redis` from 1.8.10 to 1.8.12
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/event-bus-redis/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/@medusajs/[email protected]/packages/event-bus-redis)

Updates `@medusajs/file-local` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/medusa-file-local/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/@medusajs/[email protected]/packages/medusa-file-local)

Updates `@medusajs/medusa` from 1.18.1 to 1.20.4
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/medusa/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/@medusajs/[email protected]/packages/medusa)

Updates `medusa-fulfillment-manual` from 1.1.38 to 1.1.40
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/medusa-fulfillment-manual/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/[email protected]/packages/medusa-fulfillment-manual)

Updates `medusa-interfaces` from 1.3.7 to 1.3.9
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/medusa-interfaces/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/[email protected]/packages/medusa-interfaces)

Updates `medusa-payment-stripe` from 6.0.6 to 6.0.9
- [Release notes](https://github.com/medusajs/medusa/releases)
- [Changelog](https://github.com/medusajs/medusa/blob/develop/packages/medusa-payment-stripe/CHANGELOG.md)
- [Commits](https://github.com/medusajs/medusa/commits/[email protected]/packages/medusa-payment-stripe)

---
updated-dependencies:
- dependency-name: "@medusajs/admin"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: "@medusajs/event-bus-local"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: "@medusajs/event-bus-redis"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: "@medusajs/file-local"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: "@medusajs/medusa"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: medusa
- dependency-name: medusa-fulfillment-manual
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: medusa-interfaces
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
- dependency-name: medusa-payment-stripe
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: medusa
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/medusa-e3494814b7 branch from 0da69c5 to a5aa93e Compare April 26, 2024 17:50
Copy link
Author

dependabot bot commented on behalf of github May 2, 2024

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

@dependabot dependabot bot closed this May 2, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/medusa-e3494814b7 branch May 2, 2024 00:00
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