chore: Version Packages (#5622)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2023-11-21 08:46:09 +00:00
committed by GitHub
parent 7935c27b33
commit f4085dbede
32 changed files with 121 additions and 96 deletions

View File

@@ -1,5 +0,0 @@
---
"@medusajs/medusa": patch
---
fix(medusa): Update wrapHandler so that it is also able to catch errors for sync handlers

View File

@@ -1,5 +0,0 @@
---
"@medusajs/ui": patch
---
fix(ui): Fix the width of line numbers in the CodeBlock component, such that they are always the same width as the widest line number.

View File

@@ -1,5 +0,0 @@
---
"@medusajs/pricing": patch
---
fix(pricing): add missing migrations for pricing module

View File

@@ -1,5 +0,0 @@
---
"@medusajs/medusa": patch
---
feat(medusa): Adds a new alternative syntax for creating Subscribers in Medusa, as well as adding a new API for creating scheduled jobs.

View File

@@ -1,5 +0,0 @@
---
"@medusajs/types": patch
---
fix(types): Fix types used in the IInventoryService

View File

@@ -1,6 +0,0 @@
---
"@medusajs/pricing": patch
"@medusajs/types": patch
---
feat(pricing,types): price list API + price calculations with price lists

View File

@@ -1,6 +0,0 @@
---
"@medusajs/medusa": patch
"@medusajs/client-types": patch
---
feat(medusa): Add `metadata` to Product Category

View File

@@ -1,5 +0,0 @@
---
"@medusajs/medusa": patch
---
fix(medusa): Add missing import of promiseAll

View File

@@ -1,5 +0,0 @@
---
"@medusajs/product": patch
---
fix(product): when running migrations, prevent exploding on isolated case

View File

@@ -1,5 +0,0 @@
---
"@medusajs/admin-ui": patch
---
fix: sort supportedLanguages array

View File

@@ -1,7 +0,0 @@
---
"@medusajs/workflows": minor
"@medusajs/medusa": minor
"@medusajs/utils": minor
---
feat(workflows,medusa,utils): add medusa v2 feature flag

View File

@@ -1,5 +0,0 @@
---
"@medusajs/admin-ui": patch
---
fix(admin-ui): Resolves an issue where decimal numbers would be stripped when the locale uses commas as the decimal separator

View File

@@ -1,5 +0,0 @@
---
"@medusajs/medusa": patch
---
fix(medusa): Ensure that errorHandler middleware is applied if no middleware config exists

View File

@@ -1,5 +0,0 @@
---
"@medusajs/medusa": minor
---
chore(changesets): Minor-bump @medusajs/medusa

View File

@@ -1,5 +1,16 @@
# @medusajs/admin-ui
## 2.1.8
### Patch Changes
- [#5479](https://github.com/medusajs/medusa/pull/5479) [`3f016d871`](https://github.com/medusajs/medusa/commit/3f016d871a091a0a72c2eaec2f4ff74e0ad5b426) Thanks [@VariableVic](https://github.com/VariableVic)! - fix: sort supportedLanguages array
- [#5641](https://github.com/medusajs/medusa/pull/5641) [`c08240df3`](https://github.com/medusajs/medusa/commit/c08240df3f2fe0c4c5c35af471f68a2187f8e582) Thanks [@kasperkristensen](https://github.com/kasperkristensen)! - fix(admin-ui): Resolves an issue where decimal numbers would be stripped when the locale uses commas as the decimal separator
- Updated dependencies [[`a67a8e7e9`](https://github.com/medusajs/medusa/commit/a67a8e7e90f35636c8d99858fc5b19358df4c174)]:
- @medusajs/ui@2.2.2
## 2.1.7
### Patch Changes

View File

@@ -2,7 +2,7 @@
"name": "@medusajs/admin-ui",
"author": "Kasper Kristensen <kasper@medusajs.com>",
"license": "MIT",
"version": "2.1.7",
"version": "2.1.8",
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa.git",
@@ -37,7 +37,7 @@
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.1",
"@medusajs/icons": "^1.1.0",
"@medusajs/ui": "^2.2.1",
"@medusajs/ui": "^2.2.2",
"@medusajs/ui-preset": "^1.0.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@radix-ui/react-accordion": "^1.0.1",
@@ -117,8 +117,8 @@
},
"devDependencies": {
"@babel/types": "7.22.5",
"@medusajs/medusa": "^1.17.4",
"@medusajs/types": "^1.11.6",
"@medusajs/medusa": "^1.18.0",
"@medusajs/types": "^1.11.7",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.2.0",
"@types/react-datepicker": "^4.10.0",

View File

@@ -1,5 +1,11 @@
# @medusajs/ui
## 2.2.2
### Patch Changes
- [#5640](https://github.com/medusajs/medusa/pull/5640) [`a67a8e7e9`](https://github.com/medusajs/medusa/commit/a67a8e7e90f35636c8d99858fc5b19358df4c174) Thanks [@kasperkristensen](https://github.com/kasperkristensen)! - fix(ui): Fix the width of line numbers in the CodeBlock component, such that they are always the same width as the widest line number.
## 2.2.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/ui",
"version": "2.2.1",
"version": "2.2.2",
"author": "Kasper Kristensen <kasper@medusajs.com>",
"license": "MIT",
"repository": {

View File

@@ -1,5 +1,11 @@
# @medusajs/client-types
## 0.2.7
### Patch Changes
- [#5599](https://github.com/medusajs/medusa/pull/5599) [`b3093c3e3`](https://github.com/medusajs/medusa/commit/b3093c3e3d64e4c024a04d76fb0f727c1c38108b) Thanks [@bqst](https://github.com/bqst)! - feat(medusa): Add `metadata` to Product Category
## 0.2.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/client-types",
"version": "0.2.6",
"version": "0.2.7",
"description": "Client types for Medusa Commerce Rest API",
"main": "dist/index.js",
"files": [

View File

@@ -1,5 +1,29 @@
# Change Log
## 1.18.0
### Minor Changes
- [#5603](https://github.com/medusajs/medusa/pull/5603) [`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262) Thanks [@riqwan](https://github.com/riqwan)! - feat(workflows,medusa,utils): add medusa v2 feature flag
- [`b53ab22a7`](https://github.com/medusajs/medusa/commit/b53ab22a7c47a1ff24bc0bdc5035c4229a7753af) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore(changesets): Minor-bump @medusajs/medusa
### Patch Changes
- [#5597](https://github.com/medusajs/medusa/pull/5597) [`2947f57db`](https://github.com/medusajs/medusa/commit/2947f57db1cabb343644bde379fa9ec54e9d7750) Thanks [@kasperkristensen](https://github.com/kasperkristensen)! - fix(medusa): Update wrapHandler so that it is also able to catch errors for sync handlers
- [#5624](https://github.com/medusajs/medusa/pull/5624) [`57573ed4d`](https://github.com/medusajs/medusa/commit/57573ed4d7d657d0d98bf00fb756cfbfb9cbcd8d) Thanks [@kasperkristensen](https://github.com/kasperkristensen)! - feat(medusa): Adds a new alternative syntax for creating Subscribers in Medusa, as well as adding a new API for creating scheduled jobs.
- [#5599](https://github.com/medusajs/medusa/pull/5599) [`b3093c3e3`](https://github.com/medusajs/medusa/commit/b3093c3e3d64e4c024a04d76fb0f727c1c38108b) Thanks [@bqst](https://github.com/bqst)! - feat(medusa): Add `metadata` to Product Category
- [#5635](https://github.com/medusajs/medusa/pull/5635) [`7226f5b69`](https://github.com/medusajs/medusa/commit/7226f5b6997a69bfcdbdd16ec16b209746023f0c) Thanks [@chemicalkosek](https://github.com/chemicalkosek)! - fix(medusa): Add missing import of promiseAll
- [#5634](https://github.com/medusajs/medusa/pull/5634) [`52800710a`](https://github.com/medusajs/medusa/commit/52800710a294e32ebda6ba8a224fe85d289bfa0f) Thanks [@kasperkristensen](https://github.com/kasperkristensen)! - fix(medusa): Ensure that errorHandler middleware is applied if no middleware config exists
- Updated dependencies [[`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262)]:
- @medusajs/workflows@0.3.0
- @medusajs/utils@1.11.0
## 1.17.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/medusa",
"version": "1.17.4",
"version": "1.18.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.11.6",
"@medusajs/types": "^1.11.7",
"@types/express": "^4.17.17",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^8.5.9",
@@ -51,8 +51,8 @@
"@medusajs/medusa-cli": "^1.3.21",
"@medusajs/modules-sdk": "^1.12.3",
"@medusajs/orchestration": "^0.4.4",
"@medusajs/utils": "^1.10.5",
"@medusajs/workflows": "^0.2.5",
"@medusajs/utils": "^1.11.0",
"@medusajs/workflows": "^0.3.0",
"awilix": "^8.0.0",
"body-parser": "^1.19.0",
"boxen": "^5.0.1",

View File

@@ -1,5 +1,17 @@
# @medusajs/pricing
## 0.1.4
### Patch Changes
- [#5646](https://github.com/medusajs/medusa/pull/5646) [`4f0bea490`](https://github.com/medusajs/medusa/commit/4f0bea4909f5b42ece922b3efe46b57610fb312b) Thanks [@riqwan](https://github.com/riqwan)! - fix(pricing): add missing migrations for pricing module
- [#5498](https://github.com/medusajs/medusa/pull/5498) [`1772e80ed`](https://github.com/medusajs/medusa/commit/1772e80ed1ecab27741be80204f5df92eaa3f2b4) Thanks [@riqwan](https://github.com/riqwan)! - feat(pricing,types): price list API + price calculations with price lists
- Updated dependencies [[`61aef4aaa`](https://github.com/medusajs/medusa/commit/61aef4aaa7295f178c61c9a891f03a0a48b15c81), [`1772e80ed`](https://github.com/medusajs/medusa/commit/1772e80ed1ecab27741be80204f5df92eaa3f2b4), [`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262)]:
- @medusajs/types@1.11.7
- @medusajs/utils@1.11.0
## 0.1.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/pricing",
"version": "0.1.3",
"version": "0.1.4",
"description": "Medusa Pricing module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -48,8 +48,8 @@
},
"dependencies": {
"@medusajs/modules-sdk": "^1.12.3",
"@medusajs/types": "^1.11.6",
"@medusajs/utils": "^1.10.5",
"@medusajs/types": "^1.11.7",
"@medusajs/utils": "^1.11.0",
"@mikro-orm/core": "5.7.12",
"@mikro-orm/migrations": "5.7.12",
"@mikro-orm/postgresql": "5.7.12",

View File

@@ -1,5 +1,15 @@
# @medusajs/product
## 0.3.4
### Patch Changes
- [#5643](https://github.com/medusajs/medusa/pull/5643) [`c4722715c`](https://github.com/medusajs/medusa/commit/c4722715cd103e88ff8a3a3856d8138f211478ca) Thanks [@riqwan](https://github.com/riqwan)! - fix(product): when running migrations, prevent exploding on isolated case
- Updated dependencies [[`61aef4aaa`](https://github.com/medusajs/medusa/commit/61aef4aaa7295f178c61c9a891f03a0a48b15c81), [`1772e80ed`](https://github.com/medusajs/medusa/commit/1772e80ed1ecab27741be80204f5df92eaa3f2b4), [`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262)]:
- @medusajs/types@1.11.7
- @medusajs/utils@1.11.0
## 0.3.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/product",
"version": "0.3.3",
"version": "0.3.4",
"description": "Medusa Product module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -50,8 +50,8 @@
},
"dependencies": {
"@medusajs/modules-sdk": "^1.12.3",
"@medusajs/types": "^1.11.6",
"@medusajs/utils": "^1.10.5",
"@medusajs/types": "^1.11.7",
"@medusajs/utils": "^1.11.0",
"@mikro-orm/core": "5.7.12",
"@mikro-orm/migrations": "5.7.12",
"@mikro-orm/postgresql": "5.7.12",

View File

@@ -1,5 +1,13 @@
# @medusajs/types
## 1.11.7
### Patch Changes
- [#5630](https://github.com/medusajs/medusa/pull/5630) [`61aef4aaa`](https://github.com/medusajs/medusa/commit/61aef4aaa7295f178c61c9a891f03a0a48b15c81) Thanks [@shahednasser](https://github.com/shahednasser)! - fix(types): Fix types used in the IInventoryService
- [#5498](https://github.com/medusajs/medusa/pull/5498) [`1772e80ed`](https://github.com/medusajs/medusa/commit/1772e80ed1ecab27741be80204f5df92eaa3f2b4) Thanks [@riqwan](https://github.com/riqwan)! - feat(pricing,types): price list API + price calculations with price lists
## 1.11.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/types",
"version": "1.11.6",
"version": "1.11.7",
"description": "Medusa Types definition",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -1,5 +1,16 @@
# @medusajs/utils
## 1.11.0
### Minor Changes
- [#5603](https://github.com/medusajs/medusa/pull/5603) [`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262) Thanks [@riqwan](https://github.com/riqwan)! - feat(workflows,medusa,utils): add medusa v2 feature flag
### Patch Changes
- Updated dependencies [[`61aef4aaa`](https://github.com/medusajs/medusa/commit/61aef4aaa7295f178c61c9a891f03a0a48b15c81), [`1772e80ed`](https://github.com/medusajs/medusa/commit/1772e80ed1ecab27741be80204f5df92eaa3f2b4)]:
- @medusajs/types@1.11.7
## 1.10.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/utils",
"version": "1.10.5",
"version": "1.11.0",
"description": "Medusa utilities functions shared by Medusa core and Modules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -27,7 +27,7 @@
"typescript": "^5.1.6"
},
"dependencies": {
"@medusajs/types": "^1.11.6",
"@medusajs/types": "^1.11.7",
"@mikro-orm/core": "5.7.12",
"@mikro-orm/migrations": "5.7.12",
"@mikro-orm/postgresql": "5.7.12",

View File

@@ -1,5 +1,16 @@
# @medusajs/workflows
## 0.3.0
### Minor Changes
- [#5603](https://github.com/medusajs/medusa/pull/5603) [`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262) Thanks [@riqwan](https://github.com/riqwan)! - feat(workflows,medusa,utils): add medusa v2 feature flag
### Patch Changes
- Updated dependencies [[`cedab5833`](https://github.com/medusajs/medusa/commit/cedab583395275444001f0268e4b9ccab9b2b262)]:
- @medusajs/utils@1.11.0
## 0.2.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/workflows",
"version": "0.2.5",
"version": "0.3.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.11.6",
"@medusajs/types": "^1.11.7",
"cross-env": "^5.2.1",
"jest": "^29.6.3",
"rimraf": "^5.0.1",
@@ -28,7 +28,7 @@
"dependencies": {
"@medusajs/modules-sdk": "^1.12.3",
"@medusajs/orchestration": "^0.4.4",
"@medusajs/utils": "^1.10.5",
"@medusajs/utils": "^1.11.0",
"awilix": "^8.0.1",
"ulid": "^2.3.0"
},