Compare commits
18 Commits
1.0.0rc1
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b30c78c7b | |||
| ce72ba984c | |||
| 6826a1c91c | |||
| d4d0d9b27f | |||
| 6074b7c141 | |||
| 964b97b956 | |||
| e48046b504 | |||
| 70568be093 | |||
| efa789f07f | |||
| a7e971f861 | |||
| c9a345c38c | |||
| 9b1c30a5d4 | |||
| b4454afe82 | |||
| 527d8ffb96 | |||
| 90aa8d59bd | |||
| 7b83c34bfb | |||
| 170061f5da | |||
| 4f2397a473 |
2
.cz.yaml
2
.cz.yaml
@ -4,4 +4,4 @@ commitizen:
|
||||
name: cz_conventional_commits
|
||||
tag_format: $major.$minor.$patch$prerelease
|
||||
update_changelog_on_bump: true
|
||||
version: 1.0.0rc1
|
||||
version: 1.0.0rc4
|
||||
|
||||
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,3 +1,24 @@
|
||||
## 1.0.0rc4 (2023-08-19)
|
||||
|
||||
### Features
|
||||
|
||||
- **glpi**: [efa789f0](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/efa789f07fdf965a93a2b6fca3dbcb5072dd800c) - correct debug check [ [!12](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/12) ]
|
||||
|
||||
## 1.0.0rc3 (2023-08-19)
|
||||
|
||||
### Features
|
||||
|
||||
- **selfservice**: [9b1c30a5](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/9b1c30a5d4249b16a05078e4d6496961c0735194) - migrate external js to internal request [ [!11](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/11) ]
|
||||
- **NodeRED**: [b4454afe](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/b4454afe82ee0e99de98375548377204745a12f2) - add audit events to logging [ [!11](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/11) ]
|
||||
- **docker**: [527d8ffb](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/527d8ffb9696e13e326de4e3dfa434b2d1069128) - listen port updated to HTTP/80 [ [!11](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/11) ]
|
||||
- **docker**: [90aa8d59](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/90aa8d59bd00794dc085a07ef37a19c954e0208b) - remove specified data volumes [ [!11](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/11) ]
|
||||
|
||||
## 1.0.0rc2 (2023-08-19)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **callback_redirect**: [4f2397a4](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/commit/4f2397a473e13d649c92f3ef876f218d8e22ec3e) - dont use full url use relative [ [!10](https://gitlab.com/nofusscomputing/projects/nodered_ldap_self_service/-/merge_requests/10) ]
|
||||
|
||||
## 1.0.0rc1 (2023-08-18)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -53,6 +53,6 @@ USER node-red
|
||||
RUN cd /data; \
|
||||
npm install --unsafe-perm --no-update-notifier --no-fund --only=production passport passport-keycloak-oauth2-oidc;
|
||||
|
||||
HEALTHCHECK CMD curl http://localhost:1880/admin || exit 1
|
||||
HEALTHCHECK CMD curl http://localhost:80/admin || exit 1
|
||||
|
||||
VOLUME [ "/data", "/usr/src/node-red" ]
|
||||
EXPOSE 80
|
||||
|
||||
288
flows.json
288
flows.json
File diff suppressed because one or more lines are too long
Submodule gitlab-ci updated: 975de7aca2...9b57371358
@ -141,7 +141,7 @@ module.exports = {
|
||||
******************************************************************************/
|
||||
|
||||
/** the tcp port that the Node-RED web server is listening on */
|
||||
uiPort: process.env.PORT || 1880,
|
||||
uiPort: process.env.PORT || 80,
|
||||
|
||||
/** By default, the Node-RED UI accepts connections on all IPv4 interfaces.
|
||||
* To listen on all IPv6 addresses, set uiHost to "::",
|
||||
@ -298,7 +298,7 @@ module.exports = {
|
||||
/** Whether or not to include metric events in the log output */
|
||||
metrics: false,
|
||||
/** Whether or not to include audit events in the log output */
|
||||
audit: false
|
||||
audit: true
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user