Skip to content

Commit 17ee03a

Browse files
committed
1.0.14
1 parent a78895d commit 17ee03a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

Diff for: CHANGELOG.md

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

3-
f2880f2 update version in package.json to 1.0.13 (guseyn, Sun Nov 10 04:46:47 2024 +0400)
4-
1792fba update (guseyn, Sun Nov 10 04:46:45 2024 +0400)
3+
5832b15 update version in package.json to 1.0.14 (guseyn, Sun Nov 10 05:19:53 2024 +0400)
4+
5622599 update readme (guseyn, Sun Nov 10 05:19:51 2024 +0400)
5+
0a5e86a 1.0.13 (guseyn, Sun Nov 10 04:46:47 2024 +0400)
6+
e0b462b update version in package.json to 1.0.13 (guseyn, Sun Nov 10 04:46:47 2024 +0400)
7+
a530eb4 update (guseyn, Sun Nov 10 04:46:45 2024 +0400)
58
dfd662c 1.0.12 (guseyn, Sun Nov 10 04:39:44 2024 +0400)
69
e0f4470 update version in package.json to 1.0.12 (guseyn, Sun Nov 10 04:39:44 2024 +0400)
710
01755a8 update readme (guseyn, Sun Nov 10 04:34:14 2024 +0400)

Diff for: README.md

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

7474
```json
7575
{
76-
"host": "1.0.13.0",
76+
"host": "1.0.14.0",
7777
"port": 8004,
7878
"key": "./ssl/key.pem",
7979
"cert": "./ssl/cert.pem"
@@ -120,8 +120,8 @@ cluster('example/primary.js', 'example/worker.js')({ config, logFile })
120120
Logs in the file have following format:
121121

122122
```
123-
2024-11-09T15:21:03.885Z - worker (pid:35119) - HTTP/2 server running at https://1.0.13.0:8004
124-
2024-11-09T15:21:03.885Z - worker (pid:35120) - HTTP/2 server running at https://1.0.13.0:8004
123+
2024-11-09T15:21:03.885Z - worker (pid:35119) - HTTP/2 server running at https://1.0.14.0:8004
124+
2024-11-09T15:21:03.885Z - worker (pid:35120) - HTTP/2 server running at https://1.0.14.0:8004
125125
```
126126

127127
Use `global.log()` function to write logs to file. By default, this function writes to console.
@@ -294,7 +294,7 @@ const handler = ({
294294
295295
const corsOptions = {
296296
cacheControl: 'cache, public, max-age=432000',
297-
allowedOrigins: [ '1.0.13.220', '1.0.13.1:8004' ], // can also be just a string '*' (default)
297+
allowedOrigins: [ '1.0.14.220', '1.0.14.1:8004' ], // can also be just a string '*' (default)
298298
allowedMethods: [ 'GET', 'OPTIONS' ], // it's default
299299
allowedHeaders: [ 'Content-Type', 'Authorization' ], // can also be just a string '*' (default)
300300
allowedCredentials: true,
@@ -416,7 +416,7 @@ function staticMapper(requestUrl) {
416416
const options = {
417417
useGzip: true,
418418
cacheControl: 'cache, public, max-age=432000',
419-
allowedOrigins: [ '1.0.13.220', '1.0.13.1:8004' ], // can also be just a string '*' (default)
419+
allowedOrigins: [ '1.0.14.220', '1.0.14.1:8004' ], // can also be just a string '*' (default)
420420
allowedMethods: [ 'GET', 'OPTIONS' ], // it's default
421421
allowedHeaders: [ 'Content-Type', 'Authorization' ], // can also be just a string '*' (default)
422422
allowedCredentials: true,
@@ -502,7 +502,7 @@ If you specify `<cli>` instead of values in your config, you will be asked to in
502502
// local.env
503503

504504
{
505-
"host": "1.0.13.0",
505+
"host": "1.0.14.0",
506506
"port": 8004,
507507
"key": "./example/ssl/key.pem",
508508
"cert": "./example/ssl/cert.pem",

0 commit comments

Comments
 (0)