mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 18:12:26 -05:00 
			
		
		
		
	[chore]: Bump golang.org/x/oauth2 from 0.7.0 to 0.8.0 (#1785)
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.7.0 to 0.8.0. - [Commits](https://github.com/golang/oauth2/compare/v0.7.0...v0.8.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
		
					parent
					
						
							
								2b7c815ed6
							
						
					
				
			
			
				commit
				
					
						e1b7ab2603
					
				
			
		
					 8 changed files with 115 additions and 34 deletions
				
			
		
							
								
								
									
										20
									
								
								vendor/golang.org/x/net/html/doc.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								vendor/golang.org/x/net/html/doc.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -99,14 +99,20 @@ Care should be taken when parsing and interpreting HTML, whether full documents | |||
| or fragments, within the framework of the HTML specification, especially with | ||||
| regard to untrusted inputs. | ||||
| 
 | ||||
| This package provides both a tokenizer and a parser. Only the parser constructs | ||||
| a DOM according to the HTML specification, resolving malformed and misplaced | ||||
| tags where appropriate. The tokenizer simply tokenizes the HTML presented to it, | ||||
| and as such does not resolve issues that may exist in the processed HTML, | ||||
| producing a literal interpretation of the input. | ||||
| This package provides both a tokenizer and a parser, which implement the | ||||
| tokenization, and tokenization and tree construction stages of the WHATWG HTML | ||||
| parsing specification respectively. While the tokenizer parses and normalizes | ||||
| individual HTML tokens, only the parser constructs the DOM tree from the | ||||
| tokenized HTML, as described in the tree construction stage of the | ||||
| specification, dynamically modifying or extending the docuemnt's DOM tree. | ||||
| 
 | ||||
| If your use case requires semantically well-formed HTML, as defined by the | ||||
| WHATWG specification, the parser should be used rather than the tokenizer. | ||||
| If your use case requires semantically well-formed HTML documents, as defined by | ||||
| the WHATWG specification, the parser should be used rather than the tokenizer. | ||||
| 
 | ||||
| In security contexts, if trust decisions are being made using the tokenized or | ||||
| parsed content, the input must be re-serialized (for instance by using Render or | ||||
| Token.String) in order for those trust decisions to hold, as the process of | ||||
| tokenization or parsing may alter the content. | ||||
| */ | ||||
| package html // import "golang.org/x/net/html" | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue