Commits on Source (9)
-
Stefan Hynek authored
-
Stefan Hynek authored
also, update node images to v18; add jobs for sbom creation and upload close #35
-
Stefan Hynek authored
Resolve "generate and upload sbom on release" Closes #35 See merge request !23
-
Stefan Hynek authored
refactor(config): wrap all settings that can be configured from the environment in an AppConfig object
-
Stefan Hynek authored
this allows for configuration of the textgrid host from the environment
-
Stefan Hynek authored
this includes, host, port, and the newly introduced tg_host key
-
Stefan Hynek authored
-
Stefan Hynek authored
Resolve "make host, port, dsn and textgrid host configurable" Closes #36 See merge request !24
-
Stefan Hynek authored
# [1.2.0](1.1.3...1.2.0) (2023-01-09) ### Features * **textgrid_dav_provider:** initialize textgrid config with "tg_host" from wsgidav environ ([fab21bcf](fab21bcf))
Showing
- .gitlab-ci.yml 47 additions, 4 deletions.gitlab-ci.yml
- CHANGELOG.md 7 additions, 0 deletionsCHANGELOG.md
- docker-compose.yml 5 additions, 8 deletionsdocker-compose.yml
- package-lock.json 3063 additions, 1433 deletionspackage-lock.json
- package.json 6 additions, 4 deletionspackage.json
- src/main.py 11 additions, 13 deletionssrc/main.py
- src/repdav/config.py 31 additions, 43 deletionssrc/repdav/config.py
- src/repdav/textgrid_dav_provider.py 18 additions, 5 deletionssrc/repdav/textgrid_dav_provider.py
This diff is collapsed.
... | ... | @@ -2,10 +2,11 @@ |
"name": "repdav", | ||
"private": true, | ||
"devDependencies": { | ||
"@semantic-release/changelog": "^6.0.1", | ||
"@appthreat/cdxgen": "^6.0.0", | ||
"@semantic-release/changelog": "^6.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/gitlab": "^7.0.4", | ||
"semantic-release": "^19.0.2" | ||
"@semantic-release/gitlab": "^9.5.1", | ||
"semantic-release": "^19.0.5" | ||
}, | ||
"release": { | ||
"branches": [ | ||
... | ... | @@ -38,7 +39,8 @@ |
{ | ||
"assets": [ | ||
"CHANGELOG.md" | ||
] | ||
], | ||
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}" | ||
} | ||
] | ||
] | ||
... | ... |