chore: Version Packages (#4711)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2023-08-17 17:17:41 +02:00
committed by GitHub
co-authored by github-actions[bot] <github-actions[bot]@users.noreply.github.com>
parent 1e8d044b16
commit db36258885
53 changed files with 260 additions and 158 deletions
+23
View File
@@ -1,5 +1,28 @@
# @medusajs/workflows
## 0.2.0
### Minor Changes
- [#4697](https://github.com/medusajs/medusa/pull/4697) [`c0ca00290`](https://github.com/medusajs/medusa/commit/c0ca00290106fbdc8e15077bc8d1c3eafbef59f2) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Add pipe onComplete callback and preparation function to exportsWorkflow
### Patch Changes
- [#4703](https://github.com/medusajs/medusa/pull/4703) [`8ae31aff4`](https://github.com/medusajs/medusa/commit/8ae31aff4b23c980a2ecc8300a75798c263f0298) Thanks [@adrien2p](https://github.com/adrien2p)! - feat(workflows): list product should be reusable in different context
- [#4716](https://github.com/medusajs/medusa/pull/4716) [`ac866ebb5`](https://github.com/medusajs/medusa/commit/ac866ebb5197ee694dda91824b501109012a3dd1) Thanks [@adrien2p](https://github.com/adrien2p)! - test(): Test the create product workflow compensation
fix(orchestration): Fix the transaction state after compensating with no compensation steps in the middle
chore(workflows): Export and naming
feat(types): Update product workflow input types
feat(medusa): Update product workflow usage and cleanup endpoint
- [#4685](https://github.com/medusajs/medusa/pull/4685) [`281b0746c`](https://github.com/medusajs/medusa/commit/281b0746cfbe80b83c6a67d1ea120b47a0ea7121) Thanks [@riqwan](https://github.com/riqwan)! - feat(medusa,workflows,types) Create cart workflow
- Updated dependencies [[`ac866ebb5`](https://github.com/medusajs/medusa/commit/ac866ebb5197ee694dda91824b501109012a3dd1), [`3f3a84262`](https://github.com/medusajs/medusa/commit/3f3a84262ce9cbd911923278a54e301fbe9a4634), [`30ce35b16`](https://github.com/medusajs/medusa/commit/30ce35b163afa25f4e1d8d1bd392f401a3b413df), [`c0ca00290`](https://github.com/medusajs/medusa/commit/c0ca00290106fbdc8e15077bc8d1c3eafbef59f2)]:
- @medusajs/orchestration@0.2.0
- @medusajs/modules-sdk@1.9.2
- @medusajs/utils@1.9.6
## 0.1.1
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@medusajs/workflows",
"version": "0.1.1",
"version": "0.2.0",
"description": "Set of workflows for Medusa",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -18,7 +18,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/types": "^1.10.1",
"@medusajs/types": "^1.10.2",
"cross-env": "^5.2.1",
"jest": "^25.5.4",
"rimraf": "^5.0.1",
@@ -26,9 +26,9 @@
"typescript": "^4.4.4"
},
"dependencies": {
"@medusajs/modules-sdk": "^1.9.1",
"@medusajs/orchestration": "^0.1.0",
"@medusajs/utils": "^1.9.5",
"@medusajs/modules-sdk": "^1.9.2",
"@medusajs/orchestration": "^0.2.0",
"@medusajs/utils": "^1.9.6",
"awilix": "^8.0.1",
"ulid": "^2.3.0"
},