mirror of https://github.com/containers/podman.git
				
				
				
			Merge pull request #4448 from containers/dependabot/go_modules/gopkg.in/yaml.v2-2.2.5
Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.5
This commit is contained in:
		
						commit
						08c5c546dc
					
				
							
								
								
									
										2
									
								
								go.mod
								
								
								
								
							
							
						
						
									
										2
									
								
								go.mod
								
								
								
								
							|  | @ -71,7 +71,7 @@ require ( | |||
| 	google.golang.org/appengine v1.6.1 // indirect | ||||
| 	google.golang.org/genproto v0.0.0-20190620144150-6af8c5fc6601 // indirect | ||||
| 	gopkg.in/inf.v0 v0.9.1 // indirect | ||||
| 	gopkg.in/yaml.v2 v2.2.4 | ||||
| 	gopkg.in/yaml.v2 v2.2.5 | ||||
| 	k8s.io/api v0.0.0-20190813020757-36bff7324fb7 | ||||
| 	k8s.io/apimachinery v0.0.0-20190809020650-423f5d784010 | ||||
| 	k8s.io/client-go v0.0.0-20190620085101-78d2af792bab | ||||
|  |  | |||
							
								
								
									
										2
									
								
								go.sum
								
								
								
								
							
							
						
						
									
										2
									
								
								go.sum
								
								
								
								
							|  | @ -542,6 +542,8 @@ gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= | |||
| gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||
| gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= | ||||
| gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||
| gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c= | ||||
| gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||
| gotest.tools v0.0.0-20190624233834-05ebafbffc79/go.mod h1:R//lfYlUuTOTfblYI3lGoAAAebUdzjvbmQsuB7Ykd90= | ||||
| gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= | ||||
| gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= | ||||
|  |  | |||
|  | @ -319,10 +319,14 @@ func (d *decoder) prepare(n *node, out reflect.Value) (newout reflect.Value, unm | |||
| } | ||||
| 
 | ||||
| const ( | ||||
| 	// 400,000 decode operations is ~500kb of dense object declarations, or ~5kb of dense object declarations with 10000% alias expansion
 | ||||
| 	// 400,000 decode operations is ~500kb of dense object declarations, or
 | ||||
| 	// ~5kb of dense object declarations with 10000% alias expansion
 | ||||
| 	alias_ratio_range_low = 400000 | ||||
| 	// 4,000,000 decode operations is ~5MB of dense object declarations, or ~4.5MB of dense object declarations with 10% alias expansion
 | ||||
| 
 | ||||
| 	// 4,000,000 decode operations is ~5MB of dense object declarations, or
 | ||||
| 	// ~4.5MB of dense object declarations with 10% alias expansion
 | ||||
| 	alias_ratio_range_high = 4000000 | ||||
| 
 | ||||
| 	// alias_ratio_range is the range over which we scale allowed alias ratios
 | ||||
| 	alias_ratio_range = float64(alias_ratio_range_high - alias_ratio_range_low) | ||||
| ) | ||||
|  | @ -784,8 +788,7 @@ func (d *decoder) merge(n *node, out reflect.Value) { | |||
| 	case mappingNode: | ||||
| 		d.unmarshal(n, out) | ||||
| 	case aliasNode: | ||||
| 		an, ok := d.doc.anchors[n.value] | ||||
| 		if ok && an.kind != mappingNode { | ||||
| 		if n.alias != nil && n.alias.kind != mappingNode { | ||||
| 			failWantMap() | ||||
| 		} | ||||
| 		d.unmarshal(n, out) | ||||
|  | @ -794,8 +797,7 @@ func (d *decoder) merge(n *node, out reflect.Value) { | |||
| 		for i := len(n.children) - 1; i >= 0; i-- { | ||||
| 			ni := n.children[i] | ||||
| 			if ni.kind == aliasNode { | ||||
| 				an, ok := d.doc.anchors[ni.value] | ||||
| 				if ok && an.kind != mappingNode { | ||||
| 				if ni.alias != nil && ni.alias.kind != mappingNode { | ||||
| 					failWantMap() | ||||
| 				} | ||||
| 			} else if ni.kind != mappingNode { | ||||
|  |  | |||
|  | @ -566,7 +566,7 @@ gopkg.in/fsnotify.v1 | |||
| gopkg.in/inf.v0 | ||||
| # gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 | ||||
| gopkg.in/tomb.v1 | ||||
| # gopkg.in/yaml.v2 v2.2.4 | ||||
| # gopkg.in/yaml.v2 v2.2.5 | ||||
| gopkg.in/yaml.v2 | ||||
| # k8s.io/api v0.0.0-20190813020757-36bff7324fb7 | ||||
| k8s.io/api/core/v1 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue