Skip to content

Commit

Permalink
feat: 3.0.0 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bugs5382 authored Sep 23, 2024
2 parents 0ca9d32 + 743e34c commit 5f5cc9a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 40 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/deploy-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,29 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Merge:
runs-on: ubuntu-latest
needs: [ 'Test', 'Release' ]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
ref: develop
- name: Configure Git
run: |
git config --global user.email "bugs5382@users.noreply.github.com"
git config --global user.name "Bugs5382"
- name: Merge main into develop
run: |
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}
git fetch origin
git checkout develop
git merge origin/main -m "chore: merge main into develop [ci skip]"
git push origin develop
Docs:
runs-on: ubuntu-latest
needs: [ 'Release' ]
needs: [ 'Merge', 'Release' ]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
Expand All @@ -74,24 +94,4 @@ jobs:
github_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./docs
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
Merge:
runs-on: ubuntu-latest
needs: [ 'Test', 'Release' ]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
ref: develop
- name: Configure Git
run: |
git config --global user.email "bugs5382@users.noreply.github.com"
git config --global user.name "Bugs5382"
- name: Merge main into develop
run: |
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}
git fetch origin
git checkout develop
git merge origin/main -m "chore: merge main into develop [ci skip]"
git push origin develop
user_email: 'github-actions[bot]@users.noreply.github.com'
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lib/"
],
"engines": {
"node": ">=20.0.0"
"node": ">=20.15.0"
},
"scripts": {
"clean": "rm -rf lib coverage docs",
Expand Down Expand Up @@ -58,36 +58,36 @@
"homepage": "https://github.com/Bugs5382/fastify-hl7#readme",
"dependencies": {
"@fastify/error": "^4.0.0",
"fastify-plugin": "^4.5.1",
"node-hl7-client": "^2.3.0",
"node-hl7-server": "^2.4.0"
"fastify-plugin": "^5.0.1",
"node-hl7-client": "^2.3.1",
"node-hl7-server": "^3.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@the-rabbit-hole/semantic-release-config": "^1.5.0",
"@types/node": "^20.14.8",
"@types/node": "^22.5.5",
"@types/randomstring": "^1.3.0",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"fastify": "^4.28.0",
"npm-check-updates": "^16.14.20",
"@typescript-eslint/parser": "^8.6.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"fastify": "^5.0.0",
"npm-check-updates": "^17.1.3",
"npm-package-json-lint": "^8.0.0",
"portfinder": "^1.0.32",
"pre-commit": "^1.2.2",
"semantic-release": "^22.0.12",
"semantic-release": "^24.1.1",
"snazzy": "^9.0.0",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"tsd": "^0.31.1",
"typedoc": "^0.26.2",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
"tsd": "^0.31.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"precommit": [
"lint:fix",
Expand Down
2 changes: 1 addition & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"tsconfig": "src/tsconfig.esm.json",
"entryPoints": ["./src/api.ts"],
"githubPages": false,
"includeVersion": false,
"includeVersion": true,
"out": "docs",
"name": "Fastify HL7",
"sidebarLinks": {
Expand Down

0 comments on commit 5f5cc9a

Please sign in to comment.