chore: Version Packages (#4591)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
379c83933e
commit
5a569c4a20
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"create-medusa-app": patch
|
||||
---
|
||||
|
||||
feat(create-medusa-app): add `stable` option + add URI encoding to database string
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@medusajs/product": patch
|
||||
"@medusajs/types": patch
|
||||
---
|
||||
|
||||
fix(product): Serialize typings
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/medusa": patch
|
||||
---
|
||||
|
||||
fix(medusa): Clean response data should takes the full path of sub relations
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/medusa": patch
|
||||
---
|
||||
|
||||
fix(medusa): Removing the line items should remove the tax lines as well
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
"@medusajs/product": patch
|
||||
"@medusajs/types": patch
|
||||
"@medusajs/utils": patch
|
||||
---
|
||||
|
||||
feat(product,types,utils): Add tags, types, categories, collection and options CRUD to product module services
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@medusajs/admin-ui": patch
|
||||
"@medusajs/admin": patch
|
||||
---
|
||||
|
||||
fix(admin-ui): Add missing SO relation
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/modules-sdk": patch
|
||||
---
|
||||
|
||||
fix(module-sdk): Shared modules loading should not share the entire core container but only the resources that are meant to be shared
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/medusa": patch
|
||||
---
|
||||
|
||||
fix(medusa): update how price lists are filtered in price selection strategy
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@medusajs/admin-ui": patch
|
||||
"@medusajs/admin": patch
|
||||
---
|
||||
|
||||
fix(admin): Exclude prices from PriceLists overview
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/product": patch
|
||||
---
|
||||
|
||||
fix(medusa): correct the type of initializer for modules
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@medusajs/product": patch
|
||||
"@medusajs/types": patch
|
||||
---
|
||||
|
||||
feat(product, types): added product module service update
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/medusa": minor
|
||||
---
|
||||
|
||||
chore: Add changeset with minor bump
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/modules-sdk": minor
|
||||
---
|
||||
|
||||
Fix getting loaded modules
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@medusajs/medusa": patch
|
||||
---
|
||||
|
||||
feat(medusa): Expose error handler from middlewares
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
"@medusajs/orchestration": minor
|
||||
"@medusajs/modules-sdk": minor
|
||||
"@medusajs/workflows": minor
|
||||
"@medusajs/medusa": minor
|
||||
"@medusajs/types": minor
|
||||
---
|
||||
|
||||
Medusa workflows package
|
||||
@@ -1,5 +1,13 @@
|
||||
# @medusajs/admin-ui
|
||||
|
||||
## 1.9.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4594](https://github.com/medusajs/medusa/pull/4594) [`aab890174`](https://github.com/medusajs/medusa/commit/aab890174dbe2c73d57e8a6f15e74f88b6ffa532) Thanks [@olivermrbl](https://github.com/olivermrbl)! - fix(admin-ui): Add missing SO relation
|
||||
|
||||
- [#4536](https://github.com/medusajs/medusa/pull/4536) [`f561601bf`](https://github.com/medusajs/medusa/commit/f561601bf638be73ff0d0e55e28bd2192de8db32) Thanks [@olivermrbl](https://github.com/olivermrbl)! - fix(admin): Exclude prices from PriceLists overview
|
||||
|
||||
## 1.9.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "@medusajs/admin-ui",
|
||||
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
||||
"license": "MIT",
|
||||
"version": "1.9.2",
|
||||
"version": "1.9.3",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/medusajs/medusa.git",
|
||||
@@ -83,8 +83,8 @@
|
||||
"@medusajs/medusa": "^1.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/medusa": "^1.12.3",
|
||||
"@medusajs/types": "^1.8.11",
|
||||
"@medusajs/medusa": "^1.13.0",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^14.0.0",
|
||||
"@testing-library/user-event": "^14.4.3",
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @medusajs/admin
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4594](https://github.com/medusajs/medusa/pull/4594) [`aab890174`](https://github.com/medusajs/medusa/commit/aab890174dbe2c73d57e8a6f15e74f88b6ffa532) Thanks [@olivermrbl](https://github.com/olivermrbl)! - fix(admin-ui): Add missing SO relation
|
||||
|
||||
- [#4536](https://github.com/medusajs/medusa/pull/4536) [`f561601bf`](https://github.com/medusajs/medusa/commit/f561601bf638be73ff0d0e55e28bd2192de8db32) Thanks [@olivermrbl](https://github.com/olivermrbl)! - fix(admin): Exclude prices from PriceLists overview
|
||||
|
||||
- Updated dependencies [[`aab890174`](https://github.com/medusajs/medusa/commit/aab890174dbe2c73d57e8a6f15e74f88b6ffa532), [`f561601bf`](https://github.com/medusajs/medusa/commit/f561601bf638be73ff0d0e55e28bd2192de8db32)]:
|
||||
- @medusajs/admin-ui@1.9.3
|
||||
|
||||
## 6.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/admin",
|
||||
"version": "6.0.3",
|
||||
"version": "6.0.4",
|
||||
"bin": {
|
||||
"medusa-admin": "./bin/medusa-admin.js"
|
||||
},
|
||||
@@ -26,7 +26,7 @@
|
||||
"directory": "packages/admin"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/admin-ui": "^1.9.2",
|
||||
"@medusajs/admin-ui": "^1.9.3",
|
||||
"commander": "^10.0.0",
|
||||
"dotenv": "^16.0.3",
|
||||
"express": "^4.17.1",
|
||||
@@ -40,7 +40,7 @@
|
||||
"@medusajs/medusa": "^1.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/medusa": "^1.12.3",
|
||||
"@medusajs/medusa": "^1.13.0",
|
||||
"@types/express": "^4.17.13",
|
||||
"typescript": "^4.9.3"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 1.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4567](https://github.com/medusajs/medusa/pull/4567) [`15e87a810`](https://github.com/medusajs/medusa/commit/15e87a8100c9fe66f6d120423ef0351f4c657e7e) Thanks [@shahednasser](https://github.com/shahednasser)! - feat(create-medusa-app): add `stable` option + add URI encoding to database string
|
||||
|
||||
- Updated dependencies [[`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd)]:
|
||||
- @medusajs/utils@1.9.3
|
||||
|
||||
## 1.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-medusa-app",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"description": "Create a Medusa project using a single command.",
|
||||
"type": "module",
|
||||
"exports": "./dist/index.js",
|
||||
@@ -13,7 +13,7 @@
|
||||
"prepare": "cross-env NODE_ENV=production yarn run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/utils": "^1.9.2",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"boxen": "^5",
|
||||
"chalk": "^5.2.0",
|
||||
"commander": "^10.0.1",
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
"url": "https://github.com/medusajs/medusa/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/medusa-oas-cli": "0.2.11",
|
||||
"@medusajs/medusa-oas-cli": "0.2.12",
|
||||
"cross-env": "^7.0.3",
|
||||
"execa": "^5.1.1",
|
||||
"jest": "^27.4.7",
|
||||
|
||||
@@ -1,5 +1,28 @@
|
||||
# Change Log
|
||||
|
||||
## 1.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [`30e8bb275`](https://github.com/medusajs/medusa/commit/30e8bb2757e07ccb997c508c730a8d8ef8bcc5d1) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Add changeset with minor bump
|
||||
|
||||
- [#4553](https://github.com/medusajs/medusa/pull/4553) [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Medusa workflows package
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4600](https://github.com/medusajs/medusa/pull/4600) [`9129ca08a`](https://github.com/medusajs/medusa/commit/9129ca08a724f4e0c9e6a69b8bea9c0fb7b0f1b9) Thanks [@adrien2p](https://github.com/adrien2p)! - fix(medusa): Clean response data should takes the full path of sub relations
|
||||
|
||||
- [#4595](https://github.com/medusajs/medusa/pull/4595) [`ae33f4825`](https://github.com/medusajs/medusa/commit/ae33f4825fc1a388813cde72de03a26c41b8b387) Thanks [@adrien2p](https://github.com/adrien2p)! - fix(medusa): Removing the line items should remove the tax lines as well
|
||||
|
||||
- [#4578](https://github.com/medusajs/medusa/pull/4578) [`c9989529e`](https://github.com/medusajs/medusa/commit/c9989529ed8c347fefe10d57b3d23fa60aa35fe7) Thanks [@pKorsholm](https://github.com/pKorsholm)! - fix(medusa): update how price lists are filtered in price selection strategy
|
||||
|
||||
- [#4609](https://github.com/medusajs/medusa/pull/4609) [`f18f1b9bf`](https://github.com/medusajs/medusa/commit/f18f1b9bfef897974ba034ce41cd64aa833e4767) Thanks [@zhangpengchen](https://github.com/zhangpengchen)! - feat(medusa): Expose error handler from middlewares
|
||||
|
||||
- Updated dependencies [[`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd), [`379c83933`](https://github.com/medusajs/medusa/commit/379c83933ed12a4ec712e7f3c9b0252e4a4601dd), [`f174bb6fa`](https://github.com/medusajs/medusa/commit/f174bb6fa1b105b39065478a67b6be0b968f707a), [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c)]:
|
||||
- @medusajs/utils@1.9.3
|
||||
- @medusajs/modules-sdk@1.9.0
|
||||
- @medusajs/orchestration@0.1.0
|
||||
|
||||
## 1.12.3
|
||||
|
||||
### Patch Changes
|
||||
@@ -13,7 +36,7 @@
|
||||
- [#4472](https://github.com/medusajs/medusa/pull/4472) [`43427b889`](https://github.com/medusajs/medusa/commit/43427b8893baedd7abe7b38cf5360aa2d245293d) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Transaction Orchestrator Flow Builder
|
||||
|
||||
- [#4230](https://github.com/medusajs/medusa/pull/4230) [`2f283996f`](https://github.com/medusajs/medusa/commit/2f283996f80313b074b96c690bcd953c67665c1b) Thanks [@erikengervall](https://github.com/erikengervall)! - feat(medusa): Add `metadata` to `StorePostCartsCartLineItemsItemReq`
|
||||
|
||||
|
||||
## 1.12.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/medusa",
|
||||
"version": "1.12.3",
|
||||
"version": "1.13.0",
|
||||
"description": "Building blocks for digital commerce",
|
||||
"main": "dist/index.js",
|
||||
"bin": "./cli.js",
|
||||
@@ -19,7 +19,7 @@
|
||||
"author": "Sebastian Rindom",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "^1.8.11",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"@types/express": "^4.17.17",
|
||||
"@types/ioredis": "^4.28.10",
|
||||
"@types/jsonwebtoken": "^8.5.9",
|
||||
@@ -47,9 +47,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/medusa-cli": "^1.3.17",
|
||||
"@medusajs/modules-sdk": "^1.8.8",
|
||||
"@medusajs/orchestration": "^0.0.2",
|
||||
"@medusajs/utils": "^1.9.2",
|
||||
"@medusajs/modules-sdk": "^1.9.0",
|
||||
"@medusajs/orchestration": "^0.1.0",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"awilix": "^8.0.0",
|
||||
"body-parser": "^1.19.0",
|
||||
"boxen": "^5.0.1",
|
||||
|
||||
@@ -1,5 +1,22 @@
|
||||
# @medusajs/modules-sdk
|
||||
|
||||
## 1.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4596](https://github.com/medusajs/medusa/pull/4596) [`f174bb6fa`](https://github.com/medusajs/medusa/commit/f174bb6fa1b105b39065478a67b6be0b968f707a) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Fix getting loaded modules
|
||||
|
||||
- [#4553](https://github.com/medusajs/medusa/pull/4553) [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Medusa workflows package
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4611](https://github.com/medusajs/medusa/pull/4611) [`379c83933`](https://github.com/medusajs/medusa/commit/379c83933ed12a4ec712e7f3c9b0252e4a4601dd) Thanks [@adrien2p](https://github.com/adrien2p)! - fix(module-sdk): Shared modules loading should not share the entire core container but only the resources that are meant to be shared
|
||||
|
||||
- Updated dependencies [[`585ebf245`](https://github.com/medusajs/medusa/commit/585ebf2454719ed36957ba798a189a45a5274c5a), [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd), [`caea44ebf`](https://github.com/medusajs/medusa/commit/caea44ebfdf7393ace931ce2a9884105dadc4f8d), [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c)]:
|
||||
- @medusajs/types@1.9.0
|
||||
- @medusajs/utils@1.9.3
|
||||
- @medusajs/orchestration@0.1.0
|
||||
|
||||
## 1.8.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/modules-sdk",
|
||||
"version": "1.8.8",
|
||||
"version": "1.9.0",
|
||||
"description": "SDK for medusa modules",
|
||||
"main": "dist/index.js",
|
||||
"repository": {
|
||||
@@ -23,9 +23,9 @@
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/orchestration": "^0.0.2",
|
||||
"@medusajs/types": "^1.8.11",
|
||||
"@medusajs/utils": "^1.9.1",
|
||||
"@medusajs/orchestration": "^0.1.0",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"awilix": "^8.0.0",
|
||||
"resolve-cwd": "^3.0.0"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @medusajs/oas-cli
|
||||
|
||||
## 0.2.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`585ebf245`](https://github.com/medusajs/medusa/commit/585ebf2454719ed36957ba798a189a45a5274c5a), [`9129ca08a`](https://github.com/medusajs/medusa/commit/9129ca08a724f4e0c9e6a69b8bea9c0fb7b0f1b9), [`ae33f4825`](https://github.com/medusajs/medusa/commit/ae33f4825fc1a388813cde72de03a26c41b8b387), [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd), [`c9989529e`](https://github.com/medusajs/medusa/commit/c9989529ed8c347fefe10d57b3d23fa60aa35fe7), [`caea44ebf`](https://github.com/medusajs/medusa/commit/caea44ebfdf7393ace931ce2a9884105dadc4f8d), [`30e8bb275`](https://github.com/medusajs/medusa/commit/30e8bb2757e07ccb997c508c730a8d8ef8bcc5d1), [`f18f1b9bf`](https://github.com/medusajs/medusa/commit/f18f1b9bfef897974ba034ce41cd64aa833e4767), [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c)]:
|
||||
- @medusajs/types@1.9.0
|
||||
- @medusajs/medusa@1.13.0
|
||||
- @medusajs/utils@1.9.3
|
||||
|
||||
## 0.2.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/medusa-oas-cli",
|
||||
"version": "0.2.11",
|
||||
"version": "0.2.12",
|
||||
"description": "OAS CLI",
|
||||
"main": "dist/index.js",
|
||||
"bin": {
|
||||
@@ -35,7 +35,7 @@
|
||||
"test": "NODE_OPTIONS='--unhandled-rejections=strict' jest src"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/medusa": "^1.12.3",
|
||||
"@medusajs/medusa": "^1.13.0",
|
||||
"@medusajs/openapi-typescript-codegen": "^0.2.1",
|
||||
"@medusajs/types": "workspace:^",
|
||||
"@medusajs/utils": "workspace:^",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @medusajs/oas-github-ci
|
||||
|
||||
## 1.0.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies []:
|
||||
- @medusajs/medusa-oas-cli@0.2.12
|
||||
|
||||
## 1.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/oas-github-ci",
|
||||
"version": "1.0.11",
|
||||
"version": "1.0.12",
|
||||
"description": "OAS Github CI",
|
||||
"main": "scripts/build-openapi.js",
|
||||
"files": [
|
||||
@@ -21,7 +21,7 @@
|
||||
"test": "jest --passWithNoTests"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/medusa-oas-cli": "0.2.11",
|
||||
"@medusajs/medusa-oas-cli": "0.2.12",
|
||||
"execa": "^5.1.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @medusajs/orchestration
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4553](https://github.com/medusajs/medusa/pull/4553) [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Medusa workflows package
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd)]:
|
||||
- @medusajs/utils@1.9.3
|
||||
|
||||
## 0.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/orchestration",
|
||||
"version": "0.0.2",
|
||||
"version": "0.1.0",
|
||||
"description": "Medusa utilities to orchestrate modules",
|
||||
"main": "dist/index.js",
|
||||
"repository": {
|
||||
@@ -17,14 +17,14 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "^1.8.11",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"cross-env": "^5.2.1",
|
||||
"jest": "^25.5.4",
|
||||
"ts-jest": "^25.5.1",
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/utils": "^1.9.2",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"graphql": "^16.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
||||
@@ -1,5 +1,22 @@
|
||||
# @medusajs/product
|
||||
|
||||
## 0.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4602](https://github.com/medusajs/medusa/pull/4602) [`585ebf245`](https://github.com/medusajs/medusa/commit/585ebf2454719ed36957ba798a189a45a5274c5a) Thanks [@adrien2p](https://github.com/adrien2p)! - fix(product): Serialize typings
|
||||
|
||||
- [#4535](https://github.com/medusajs/medusa/pull/4535) [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd) Thanks [@riqwan](https://github.com/riqwan)! - feat(product,types,utils): Add tags, types, categories, collection and options CRUD to product module services
|
||||
|
||||
- [#4590](https://github.com/medusajs/medusa/pull/4590) [`a0a041e5c`](https://github.com/medusajs/medusa/commit/a0a041e5c9b8aa5a418f500ba17fca2bea53f728) Thanks [@riqwan](https://github.com/riqwan)! - fix(medusa): correct the type of initializer for modules
|
||||
|
||||
- [#4504](https://github.com/medusajs/medusa/pull/4504) [`caea44ebf`](https://github.com/medusajs/medusa/commit/caea44ebfdf7393ace931ce2a9884105dadc4f8d) Thanks [@riqwan](https://github.com/riqwan)! - feat(product, types): added product module service update
|
||||
|
||||
- Updated dependencies [[`585ebf245`](https://github.com/medusajs/medusa/commit/585ebf2454719ed36957ba798a189a45a5274c5a), [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd), [`379c83933`](https://github.com/medusajs/medusa/commit/379c83933ed12a4ec712e7f3c9b0252e4a4601dd), [`caea44ebf`](https://github.com/medusajs/medusa/commit/caea44ebfdf7393ace931ce2a9884105dadc4f8d), [`f174bb6fa`](https://github.com/medusajs/medusa/commit/f174bb6fa1b105b39065478a67b6be0b968f707a), [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c)]:
|
||||
- @medusajs/types@1.9.0
|
||||
- @medusajs/utils@1.9.3
|
||||
- @medusajs/modules-sdk@1.9.0
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/product",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.4",
|
||||
"description": "Medusa Product module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
@@ -49,9 +49,9 @@
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/modules-sdk": "^1.8.8",
|
||||
"@medusajs/types": "^1.8.11",
|
||||
"@medusajs/utils": "^1.9.2",
|
||||
"@medusajs/modules-sdk": "^1.9.0",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"@mikro-orm/core": "5.7.12",
|
||||
"@mikro-orm/migrations": "5.7.12",
|
||||
"@mikro-orm/postgresql": "5.7.12",
|
||||
|
||||
@@ -1,5 +1,19 @@
|
||||
# @medusajs/types
|
||||
|
||||
## 1.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4553](https://github.com/medusajs/medusa/pull/4553) [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Medusa workflows package
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4602](https://github.com/medusajs/medusa/pull/4602) [`585ebf245`](https://github.com/medusajs/medusa/commit/585ebf2454719ed36957ba798a189a45a5274c5a) Thanks [@adrien2p](https://github.com/adrien2p)! - fix(product): Serialize typings
|
||||
|
||||
- [#4535](https://github.com/medusajs/medusa/pull/4535) [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd) Thanks [@riqwan](https://github.com/riqwan)! - feat(product,types,utils): Add tags, types, categories, collection and options CRUD to product module services
|
||||
|
||||
- [#4504](https://github.com/medusajs/medusa/pull/4504) [`caea44ebf`](https://github.com/medusajs/medusa/commit/caea44ebfdf7393ace931ce2a9884105dadc4f8d) Thanks [@riqwan](https://github.com/riqwan)! - feat(product, types): added product module service update
|
||||
|
||||
## 1.8.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/types",
|
||||
"version": "1.8.11",
|
||||
"version": "1.9.0",
|
||||
"description": "Medusa Types definition",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @medusajs/utils
|
||||
|
||||
## 1.9.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4535](https://github.com/medusajs/medusa/pull/4535) [`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd) Thanks [@riqwan](https://github.com/riqwan)! - feat(product,types,utils): Add tags, types, categories, collection and options CRUD to product module services
|
||||
|
||||
## 1.9.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/utils",
|
||||
"version": "1.9.2",
|
||||
"version": "1.9.3",
|
||||
"description": "Medusa utilities functions shared by Medusa core and Modules",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
@@ -18,7 +18,7 @@
|
||||
"author": "Medusa",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@medusajs/types": "^1.8.10",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"@types/express": "^4.17.17",
|
||||
"cross-env": "^5.2.1",
|
||||
"express": "^4.18.2",
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# @medusajs/workflows
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4553](https://github.com/medusajs/medusa/pull/4553) [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c) Thanks [@carlos-r-l-rodrigues](https://github.com/carlos-r-l-rodrigues)! - Medusa workflows package
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`131477faf`](https://github.com/medusajs/medusa/commit/131477faf0409c49d4aacf26ea591e33b2fa22fd), [`379c83933`](https://github.com/medusajs/medusa/commit/379c83933ed12a4ec712e7f3c9b0252e4a4601dd), [`f174bb6fa`](https://github.com/medusajs/medusa/commit/f174bb6fa1b105b39065478a67b6be0b968f707a), [`f12299deb`](https://github.com/medusajs/medusa/commit/f12299deb10baadab1505cd4ac353dd5d1c8fa7c)]:
|
||||
- @medusajs/utils@1.9.3
|
||||
- @medusajs/modules-sdk@1.9.0
|
||||
- @medusajs/orchestration@0.1.0
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@medusajs/workflows",
|
||||
"version": "0.0.1",
|
||||
"version": "0.1.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.8.10",
|
||||
"@medusajs/types": "^1.9.0",
|
||||
"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.8.8",
|
||||
"@medusajs/orchestration": "^0.0.2",
|
||||
"@medusajs/utils": "^1.9.2",
|
||||
"@medusajs/modules-sdk": "^1.9.0",
|
||||
"@medusajs/orchestration": "^0.1.0",
|
||||
"@medusajs/utils": "^1.9.3",
|
||||
"awilix": "^8.0.1",
|
||||
"ulid": "^2.3.0"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user