Skip to content

Commit

Permalink
Merge branch 'main' into 296-protect-private-segment-functions-when-c…
Browse files Browse the repository at this point in the history
…alled-from-the-same-node
  • Loading branch information
petermasking committed Oct 2, 2024
2 parents ee4933e + 4c9f3c0 commit 27516bf
Show file tree
Hide file tree
Showing 30 changed files with 1,507 additions and 12,640 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended"
"plugin:sonarjs/recommended-legacy"
],
"rules":
{
Expand Down
19 changes: 19 additions & 0 deletions .sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
sonar.projectKey=jitar
sonar.projectName=jitar
sonar.langugage=typescript

# Path to sources
sonar.sources=packages/**/src
#sonar.exclusions=
#sonar.inclusions=

# Path to tests
sonar.tests=packages/**/test
sonar.test.exclusions=packages/**/test/_fixtures/**/*
#sonar.test.inclusions=

# Source encoding
sonar.sourceEncoding=UTF-8

# Exclusions for copy-paste detection
#sonar.cpd.exclusions=
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# v0.7.4
[2024-04-02]
# v0.7.5
[2024-06-03]

### Fixes

* \[[503](https://github.com/MaskingTechnology/jitar/pull/503)] fix(runtime): environment specific loading of Jitar (#503) by Peter van Vliet

### Chores

* \[[526](https://github.com/MaskingTechnology/jitar/pull/526)] chore: sonar issues (#526) by Bas Meeuwissen
* \[[524](https://github.com/MaskingTechnology/jitar/pull/524)] chore(deps): june updates (#524) by dependabot[bot]
* \[[522](https://github.com/MaskingTechnology/jitar/pull/522)] chore(examples): exclude webui folder (#522) by Bas Meeuwissen
* \[[520](https://github.com/MaskingTechnology/jitar/pull/520)] chore(deps): bump rollup from 4.14.0 to 4.17.2 (#520) by dependabot[bot]
* \[[518](https://github.com/MaskingTechnology/jitar/pull/518)] chore: build improvements (#518) by dependabot[bot]
* \[[519](https://github.com/MaskingTechnology/jitar/pull/519)] chore(build): simplify monorepo setup (#519) by Bas Meeuwissen
* \[[517](https://github.com/MaskingTechnology/jitar/pull/517)] chore: release version 0.7.4 (#517) by Bas Meeuwissen
* \[[515](https://github.com/MaskingTechnology/jitar/pull/515)] chore(creator): Jitar updates in templates (#515) by Bas Meeuwissen
* \[[513](https://github.com/MaskingTechnology/jitar/pull/513)] chore(deps): wildcard for internal @jitar package versions (#513) by Bas Meeuwissen
* \[[511](https://github.com/MaskingTechnology/jitar/pull/511)] chore(deps): april update (#511) by Bas Meeuwissen
Expand Down
8 changes: 4 additions & 4 deletions documentation/docs/about/our-team.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ const members = [
]
},
{
avatar: 'https://github.com/BasMasking.png',
avatar: 'https://github.com/basmasking.png',
name: 'Bas Meeuwissen',
title: 'Co-author',
desc: 'Experienced low-code architect. Knows the true meaning of automation.',
links: [
{ icon: 'github', link: 'https://github.com/BasMasking' },
{ icon: 'github', link: 'https://github.com/basmasking' },
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/basmeeuwissen/' }
]
},
{
avatar: 'https://github.com/JohnatMasking.png',
avatar: 'https://github.com/johnmasking.png',
name: 'John Meeuwissen',
title: 'QA',
desc: 'Experienced integration specialist. Yoda like testing and breaking skills.',
links: [
{ icon: 'github', link: 'https://github.com/JohnatMasking' },
{ icon: 'github', link: 'https://github.com/johnmasking' },
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/john-meeuwissen-0a880a9/' }
]
}
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/monitor/procedures.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ The API returns a list of procedure names (FQNs) that are registered with this s

``` json
[
procedure1,
procedure2
"procedure1",
"procedure2"
]
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/monitor/workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This returns a list of registered workers. Per worker the url and procedure name
"url": "http://worker.example.com:3002",
"procedureNames": [
"procedure1",
procedure2
"procedure2"
]
}
]
Expand Down
1,136 changes: 678 additions & 458 deletions documentation/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"vitepress": "^1.0.0-rc.44"
"vitepress": "^1.3.0"
}
}
14 changes: 7 additions & 7 deletions examples/apps/full-stack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
},
"dependencies": {
"jitar": "*",
"mongodb": "^6.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"mongodb": "^6.8.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@jitar/plugin-vite": "*",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "*",
"typescript": "5.4.3",
"vite": "^5.2.8"
"typescript": "5.5.3",
"vite": "^5.3.3"
}
}
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.7.4",
"version": "0.7.5",
"command": {
"version": {
"message": "chore(release): publish %s"
}
}
}
}
Loading

0 comments on commit 27516bf

Please sign in to comment.