Skip to content

Commit

Permalink
Updated CHANGELOG and resolved linting warning
Browse files Browse the repository at this point in the history
git push
  • Loading branch information
SeriousHorncat committed Dec 16, 2024
1 parent 5722f50 commit 8ef39d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ Variant annotations were rendering vertically and it was taking too much space.
- Analyses have a version manifest of annotation's dataset, source, and version
- Increased VueJS version to 3.5.12 to use TemplateRef as a feature

### Development

- Minimum NodeJS version increased to v23.4 to support upgrading package dependencies to avoid reported vulnerabilities
- ESlint upgrade to 9 and migrating configuration to flat file config

### Bugs

- Fixed developer API endpoint so that existing analyses can queue their annotations to be rendered again if desired.
- Backend starts takes over the shell process allowing it to receive SIGTERM for graceful shutdown

## 0.7.0

Expand Down
2 changes: 1 addition & 1 deletion etc/fixtures/production.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM mongo:5.0.9 as production-stage
FROM mongo:5.0.9 AS production-stage
COPY --chmod=0777 ./initial-seed/initial-db-seed.sh /docker-entrypoint-initdb.d/initial-db-seed.sh
COPY ./initial-seed/ /tmp/fixtures/initial-seed/
4 changes: 3 additions & 1 deletion frontend/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default defineConfig({
test: {
environment: 'happy-dom',
coverage: {
exclude: ['test', 'src/requests.js', 'eslint.config.js', 'eslint-config-cgds.js', 'src/main.js', 'vite.config.js'],
exclude: [
'test', 'src/requests.js', 'eslint.config.js', 'eslint-config-cgds.js', 'src/main.js', 'vite.config.js',
],
lines: 80,
functions: 80,
branches: 80,
Expand Down

0 comments on commit 8ef39d1

Please sign in to comment.