Skip to content

Commit

Permalink
Merge pull request #7 from LhonRafaat/feat/better-pagination
Browse files Browse the repository at this point in the history
Feat/better-querying
  • Loading branch information
LhonRafaat authored Sep 14, 2024
2 parents 3854455 + fc40b3f commit 018132b
Show file tree
Hide file tree
Showing 21 changed files with 3,718 additions and 291 deletions.
46 changes: 46 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
}
}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@


## 1.1.0 (2024-09-14)


### Features

* add release script ([1fc3c0d](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/1fc3c0dc92846c2005fcf3ba0fb5e8f0c3cc0e9c))
* install commitlint ([3854455](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/3854455e11994379e0687493ff2962d4caba94bd))
* install release it && add seed script ([42e3dc3](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/42e3dc3179650d6e2d559b7a83f38d0c66359378))
* refactor query middleware to implement strapi style ([afd5e6d](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/afd5e6dc49f6131870b7bcdf590d77bbbe329f20))


### Code Refactoring

* adjust usersservice find to new query implementation ([d62eecf](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/d62eecfd5a7bc23743a4ed672b88a411e8609175))
* migrate eslintrc ([73762d0](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/73762d0c543a125d9566b095c7e7bfff1874c5e3))
* remove unused vars & imports ([fa31b89](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/fa31b898a047107f0c2f2619fe17641d93277e26))
* renaming and adding better pagination wip ([09f6ac8](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/09f6ac866d3f060e03cebc331b1c8caff700be29))
* update query decorator ([3d21a8e](https://github.com/LhonRafaat/nestjs-mongoose-template/commit/3d21a8e26eb7f0d30fcf93ad8562d2fa1a28eac4))
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default [
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
},
},
];
Loading

0 comments on commit 018132b

Please sign in to comment.