Skip to content

Commit b6afdf7

Browse files
committed
1.0.23
1 parent 5b1fcfe commit b6afdf7

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# Release 1.0.22
1+
# Release 1.0.23
22

3-
3aad2bb update version in package.json to 1.0.22 (guseyn, Thu Nov 14 21:42:14 2024 +0400)
4-
2892dbc fix release (guseyn, Thu Nov 14 21:42:11 2024 +0400)
3+
06c2011 update version in package.json to 1.0.23 (guseyn, Thu Nov 14 21:54:00 2024 +0400)
4+
42a990d fix ehtml logo (guseyn, Thu Nov 14 21:53:57 2024 +0400)
5+
c675e7a 1.0.22 (guseyn, Thu Nov 14 21:42:14 2024 +0400)
6+
135b6fc update version in package.json to 1.0.22 (guseyn, Thu Nov 14 21:42:14 2024 +0400)
7+
91fff36 fix release (guseyn, Thu Nov 14 21:42:11 2024 +0400)
58
a75ff8b fix release (guseyn, Thu Nov 14 21:33:13 2024 +0400)
69
e6e799f fix release (guseyn, Thu Nov 14 21:28:32 2024 +0400)
710
3d54eab fix release (guseyn, Thu Nov 14 21:26:19 2024 +0400)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Config at least must contain following values:
9292

9393
```json
9494
{
95-
"host": "1.0.22.0",
95+
"host": "1.0.23.0",
9696
"port": 8004,
9797
"key": "./ssl/key.pem",
9898
"cert": "./ssl/cert.pem"
@@ -141,8 +141,8 @@ cluster('example/primary.js', 'example/worker.js')({ config, logFile })
141141
Logs in the file have following format:
142142

143143
```
144-
2024-11-09T15:21:03.885Z - worker (pid:35119) - HTTP/2 server running at https://1.0.22.0:8004
145-
2024-11-09T15:21:03.885Z - worker (pid:35120) - HTTP/2 server running at https://1.0.22.0:8004
144+
2024-11-09T15:21:03.885Z - worker (pid:35119) - HTTP/2 server running at https://1.0.23.0:8004
145+
2024-11-09T15:21:03.885Z - worker (pid:35120) - HTTP/2 server running at https://1.0.23.0:8004
146146
```
147147

148148
Use `global.log()` function to write logs to file. By default, this function writes to console.
@@ -369,7 +369,7 @@ const handler = ({
369369
}
370370
371371
const corsOptions = {
372-
allowedOrigins: [ '1.0.22.220', '1.0.22.1:8004' ], // can also be just a string '*' (default)
372+
allowedOrigins: [ '1.0.23.220', '1.0.23.1:8004' ], // can also be just a string '*' (default)
373373
allowedMethods: [ 'GET', 'OPTIONS' ], // it's default
374374
allowedHeaders: [ 'Content-Type', 'Authorization' ], // can also be just a string '*' (default)
375375
allowedCredentials: true,
@@ -527,7 +527,7 @@ const baseFolder = path.join('example', 'static')
527527

528528
const options = {
529529
baseFolder,
530-
allowedOrigins: [ '1.0.22.220', '1.0.22.1:8004' ], // can also be just a string '*' (default)
530+
allowedOrigins: [ '1.0.23.220', '1.0.23.1:8004' ], // can also be just a string '*' (default)
531531
allowedMethods: [ 'GET', 'OPTIONS' ], // it's default
532532
allowedHeaders: [ 'Content-Type', 'Authorization' ], // can also be just a string '*' (default)
533533
allowedCredentials: true,
@@ -616,7 +616,7 @@ If you specify `<cli>` instead of values in your config, you will be asked to in
616616
// local.env
617617

618618
{
619-
"host": "1.0.22.0",
619+
"host": "1.0.23.0",
620620
"port": 8004,
621621
"key": "./example/ssl/key.pem",
622622
"cert": "./example/ssl/cert.pem",

0 commit comments

Comments
 (0)