Skip to content

Commit

Permalink
chore(release): 1.11.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.11.1](v1.11.0...v1.11.1) (2024-08-06)

### Bug Fixes

* **deps:** downgrade semantic release github plugin ([#291](#291)) ([9acc3ec](9acc3ec))
  • Loading branch information
eg-oss-ci committed Aug 6, 2024
1 parent 607af19 commit 95d64b3
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 0 deletions.
80 changes: 80 additions & 0 deletions dist/.releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "feat",
"section": "Features",
"release": "minor"
},
{
"type": "fix",
"section": "Bug Fixes",
"release": "patch"
},
{
"type": "no-release",
"release": false
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING-CHANGE",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"successCmd": "sh ../scripts/update-assets.sh"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md",
".releaserc.json"
]
}
]
]
}
5 changes: 5 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## [1.11.1](https://github.com/ExpediaGroup/spec-transformer/compare/v1.11.0...v1.11.1) (2024-08-06)

### Bug Fixes

* **deps:** downgrade semantic release github plugin ([#291](https://github.com/ExpediaGroup/spec-transformer/issues/291)) ([9acc3ec](https://github.com/ExpediaGroup/spec-transformer/commit/9acc3eccb60bf185699e79a3d543fe00a53cce04))
96 changes: 96 additions & 0 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"name": "@expediagroup/spec-transformer",
"version": "1.11.1",
"description": "API Spec Transformer",
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/spec-transformer.git"
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"lib": "index.js",
"cli": "cli.js"
},
"scripts": {
"add-headers": "scripts/add-headers.sh",
"build": "rm -rf dist && npx tsc --pretty && rm -rf dist/test && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp CONTRIBUTING.md dist/CONTRIBUTING.md && cp .releaserc.json dist/.releaserc.json",
"start": "ts-node index.ts",
"test": "jest",
"semantic-release": "semantic-release"
},
"keywords": [
"openapi",
"api",
"specifications",
"transformer",
"specs",
"mapping"
],
"author": "Expedia Group <[email protected]>",
"contributors": [
"'Mohammad Noor' AbuKhleif <[email protected]> (https://github.com/mohnoor94)",
"Osama Salman <[email protected]> (https://github.com/osama-salman99)"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"commander": "12.1.0",
"js-yaml": "4.1.0",
"openapi-to-postmanv2": "4.22.0",
"openapi3-ts": "4.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/jest": "29.5.12",
"@types/js-yaml": "4.0.9",
"@types/node": "20.14.13",
"@types/openapi-to-postmanv2": "3.2.4",
"conventional-changelog-conventionalcommits": "8.0.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"semantic-release": "24.0.0",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"text",
"lcov",
"clover",
"json-summary"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}
}
},
"bugs": {
"url": "https://github.com/ExpediaGroup/spec-transformer/issues"
},
"homepage": "https://github.com/ExpediaGroup/spec-transformer#readme"
}

0 comments on commit 95d64b3

Please sign in to comment.