@toptal/davinci-ci 4.0.12 → 4.1.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,12 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Change Log
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ## 4.1.0
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            ### Minor Changes
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            - [#2109](https://github.com/toptal/davinci/pull/2109) [`92960bf4`](https://github.com/toptal/davinci/commit/92960bf4c2dfcfd3e8f3ec271a853b263c72873f) Thanks [@tiagoporto](https://github.com/tiagoporto)!
         
     | 
| 
      
 8 
     | 
    
         
            +
            - increase PR title regex to 8 characters
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
       3 
10 
     | 
    
         
             
            ## 4.0.12
         
     | 
| 
       4 
11 
     | 
    
         | 
| 
       5 
12 
     | 
    
         
             
            ### Patch Changes
         
     | 
    
        package/package.json
    CHANGED
    
    
| 
         @@ -3,7 +3,7 @@ const WHITELISTED_USERS = [ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              'dependabot[bot]',
         
     | 
| 
       4 
4 
     | 
    
         
             
              'toptal-devbot',
         
     | 
| 
       5 
5 
     | 
    
         
             
            ]
         
     | 
| 
       6 
     | 
    
         
            -
            const VALID_PR_CODE_REGEX = /\[[A-Z]{1, 
     | 
| 
      
 6 
     | 
    
         
            +
            const VALID_PR_CODE_REGEX = /\[[A-Z]{1,8}-.*]\s/
         
     | 
| 
       7 
7 
     | 
    
         
             
            // Valid commit titles:
         
     | 
| 
       8 
8 
     | 
    
         
             
            // "Regular commit message"
         
     | 
| 
       9 
9 
     | 
    
         
             
            // "Commit with sentence. But does not end with a full-stop"
         
     | 
| 
         @@ -87,7 +87,7 @@ pipeline { 
     | 
|
| 
       87 
87 
     | 
    
         | 
| 
       88 
88 
     | 
    
         
             
                      if helm secrets upgrade \
         
     | 
| 
       89 
89 
     | 
    
         
             
                        --namespace=${params.RELEASE} \
         
     | 
| 
       90 
     | 
    
         
            -
                        --install --wait --timeout  
     | 
| 
      
 90 
     | 
    
         
            +
                        --install --wait --timeout 600s \
         
     | 
| 
       91 
91 
     | 
    
         
             
                        -f helm_vars/${chart}/temploy/values.yaml \
         
     | 
| 
       92 
92 
     | 
    
         
             
                        -f helm_vars/${chart}/temploy/secrets.yaml \
         
     | 
| 
       93 
93 
     | 
    
         
             
                        -f helm_vars/tls-certs/toptal.rocks/values.yaml \
         
     |