Skip to content

Commit

Permalink
release:
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Jan 16, 2024
1 parent d317dce commit 80c8f85
Show file tree
Hide file tree
Showing 6 changed files with 129 additions and 19 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.1](https://github.com/Alwatr/pmpa/compare/v1.1.0...v1.1.1) (2024-01-16)

### Bug Fixes

* **app:** debugMode in logger ([a86cf76](https://github.com/Alwatr/pmpa/commit/a86cf76bbbbe9b669b64703f66342876dcb7a7d7)) by @njfamirm
* **app:** start script ([d577af7](https://github.com/Alwatr/pmpa/commit/d577af7fd4064e76ccac82afd9a0242952015a38)) by @MM25Zamanian
* define package scope ([335bfa2](https://github.com/Alwatr/pmpa/commit/335bfa29f9330bbbaebeffa17fbe038336e13ae6)) by @njfamirm

### Code Refactoring

* **app/keep-scroll:** ensure deployment mode from platform info package ([d83a60d](https://github.com/Alwatr/pmpa/commit/d83a60d4bd81a887a7e0ad3d9c56f92215087378)) by @njfamirm
* update env name for logger enable mode ([d317dce](https://github.com/Alwatr/pmpa/commit/d317dce979a3b5cb311a44c787f5ff077e9f6c80)) by @njfamirm
* use definePackage logger ([cc0d017](https://github.com/Alwatr/pmpa/commit/cc0d017b11644c501080f708785ab80fcc476f23)) by @njfamirm

### Miscellaneous Chores

* **app:** build logger name ([731b13a](https://github.com/Alwatr/pmpa/commit/731b13ad5ec5598f9396344af190ca043c8e0872)) by @njfamirm
* **dependabot:** change commit message format ([45a922d](https://github.com/Alwatr/pmpa/commit/45a922d0a017b008d922c01e73f3a424631c230e)) by @njfamirm
* **deps:** update all deps using upd command ([ebb6d7a](https://github.com/Alwatr/pmpa/commit/ebb6d7aa0115706d42009f770c76f9a40d31db09)) by @njfamirm
* **lerna:** remove commit message prefix rule for dockers ([5f1a64e](https://github.com/Alwatr/pmpa/commit/5f1a64e44c1c1cf5bdc5cb261c09fc25470b9ed7)) by @njfamirm
* **lerna:** remove generateReleaseNotes ([d14837c](https://github.com/Alwatr/pmpa/commit/d14837cddf2d0bcacc6fff8e9d6dae7ee2ed39dc)) by @njfamirm
* **lerna:** update changelog preset ([ba6338b](https://github.com/Alwatr/pmpa/commit/ba6338b955391736212670f44686b18c6b8cd3f5)) by @njfamirm
* remove tsconfig outDir ([e713b0a](https://github.com/Alwatr/pmpa/commit/e713b0a48ace5b1ea9185e7fff42f240af40c0f4)) by @njfamirm
* **vscode:** enable checkJs ([a0ad2a6](https://github.com/Alwatr/pmpa/commit/a0ad2a64f5f2668263d9db1a0b52f64180980994)) by @njfamirm

# [1.1.0](https://github.com/Alwatr/pmpa/compare/v1.0.0...v1.1.0) (2023-12-24)

### Features
Expand Down
87 changes: 70 additions & 17 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"$schema": "https://raw.githubusercontent.com/lerna-lite/lerna-lite/main/packages/cli/schemas/lerna-schema.json",
"version": "1.1.0",
"version": "1.1.1",
"npmClient": "yarn",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"loglevel": "verbose",
"command": {
"version": {
Expand All @@ -11,24 +13,75 @@
"changelogPreset": {
"name": "conventionalcommits",
"types": [
{"type": "feat", "section": "Features"},
{"type": "feature", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "revert", "section": "Reverts"},
{"type": "refactor", "section": "Code Refactoring"},
{"type": "chore", "section": "Miscellaneous Chores"},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "doc", "section": "Documentation", "hidden": true},
{"type": "deps", "section": "Dependencies update", "hidden": true},
{"type": "style", "section": "Styles", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration", "hidden": true}
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "chore",
"section": "Miscellaneous Chores"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "doc",
"section": "Documentation",
"hidden": true
},
{
"type": "deps",
"section": "Dependencies update",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
]
},
"changelogIncludeCommitsClientLogin": " by @%l",
"ignoreChanges": ["*.md"],
"ignoreChanges": [
"*.md"
],
"skipBumpOnlyReleases": true,
"message": "release:",
"private": true,
Expand Down
12 changes: 12 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.1](https://github.com/Alwatr/pmpa/compare/v1.1.0...v1.1.1) (2024-01-16)

### Code Refactoring

* update env name for logger enable mode ([d317dce](https://github.com/Alwatr/pmpa/commit/d317dce979a3b5cb311a44c787f5ff077e9f6c80)) by @njfamirm
* use definePackage logger ([cc0d017](https://github.com/Alwatr/pmpa/commit/cc0d017b11644c501080f708785ab80fcc476f23)) by @njfamirm

### Miscellaneous Chores

* **deps:** update all deps using upd command ([ebb6d7a](https://github.com/Alwatr/pmpa/commit/ebb6d7aa0115706d42009f770c76f9a40d31db09)) by @njfamirm
* remove tsconfig outDir ([e713b0a](https://github.com/Alwatr/pmpa/commit/e713b0a48ace5b1ea9185e7fff42f240af40c0f4)) by @njfamirm

# [1.1.0](https://github.com/Alwatr/pmpa/compare/v1.0.0...v1.1.0) (2023-12-24)

**Note:** Version bump only for package @alwatr/pmpa-api
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/pmpa-api",
"version": "1.1.0",
"version": "1.1.1",
"description": "Alwatr Progressive Multi Page (Web) Application.",
"author": "S. Ali Mihandoost <[email protected]>",
"private": true,
Expand Down
20 changes: 20 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.1](https://github.com/Alwatr/pmpa/compare/v1.1.0...v1.1.1) (2024-01-16)

### Bug Fixes

* **app:** debugMode in logger ([a86cf76](https://github.com/Alwatr/pmpa/commit/a86cf76bbbbe9b669b64703f66342876dcb7a7d7)) by @njfamirm
* **app:** start script ([d577af7](https://github.com/Alwatr/pmpa/commit/d577af7fd4064e76ccac82afd9a0242952015a38)) by @MM25Zamanian
* define package scope ([335bfa2](https://github.com/Alwatr/pmpa/commit/335bfa29f9330bbbaebeffa17fbe038336e13ae6)) by @njfamirm

### Code Refactoring

* **app/keep-scroll:** ensure deployment mode from platform info package ([d83a60d](https://github.com/Alwatr/pmpa/commit/d83a60d4bd81a887a7e0ad3d9c56f92215087378)) by @njfamirm
* update env name for logger enable mode ([d317dce](https://github.com/Alwatr/pmpa/commit/d317dce979a3b5cb311a44c787f5ff077e9f6c80)) by @njfamirm
* use definePackage logger ([cc0d017](https://github.com/Alwatr/pmpa/commit/cc0d017b11644c501080f708785ab80fcc476f23)) by @njfamirm

### Miscellaneous Chores

* **app:** build logger name ([731b13a](https://github.com/Alwatr/pmpa/commit/731b13ad5ec5598f9396344af190ca043c8e0872)) by @njfamirm
* **deps:** update all deps using upd command ([ebb6d7a](https://github.com/Alwatr/pmpa/commit/ebb6d7aa0115706d42009f770c76f9a40d31db09)) by @njfamirm
* remove tsconfig outDir ([e713b0a](https://github.com/Alwatr/pmpa/commit/e713b0a48ace5b1ea9185e7fff42f240af40c0f4)) by @njfamirm

# [1.1.0](https://github.com/Alwatr/pmpa/compare/v1.0.0...v1.1.0) (2023-12-24)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/pmpa-app",
"version": "1.1.0",
"version": "1.1.1",
"description": "Alwatr Progressive Multi Page (Web) Application.",
"author": "S. Ali Mihandoost <[email protected]>",
"private": true,
Expand Down

0 comments on commit 80c8f85

Please sign in to comment.