You've already forked focalboard
							
							
				mirror of
				https://github.com/mattermost/focalboard.git
				synced 2025-10-31 00:17:42 +02:00 
			
		
		
		
	Update Boards version to 7.3 (#3382)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							4b0fb92fba
						
					
				
				
					commit
					e1c747d08b
				
			| @@ -489,7 +489,7 @@ | ||||
| 					"$(inherited)", | ||||
| 					"@executable_path/../Frameworks", | ||||
| 				); | ||||
| 				MARKETING_VERSION = 7.2; | ||||
| 				MARKETING_VERSION = 7.3; | ||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.mattermost.focalboard; | ||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||
| 				PROVISIONING_PROFILE_SPECIFIER = ""; | ||||
| @@ -514,7 +514,7 @@ | ||||
| 					"$(inherited)", | ||||
| 					"@executable_path/../Frameworks", | ||||
| 				); | ||||
| 				MARKETING_VERSION = 7.2; | ||||
| 				MARKETING_VERSION = 7.3; | ||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.mattermost.focalboard; | ||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||
| 				PROVISIONING_PROFILE_SPECIFIER = ""; | ||||
|   | ||||
| @@ -6,7 +6,7 @@ | ||||
|     "support_url": "https://github.com/mattermost/focalboard/issues", | ||||
|     "release_notes_url": "https://github.com/mattermost/focalboard/releases", | ||||
|     "icon_path": "assets/starter-template-icon.svg", | ||||
|     "version": "7.2.0", | ||||
|     "version": "7.3.0", | ||||
|     "min_server_version": "7.0.0", | ||||
|     "server": { | ||||
|         "executables": { | ||||
|   | ||||
							
								
								
									
										2
									
								
								mattermost-plugin/server/manifest.go
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								mattermost-plugin/server/manifest.go
									
									
									
										generated
									
									
									
								
							| @@ -20,7 +20,7 @@ const manifestStr = ` | ||||
|   "support_url": "https://github.com/mattermost/focalboard/issues", | ||||
|   "release_notes_url": "https://github.com/mattermost/focalboard/releases", | ||||
|   "icon_path": "assets/starter-template-icon.svg", | ||||
|   "version": "7.2.0", | ||||
|   "version": "7.3.0", | ||||
|   "min_server_version": "7.0.0", | ||||
|   "server": { | ||||
|     "executables": { | ||||
|   | ||||
| @@ -4,6 +4,7 @@ package model | ||||
| // It should be maintained in chronological order with most current | ||||
| // release at the front of the list. | ||||
| var versions = []string{ | ||||
| 	"7.3.0", | ||||
| 	"7.2.0", | ||||
| 	"7.0.0", | ||||
| 	"0.16.0", | ||||
|   | ||||
							
								
								
									
										4
									
								
								webapp/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										4
									
								
								webapp/package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -1,12 +1,12 @@ | ||||
| { | ||||
| 	"name": "focalboard", | ||||
| 	"version": "7.2.0", | ||||
| 	"version": "7.3.0", | ||||
| 	"lockfileVersion": 2, | ||||
| 	"requires": true, | ||||
| 	"packages": { | ||||
| 		"": { | ||||
| 			"name": "focalboard", | ||||
| 			"version": "7.2.0", | ||||
| 			"version": "7.3.0", | ||||
| 			"dependencies": { | ||||
| 				"@draft-js-plugins/editor": "^4.1.2", | ||||
| 				"@draft-js-plugins/emoji": "^4.6.0", | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
| 	"name": "focalboard", | ||||
| 	"version": "7.2.0", | ||||
| 	"version": "7.3.0", | ||||
| 	"private": true, | ||||
| 	"description": "", | ||||
| 	"scripts": { | ||||
|   | ||||
| @@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] = | ||||
|     /> | ||||
|     <a | ||||
|       class="GlobalHeaderComponent__button help-button" | ||||
|       href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.2.0" | ||||
|       href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.3.0" | ||||
|       rel="noreferrer" | ||||
|       target="_blank" | ||||
|     > | ||||
|   | ||||
| @@ -109,9 +109,9 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = ` | ||||
|                   > | ||||
|                     <div | ||||
|                       class="version" | ||||
|                       title="v7.2.0" | ||||
|                       title="v7.3.0" | ||||
|                     > | ||||
|                       v7.2.0 | ||||
|                       v7.3.0 | ||||
|                     </div> | ||||
|                   </div> | ||||
|                 </div> | ||||
|   | ||||
| @@ -34,8 +34,8 @@ class Constants { | ||||
|     static readonly titleColumnId = '__title' | ||||
|     static readonly badgesColumnId = '__badges' | ||||
|  | ||||
|     static readonly versionString = '7.2.0' | ||||
|     static readonly versionDisplayString = 'Aug 2022' | ||||
|     static readonly versionString = '7.3.0' | ||||
|     static readonly versionDisplayString = 'Sep 2022' | ||||
|  | ||||
|     static readonly archiveHelpPage = 'https://docs.mattermost.com/boards/data-and-archives.html' | ||||
|     static readonly imports = [ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user