Skip to content

Commit d3f5dc5

Browse files
authored
Release 3.39.0
2 parents d60f1bc + 22dcc1c commit d3f5dc5

File tree

169 files changed

+6674
-3126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+6674
-3126
lines changed

.github/workflows/pull-request-update.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
cache-to: type=gha,mode=max
3131
- name: Run tests with timezone
3232
uses: docker/build-push-action@v3
33+
if: false # disable additional timezone tests for now
3334
with:
3435
context: ./
3536
file: ./build/Dockerfile

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Run the following commands from the root folder to build, run and kill the application
44
# >> docker build -f build/Dockerfile -t aam-digital .
55
# >> docker run -p=80:80 aam-digital
6-
FROM node:18.16.1-alpine3.18 AS builder
6+
FROM node:18.20.4-alpine3.20 AS builder
77
WORKDIR /app
88

99
COPY package*.json ./

build/default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ server {
3939
root /usr/share/nginx/html;
4040
}
4141

42-
# The proxy path should be the same as in AppSettings.DB_PROXY_PREFIX
42+
# The proxy path should be the same as in environment.DB_PROXY_PREFIX
4343
location ^~ /db {
4444
rewrite /db/(.*) /$1 break;
4545
proxy_pass ${COUCHDB_URL};

doc/compodoc_sources/how-to-guides/generate-demo-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This Guide walks you through the steps to add data to this demo mode for your ow
1515
In the AppModule (or wherever you import the DemoDataModule) add your service provider:
1616
_ e.g. `DemoDataModule.forRoot([{ provide: DemoUserGeneratorService, useClass: DemoUserGeneratorService }])`
1717
_ When the DemoDataModule is loaded your generator is then also triggered.
18-
1. Change your `config.json` and set `database.useTemporaryDatabase: true` to start the app with in demo mode
18+
1. Change your `config.json` and set `demo_mode: true` to start the app with in demo mode
1919
and get your data generated on startup.
2020

2121
## Creating realistic, random data

doc/compodoc_sources/how-to-guides/log-errors.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ If you need to output information for possible debugging that is not handled oth
1111
This way, all logging is done in a consistent manner and can possibly be transferred to the development team or saved in some other way.
1212

1313
To log information for analysis and debugging (without explicit notification to the user)
14-
use the [LoggingService](../../injectables/LoggingService.html):
14+
use the [Logging](../../injectables/LoggingService.html) object:
1515

1616
```
17-
constructor(private logger: LoggingService) {
18-
this.logger.error('some error information');
17+
someFun() {
18+
Logging.error('some error information');
1919
}
2020
```
2121

0 commit comments

Comments
 (0)