@toptal/davinci-ci 7.1.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2361](https://github.com/toptal/davinci/pull/2361) [`44dabdcc`](https://github.com/toptal/davinci/commit/44dabdcc5d4fe91dec2e4a38895c353663cc0ea5) Thanks [@augustobmoura](https://github.com/augustobmoura)!
8
+
9
+ ### davinci-ci
10
+
11
+ - change ngninx index.html caching to CDN only
12
+
3
13
  ## 7.1.0
4
14
 
5
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "keywords": [
5
5
  "ci",
6
6
  "docker",
@@ -13,8 +13,9 @@ server {
13
13
  }
14
14
 
15
15
  location / {
16
- # by default we are adding cache of 1 hour, this also affects CDN caching
17
- add_header Cache-Control "public, max-age=3600";
16
+ # by default we are adding cache of 1 hour fo CDN only
17
+ add_header CDN-Cache-Control "public, max-age=3600";
18
+ add_header Cache-Tag "davinci,spa,index-doc";
18
19
  try_files $uri /index.html;
19
20
  }
20
21
  }