 4210e73bf5
			
		
	
	4210e73bf5
	
	
	
		
			
			Having bugs and issues listed separately has its benefits over listing everything. The same output can still be achieved by running both scripts and concatenating their output.
		
			
				
	
	
		
			12 lines
		
	
	
		
			399 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			399 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| 
 | |
| if [ $# -ne 1 ]
 | |
| then
 | |
|     echo "USAGE: $0 VERSION"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| version=$1
 | |
| curl -s "https://jira.mariadb.org/sr/jira.issueviews:searchrequest-csv-current-fields/temp/SearchRequest.csv?jqlQuery=project+%3D+MXS+AND+issuetype+%21%3D+Bug+AND+status+%3D+Closed+AND+fixVersion+%3D+$version"|cut -f 1,2 -d ,|tail -n+2|sed 's/\(.*\),\(.*\)/* (\2)[https:\/\/jira.mariadb.org\/browse\/\2] \1/'
 |