chore: Release

This commit is contained in:
olivermrbl
2024-10-22 20:43:47 +02:00
parent c3418a2b93
commit 2fbebb60e3
134 changed files with 1309 additions and 590 deletions

View File

@@ -1,5 +1,16 @@
# @medusajs/api-key
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/api-key",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa API Key module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
@@ -48,7 +48,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/auth
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/auth",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Auth module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/cache-inmemory
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 1.8.10
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/cache-inmemory",
"version": "1.8.10",
"version": "2.0.0",
"description": "In-memory Cache Module for Medusa",
"main": "dist/index.js",
"repository": {
@@ -23,7 +23,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -36,6 +36,6 @@
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
}
}

View File

@@ -1,5 +1,16 @@
# @medusajs/cache-redis
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 1.9.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/cache-redis",
"version": "1.9.1",
"version": "2.0.0",
"description": "Redis Cache Module for Medusa",
"main": "dist/index.js",
"repository": {
@@ -23,7 +23,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -39,7 +39,7 @@
"ioredis": "^5.4.1"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"awilix": "^8.0.1"
}
}

View File

@@ -1,5 +1,16 @@
# @medusajs/cart
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/cart",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Cart module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,7 +37,7 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/test-utils": "^1.1.44",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -50,7 +50,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/currency
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/currency",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Currency module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/customer
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/customer",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Customer module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": "MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/event-bus-local
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 1.9.8
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/event-bus-local",
"version": "1.9.8",
"version": "2.0.0",
"description": "Local Event Bus Module for Medusa",
"main": "dist/index.js",
"files": [
@@ -23,7 +23,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -39,6 +39,6 @@
"ulid": "^2.3.0"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
}
}

View File

@@ -1,5 +1,16 @@
# @medusajs/event-bus-redis
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 1.8.13
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/event-bus-redis",
"version": "1.8.13",
"version": "2.0.0",
"description": "Redis Event Bus Module for Medusa",
"main": "dist/index.js",
"files": [
@@ -23,7 +23,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -40,7 +40,7 @@
"ioredis": "^5.4.1"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"awilix": "^8.0.1"
}
}

View File

@@ -1,5 +1,16 @@
# @medusajs/product
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.3.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/file",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa File module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"awilix": "^8.0.1"
}
}

View File

@@ -1,5 +1,16 @@
# @medusajs/fulfillment
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/fulfillment",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Fulfillment module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1 +1,12 @@
# @medusajs/index
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/index",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Index module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/knex": "5.9.7",
@@ -52,7 +52,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/knex": "5.9.7",
"@mikro-orm/migrations": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/inventory-next
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/inventory",
"version": "1.0.1",
"version": "2.0.0",
"description": "Inventory Module for Medusa",
"main": "dist/index.js",
"repository": {
@@ -23,8 +23,8 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -37,7 +37,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/link-modules
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.2.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/link-modules",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Default Link Modules Package and Definitions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -33,8 +33,8 @@
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.ts"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",
@@ -47,7 +47,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -0,0 +1,12 @@
# @medusajs/locking
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/locking",
"version": "1.0.1",
"version": "2.0.0",
"description": "Locking Module for Medusa",
"main": "dist/index.js",
"repository": {
@@ -33,8 +33,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -47,7 +47,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -0,0 +1,12 @@
# @medusajs/notification
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/notification",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Notification module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/order
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/order",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Order module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/payment
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/payment",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Payment module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/pricing
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.12
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/pricing",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Pricing module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/product
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.3.12
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/product",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Product module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -52,7 +52,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/promotion
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/promotion",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Promotion module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -0,0 +1,12 @@
# @medusajs/auth-emailpass
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/auth-emailpass",
"version": "1.0.1",
"version": "2.0.0",
"description": "Email and password credential authentication provider for Medusa",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -37,7 +37,7 @@
"scrypt-kdf": "^2.0.1"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-provider",

View File

@@ -0,0 +1,8 @@
# @medusajs/auth-github
## 2.0.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/auth-github",
"version": "1.0.1",
"version": "2.0.0",
"description": "Github OAuth authentication provider for Medusa",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -35,7 +35,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-provider",

View File

@@ -0,0 +1,12 @@
# @medusajs/auth-google
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/auth-google",
"version": "1.0.1",
"version": "2.0.0",
"description": "Google OAuth authentication provider for Medusa",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -38,7 +38,7 @@
"jsonwebtoken": "^9.0.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-provider",

View File

@@ -0,0 +1,12 @@
# @medusajs/file-local
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/file-local",
"version": "1.0.1",
"version": "2.0.0",
"description": "Local filesystem file storage for Medusa",
"main": "dist/index.js",
"repository": {
@@ -25,7 +25,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -33,7 +33,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-plugin",

View File

@@ -0,0 +1,12 @@
# @medusajs/file-s3
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/file-s3",
"version": "1.0.1",
"version": "2.0.0",
"description": "S3 protocol file storage for Medusa. Supports any S3-compatible storage provider",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"axios": "^1.6.8",
@@ -40,7 +40,7 @@
"ulid": "^2.3.0"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-plugin",

View File

@@ -1,5 +1,16 @@
# @medusajs/fulfillment-manual
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/fulfillment-manual",
"version": "1.0.1",
"version": "2.0.0",
"description": "Manual fulfillment for Medusa",
"main": "dist/index.js",
"repository": {
@@ -25,7 +25,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -33,7 +33,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-plugin",

View File

@@ -0,0 +1,12 @@
# @medusajs/locking-postgres
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/locking-postgres",
"version": "1.0.1",
"version": "2.0.0",
"description": "Postgres Advisory Locks for Medusa",
"main": "dist/index.js",
"repository": {
@@ -20,7 +20,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -32,7 +32,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"scripts": {
"watch": "tsc --build --watch",

View File

@@ -0,0 +1,12 @@
# @medusajs/locking-redis
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/locking-redis",
"version": "1.0.1",
"version": "2.0.0",
"description": "Redis Lock for Medusa",
"main": "dist/index.js",
"repository": {
@@ -20,7 +20,7 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -28,7 +28,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"dependencies": {
"ioredis": "^5.4.1"

View File

@@ -0,0 +1,12 @@
# @medusajs/notification-local
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/notification-local",
"version": "1.0.1",
"version": "2.0.0",
"description": "Local (logging) notification provider for Medusa, useful for testing purposes and log audits",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -34,7 +34,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-provider",

View File

@@ -0,0 +1,12 @@
# @medusajs/notification-sendgrid
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/notification-sendgrid",
"version": "1.0.1",
"version": "2.0.0",
"description": "Sendgrid notification provider for Medusa",
"main": "dist/index.js",
"repository": {
@@ -26,7 +26,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -37,7 +37,7 @@
"@sendgrid/mail": "^8.1.3"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1"
"@medusajs/framework": "^2.0.0"
},
"keywords": [
"medusa-provider",

View File

@@ -1,5 +1,16 @@
# @medusajs/payment-stripe
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/payment-stripe",
"version": "1.0.1",
"version": "2.0.0",
"description": "Stripe payment provider for Medusa",
"main": "dist/index.js",
"repository": {
@@ -25,7 +25,7 @@
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
@@ -33,7 +33,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"awilix": "^8.0.1"
},
"dependencies": {

View File

@@ -1,5 +1,16 @@
# @medusajs/region
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/region",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Region module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/sales-channel
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/sales-channel",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Sales Channel module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/stock-location
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/stock-location",
"version": "1.0.1",
"version": "2.0.0",
"description": "Stock Location Module for Medusa",
"main": "dist/index.js",
"repository": {
@@ -23,8 +23,8 @@
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -37,7 +37,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/store
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/store",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Store module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/tax
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.1.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/tax",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Tax module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -51,7 +51,7 @@
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/user
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/user",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Users module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -54,7 +54,7 @@
"jsonwebtoken": "^9.0.2"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/workflow-engine-inmemory
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/workflow-engine-inmemory",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Workflow Orchestrator module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -55,7 +55,7 @@
"ulid": "^2.3.0"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",

View File

@@ -1,5 +1,16 @@
# @medusajs/workflow-engine-redis
## 2.0.0
### Major Changes
- [#7341](https://github.com/medusajs/medusa/pull/7341) [`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e) Thanks [@olivermrbl](https://github.com/olivermrbl)! - chore: Medusa 2.0
### Patch Changes
- Updated dependencies [[`2e42e053d4c9d5445d227bdc268c66713aad8e2e`](https://github.com/medusajs/medusa/commit/2e42e053d4c9d5445d227bdc268c66713aad8e2e)]:
- @medusajs/framework@2.0.0
## 0.0.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@medusajs/workflow-engine-redis",
"version": "1.0.1",
"version": "2.0.0",
"description": "Medusa Workflow Orchestrator module using Redis to track workflows executions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
"orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts medusa-mikro-orm cache:clear"
},
"devDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/test-utils": "^1.1.44",
"@medusajs/framework": "^2.0.0",
"@medusajs/test-utils": "^2.0.0",
"@mikro-orm/cli": "5.9.7",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
@@ -56,7 +56,7 @@
"ulid": "^2.3.0"
},
"peerDependencies": {
"@medusajs/framework": "^1.0.1",
"@medusajs/framework": "^2.0.0",
"@mikro-orm/core": "5.9.7",
"@mikro-orm/migrations": "5.9.7",
"@mikro-orm/postgresql": "5.9.7",