Skip to content

Commit

Permalink
chore(release): v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Apr 1, 2023
1 parent fc9090d commit aa1e918
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 83 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## v2.7.0

[compare changes](https://github.com/tada5hi/typeorm-extension/compare/v2.6.2...v2.7.0)


### 🚀 Enhancements

- Prepare & extend env reading for env data-source otions reading ([c3a401c](https://github.com/tada5hi/typeorm-extension/commit/c3a401c))
- Experimental read env data-source options and merge them with file based options ([e5c4e1b](https://github.com/tada5hi/typeorm-extension/commit/e5c4e1b))
- Add extra utility to merge data-source options ([df5637c](https://github.com/tada5hi/typeorm-extension/commit/df5637c))

### 🩹 Fixes

- **deps:** Bump locter from 1.0.10 to 1.1.0 ([#523](https://github.com/tada5hi/typeorm-extension/pull/523))
- Export env sub module ([fc9090d](https://github.com/tada5hi/typeorm-extension/commit/fc9090d))

### 📦 Build

- Replaced semantic-release with changelogen for release management ([66e3997](https://github.com/tada5hi/typeorm-extension/commit/66e3997))
- **deps-dev:** Bump vitepress from 1.0.0-alpha.61 to 1.0.0-alpha.64 ([#529](https://github.com/tada5hi/typeorm-extension/pull/529))
- **deps-dev:** Bump @tada5hi/eslint-config-typescript ([#526](https://github.com/tada5hi/typeorm-extension/pull/526))
- **deps-dev:** Bump @types/yargs from 17.0.22 to 17.0.24 ([#527](https://github.com/tada5hi/typeorm-extension/pull/527))
- **deps-dev:** Bump @types/node from 18.15.7 to 18.15.11 ([#528](https://github.com/tada5hi/typeorm-extension/pull/528))

### ❤️ Contributors

- Tada5hi <peter.placzek1996@gmail.com>

## [2.6.2](https://github.com/tada5hi/typeorm-extension/compare/v2.6.1...v2.6.2) (2023-03-25)


Expand Down
166 changes: 83 additions & 83 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,84 +1,84 @@
{
"name": "typeorm-extension",
"version": "2.6.2",
"description": "A library to create/drop database, simple seeding data sets, ...",
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/typeorm-extension.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"build:watch": "npm run build -- --watch",
"commit": "npx git-cz",
"test": "jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"docs:dev": "vitepress dev docs --temp .temp",
"docs:build": "vitepress build docs --temp .temp",
"docs:help": "vitepress --help",
"prepare": "husky install",
"release": "npm run build && changelogen --release --push && npm publish"
},
"keywords": [
"database",
"create",
"drop",
"api",
"json-api",
"jsonapi",
"migration",
"seeder",
"seeding",
"cli"
],
"bin": {
"typeorm-extension": "dist/cli/index.js"
},
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"locter": "^1.1.0",
"pascal-case": "^3.1.2",
"rapiq": "^0.8.0",
"reflect-metadata": "^0.1.13",
"smob": "^1.0.0",
"yargs": "^17.7.1"
},
"peerDependencies": {
"typeorm": "~0.3.0"
},
"devDependencies": {
"@tada5hi/commitlint-config": "^1.0.0",
"@tada5hi/eslint-config-typescript": "^1.1.6",
"@tada5hi/tsconfig": "^0.4.0",
"@types/jest": "^27.5.0",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.24",
"better-sqlite3": "^8.2.0",
"changelogen": "^0.5.2",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.4",
"typeorm": "^0.3.12",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-alpha.64",
"vue": "^3.2.47"
}
}
"name": "typeorm-extension",
"version": "2.7.0",
"description": "A library to create/drop database, simple seeding data sets, ...",
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/typeorm-extension.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"build:watch": "npm run build -- --watch",
"commit": "npx git-cz",
"test": "jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"docs:dev": "vitepress dev docs --temp .temp",
"docs:build": "vitepress build docs --temp .temp",
"docs:help": "vitepress --help",
"prepare": "husky install",
"release": "npm run build && changelogen --release --push && npm publish"
},
"keywords": [
"database",
"create",
"drop",
"api",
"json-api",
"jsonapi",
"migration",
"seeder",
"seeding",
"cli"
],
"bin": {
"typeorm-extension": "dist/cli/index.js"
},
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"locter": "^1.1.0",
"pascal-case": "^3.1.2",
"rapiq": "^0.8.0",
"reflect-metadata": "^0.1.13",
"smob": "^1.0.0",
"yargs": "^17.7.1"
},
"peerDependencies": {
"typeorm": "~0.3.0"
},
"devDependencies": {
"@tada5hi/commitlint-config": "^1.0.0",
"@tada5hi/eslint-config-typescript": "^1.1.6",
"@tada5hi/tsconfig": "^0.4.0",
"@types/jest": "^27.5.0",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.24",
"better-sqlite3": "^8.2.0",
"changelogen": "^0.5.2",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.4",
"typeorm": "^0.3.12",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-alpha.64",
"vue": "^3.2.47"
}
}

0 comments on commit aa1e918

Please sign in to comment.