mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 00:42:24 -05:00 
			
		
		
		
	Bump golang.org/x/text from 0.3.7 to 0.4.0 (#981)
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.4.0. - [Release notes](https://github.com/golang/text/releases) - [Commits](https://github.com/golang/text/compare/v0.3.7...v0.4.0) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> 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
					
						
							
								1a23fb0dc9
							
						
					
				
			
			
				commit
				
					
						1638470388
					
				
			
		
					 27 changed files with 649 additions and 636 deletions
				
			
		
							
								
								
									
										26
									
								
								vendor/golang.org/x/text/unicode/bidi/core.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								vendor/golang.org/x/text/unicode/bidi/core.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -193,14 +193,14 @@ func (p *paragraph) run() { | |||
| // | ||||
| // At the end of this function: | ||||
| // | ||||
| //  - The member variable matchingPDI is set to point to the index of the | ||||
| //    matching PDI character for each isolate initiator character. If there is | ||||
| //    no matching PDI, it is set to the length of the input text. For other | ||||
| //    characters, it is set to -1. | ||||
| //  - The member variable matchingIsolateInitiator is set to point to the | ||||
| //    index of the matching isolate initiator character for each PDI character. | ||||
| //    If there is no matching isolate initiator, or the character is not a PDI, | ||||
| //    it is set to -1. | ||||
| //   - The member variable matchingPDI is set to point to the index of the | ||||
| //     matching PDI character for each isolate initiator character. If there is | ||||
| //     no matching PDI, it is set to the length of the input text. For other | ||||
| //     characters, it is set to -1. | ||||
| //   - The member variable matchingIsolateInitiator is set to point to the | ||||
| //     index of the matching isolate initiator character for each PDI character. | ||||
| //     If there is no matching isolate initiator, or the character is not a PDI, | ||||
| //     it is set to -1. | ||||
| func (p *paragraph) determineMatchingIsolates() { | ||||
| 	p.matchingPDI = make([]int, p.Len()) | ||||
| 	p.matchingIsolateInitiator = make([]int, p.Len()) | ||||
|  | @ -435,7 +435,7 @@ func maxLevel(a, b level) level { | |||
| } | ||||
| 
 | ||||
| // Rule X10, second bullet: Determine the start-of-sequence (sos) and end-of-sequence (eos) types, | ||||
| // 			 either L or R, for each isolating run sequence. | ||||
| // either L or R, for each isolating run sequence. | ||||
| func (p *paragraph) isolatingRunSequence(indexes []int) *isolatingRunSequence { | ||||
| 	length := len(indexes) | ||||
| 	types := make([]Class, length) | ||||
|  | @ -495,9 +495,9 @@ func (s *isolatingRunSequence) resolveWeakTypes() { | |||
| 		if t == NSM { | ||||
| 			s.types[i] = precedingCharacterType | ||||
| 		} else { | ||||
| 			if t.in(LRI, RLI, FSI, PDI) { | ||||
| 				precedingCharacterType = ON | ||||
| 			} | ||||
| 			// if t.in(LRI, RLI, FSI, PDI) { | ||||
| 			// 	precedingCharacterType = ON | ||||
| 			// } | ||||
| 			precedingCharacterType = t | ||||
| 		} | ||||
| 	} | ||||
|  | @ -905,7 +905,7 @@ func (p *paragraph) getLevels(linebreaks []int) []level { | |||
| // Lines are concatenated from left to right. So for example, the fifth | ||||
| // character from the left on the third line is | ||||
| // | ||||
| // 		getReordering(linebreaks)[linebreaks[1] + 4] | ||||
| //	getReordering(linebreaks)[linebreaks[1] + 4] | ||||
| // | ||||
| // (linebreaks[1] is the position after the last character of the second | ||||
| // line, which is also the index of the first character on the third line, | ||||
|  |  | |||
							
								
								
									
										9
									
								
								vendor/golang.org/x/text/unicode/norm/forminfo.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								vendor/golang.org/x/text/unicode/norm/forminfo.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -110,10 +110,11 @@ func (p Properties) BoundaryAfter() bool { | |||
| } | ||||
| 
 | ||||
| // We pack quick check data in 4 bits: | ||||
| //   5:    Combines forward  (0 == false, 1 == true) | ||||
| //   4..3: NFC_QC Yes(00), No (10), or Maybe (11) | ||||
| //   2:    NFD_QC Yes (0) or No (1). No also means there is a decomposition. | ||||
| //   1..0: Number of trailing non-starters. | ||||
| // | ||||
| //	5:    Combines forward  (0 == false, 1 == true) | ||||
| //	4..3: NFC_QC Yes(00), No (10), or Maybe (11) | ||||
| //	2:    NFD_QC Yes (0) or No (1). No also means there is a decomposition. | ||||
| //	1..0: Number of trailing non-starters. | ||||
| // | ||||
| // When all 4 bits are zero, the character is inert, meaning it is never | ||||
| // influenced by normalization. | ||||
|  |  | |||
							
								
								
									
										11
									
								
								vendor/golang.org/x/text/unicode/norm/normalize.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/golang.org/x/text/unicode/norm/normalize.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -18,16 +18,17 @@ import ( | |||
| // A Form denotes a canonical representation of Unicode code points. | ||||
| // The Unicode-defined normalization and equivalence forms are: | ||||
| // | ||||
| //   NFC   Unicode Normalization Form C | ||||
| //   NFD   Unicode Normalization Form D | ||||
| //   NFKC  Unicode Normalization Form KC | ||||
| //   NFKD  Unicode Normalization Form KD | ||||
| //	NFC   Unicode Normalization Form C | ||||
| //	NFD   Unicode Normalization Form D | ||||
| //	NFKC  Unicode Normalization Form KC | ||||
| //	NFKD  Unicode Normalization Form KD | ||||
| // | ||||
| // For a Form f, this documentation uses the notation f(x) to mean | ||||
| // the bytes or string x converted to the given form. | ||||
| // A position n in x is called a boundary if conversion to the form can | ||||
| // proceed independently on both sides: | ||||
| //   f(x) == append(f(x[0:n]), f(x[n:])...) | ||||
| // | ||||
| //	f(x) == append(f(x[0:n]), f(x[n:])...) | ||||
| // | ||||
| // References: https://unicode.org/reports/tr15/ and | ||||
| // https://unicode.org/notes/tn5/. | ||||
|  |  | |||
							
								
								
									
										4
									
								
								vendor/golang.org/x/text/unicode/norm/tables13.0.0.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/text/unicode/norm/tables13.0.0.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -7315,7 +7315,7 @@ const recompMapPacked = "" + | |||
| 	"\x00V\x03\x03\x00\x00\x1e|" + // 0x00560303: 0x00001E7C | ||||
| 	"\x00v\x03\x03\x00\x00\x1e}" + // 0x00760303: 0x00001E7D | ||||
| 	"\x00V\x03#\x00\x00\x1e~" + // 0x00560323: 0x00001E7E | ||||
| 	"\x00v\x03#\x00\x00\x1e\u007f" + // 0x00760323: 0x00001E7F | ||||
| 	"\x00v\x03#\x00\x00\x1e\x7f" + // 0x00760323: 0x00001E7F | ||||
| 	"\x00W\x03\x00\x00\x00\x1e\x80" + // 0x00570300: 0x00001E80 | ||||
| 	"\x00w\x03\x00\x00\x00\x1e\x81" + // 0x00770300: 0x00001E81 | ||||
| 	"\x00W\x03\x01\x00\x00\x1e\x82" + // 0x00570301: 0x00001E82 | ||||
|  | @ -7342,7 +7342,7 @@ const recompMapPacked = "" + | |||
| 	"\x00t\x03\b\x00\x00\x1e\x97" + // 0x00740308: 0x00001E97 | ||||
| 	"\x00w\x03\n\x00\x00\x1e\x98" + // 0x0077030A: 0x00001E98 | ||||
| 	"\x00y\x03\n\x00\x00\x1e\x99" + // 0x0079030A: 0x00001E99 | ||||
| 	"\x01\u007f\x03\a\x00\x00\x1e\x9b" + // 0x017F0307: 0x00001E9B | ||||
| 	"\x01\x7f\x03\a\x00\x00\x1e\x9b" + // 0x017F0307: 0x00001E9B | ||||
| 	"\x00A\x03#\x00\x00\x1e\xa0" + // 0x00410323: 0x00001EA0 | ||||
| 	"\x00a\x03#\x00\x00\x1e\xa1" + // 0x00610323: 0x00001EA1 | ||||
| 	"\x00A\x03\t\x00\x00\x1e\xa2" + // 0x00410309: 0x00001EA2 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue