github.com/henvic/wedeploycli@v1.7.6-0.20200319005353-3630f582f284/update/releasenotes/releasenotes.go (about)

     1  package releasenotes
     2  
     3  // ReleaseNote for a given update.
     4  type ReleaseNote struct {
     5  	Version     string
     6  	Date        string
     7  	Description string
     8  }
     9  
    10  // ReleaseNotes for the updates.
    11  var ReleaseNotes = []ReleaseNote{
    12  	ReleaseNote{
    13  		Version:     "1.1.5",
    14  		Date:        "Oct 14th, 2017",
    15  		Description: "Don't ask for authentication on `we console`. Minor improvements.",
    16  	},
    17  	ReleaseNote{
    18  		Version:     "1.2.7",
    19  		Date:        "Jan 2nd, 2018",
    20  		Description: "Added prompt for projects and services on most commands. Added `we new` and `we open` commands. Minor improvements.",
    21  	},
    22  	ReleaseNote{
    23  		Version:     "1.2.8",
    24  		Date:        "Jan 5th, 2018",
    25  		Description: "Added protection to avoid deploying content in sensitive directories such as the home directory. Minor improvements.",
    26  	},
    27  	ReleaseNote{
    28  		Version:     "1.2.9",
    29  		Date:        "Jan 9th, 2018",
    30  		Description: "Added prompt to verify project creation on `we deploy`. Improved removal protection, making you type the project or service name of the resource you want to remove on `we delete`. Minor improvements.",
    31  	},
    32  
    33  	ReleaseNote{
    34  		Version:     "1.3.0",
    35  		Date:        "Jan 12th, 2018",
    36  		Description: "Improved user experience for the `we env` and `we domain` commands. Minor improvements.",
    37  	},
    38  	ReleaseNote{
    39  		Version:     "1.3.1",
    40  		Date:        "Jan 12th, 2018",
    41  		Description: "Added support to applying environment variables from a file on `we env set`. Minor improvements.",
    42  	},
    43  	ReleaseNote{
    44  		Version:     "1.3.2",
    45  		Date:        "Jan 13th, 2018",
    46  		Description: "Improved error messages on malformed wedeploy.json. Fixing bug on setting two environment variables at once. Added --replace flag to `we env set`. Minor improvements.",
    47  	},
    48  	ReleaseNote{
    49  		Version:     "1.3.3",
    50  		Date:        "Jan 14th, 2018",
    51  		Description: "Validate wedeploy.json before trying to deploy. Added prompt for selecting or creating a project id on `we deploy`. Added commands `we list projects` and `we list services`. Added the --no-tty flag to make it easier to use the CLI programmatically. Minor improvements.",
    52  	},
    53  	ReleaseNote{
    54  		Version:     "1.3.4",
    55  		Date:        "Jan 15th, 2018",
    56  		Description: "Fixed issue where deployment might never seem to terminate on CLI due to metadata type mismatch. Minor improvements.",
    57  	},
    58  	ReleaseNote{
    59  		Version:     "1.3.5",
    60  		Date:        "Feb 22nd, 2018",
    61  		Description: "Fixing issue where nested services would be identified as services for the CLI. Fix skipping directories that have any files on the .gitignore list (instead of only the file itself). Minor improvements.",
    62  	},
    63  	ReleaseNote{
    64  		Version:     "1.4.0",
    65  		Date:        "Mar 6th, 2018",
    66  		Description: `Making "we scale" work with no required arguments. Minor improvements.`,
    67  	},
    68  	ReleaseNote{
    69  		Version:     "1.4.1",
    70  		Date:        "Mar 6th, 2018",
    71  		Description: `Minor improvements.`,
    72  	},
    73  	ReleaseNote{
    74  		Version:     "1.4.2",
    75  		Date:        "Mar 6th, 2018",
    76  		Description: `Renaming "we env" with "we env-var". Stop allowing dashes on service ids. Minor improvements.`,
    77  	},
    78  	ReleaseNote{
    79  		Version:     "1.4.4",
    80  		Date:        "Mar 30th, 2018",
    81  		Description: `Added "we shell" command.`,
    82  	},
    83  	ReleaseNote{
    84  		Version:     "1.4.5",
    85  		Date:        "May 4th, 2018",
    86  		Description: `Added release notes. Added timestamsp to "we log".`,
    87  	},
    88  	ReleaseNote{
    89  		Version:     "1.4.6",
    90  		Date:        "May 8th, 2018",
    91  		Description: `Added support for using custom timezones (with environment variable TZ). Added support for deploying Git repositories. Fixing missing "error counter". Minor improvements.`,
    92  	},
    93  	ReleaseNote{
    94  		Version:     "1.4.7",
    95  		Date:        "May 13th, 2018",
    96  		Description: `Improved user experience when running "we deploy". Minor improvements.`,
    97  	},
    98  	ReleaseNote{
    99  		Version:     "1.4.8",
   100  		Date:        "May 18th, 2018",
   101  		Description: `Added support for piping username and password for "we login". Minor improvements.`,
   102  	},
   103  	ReleaseNote{
   104  		Version:     "1.4.9",
   105  		Date:        "May 30th, 2018",
   106  		Description: `Fixing panic when using "we deploy --quiet". Fixing "we login" when using Git bash for Windows.`,
   107  	},
   108  	ReleaseNote{
   109  		Version:     "1.4.10",
   110  		Date:        "June 12th, 2018",
   111  		Description: `Fix "we deploy" for Windows users whose usernames contains spaces. Minor improvements.`,
   112  	},
   113  	ReleaseNote{
   114  		Version:     "1.5.0",
   115  		Date:        "June 13th, 2018",
   116  		Description: `Added the --skip-progress flag to "we deploy" and changed --quiet behavior to make it wait until deployment is finished.`,
   117  	},
   118  	ReleaseNote{
   119  		Version:     "1.5.1",
   120  		Date:        "June 15th, 2018",
   121  		Description: `Improved output colors for requests when using --verbose. Minor improvements.`,
   122  	},
   123  	ReleaseNote{
   124  		Version:     "1.5.2",
   125  		Date:        "June 15th, 2018",
   126  		Description: "Print friendly status text errors on API errors.",
   127  	},
   128  	ReleaseNote{
   129  		Version:     "1.5.3",
   130  		Date:        "June 19th, 2018",
   131  		Description: "Minor improvements.",
   132  	},
   133  	ReleaseNote{
   134  		Version:     "1.5.4",
   135  		Date:        "June 19th, 2018",
   136  		Description: "Improving error messages. Minor improvements.",
   137  	},
   138  	ReleaseNote{
   139  		Version:     "1.5.5",
   140  		Date:        "June 20th, 2018",
   141  		Description: `Show current number of deployed instances on "we scale" and ask for service before prompting for number of instances on change.`,
   142  	},
   143  	ReleaseNote{
   144  		Version:     "1.5.6",
   145  		Date:        "June 22nd, 2018",
   146  		Description: `Adding support to upcoming environment feature. Fixed flags on "we new". Minor improvements.`,
   147  	},
   148  	ReleaseNote{
   149  		Version:     "1.5.7",
   150  		Date:        "June 28th, 2018",
   151  		Description: `Fix processing flags on command "we new project". Minor improvements.`,
   152  	},
   153  	ReleaseNote{
   154  		Version:     "1.5.8",
   155  		Date:        "July 4th, 2018",
   156  		Description: "Fixed deployment upload failure feedback. Minor improvements.",
   157  	},
   158  	ReleaseNote{
   159  		Version:     "1.5.9",
   160  		Date:        "July 8th, 2018",
   161  		Description: `Added "we list instances" command. Improved instance support. Minor improvements.`,
   162  	},
   163  	ReleaseNote{
   164  		Version:     "1.5.10",
   165  		Date:        "July 12th, 2018",
   166  		Description: `Only print first 12 chars of instance ids. Autoconnect to instance on "we shell" when only one instance is running. Minor improvements.`,
   167  	},
   168  	ReleaseNote{
   169  		Version:     "1.6.0",
   170  		Date:        "August 5th, 2018",
   171  		Description: `Improved Windows install experience. Removed project id confirmation when extracting it from working directory. Minor improvements.`,
   172  	},
   173  	ReleaseNote{
   174  		Version:     "1.6.1",
   175  		Date:        "August 15th, 2018",
   176  		Description: `Fixed panic when using "we shell".`,
   177  	},
   178  	ReleaseNote{
   179  		Version:     "1.6.2",
   180  		Date:        "September 4th, 2018",
   181  		Description: `Added "we deploy --only-build" support.`,
   182  	},
   183  	ReleaseNote{
   184  		Version:     "1.6.3",
   185  		Date:        "September 4th, 2018",
   186  		Description: `Don't parse flags after command name on "we exec". Minor changes.`,
   187  	},
   188  	ReleaseNote{
   189  		Version:     "1.6.4",
   190  		Date:        "September 18th, 2018",
   191  		Description: `Added several improvements to "we deploy", such as showing package size and supporting container image replacement with --image. Minor improvements.`,
   192  	},
   193  	ReleaseNote{
   194  		Version:     "1.6.5",
   195  		Date:        "September 21st, 2018",
   196  		Description: `Minor improvements.`,
   197  	},
   198  	ReleaseNote{
   199  		Version:     "1.6.6",
   200  		Date:        "October 14th, 2018",
   201  		Description: "Improved error handling. Fixed metrics and diagnostics reporting. Minor improvements.",
   202  	},
   203  	ReleaseNote{
   204  		Version:     "1.6.7",
   205  		Date:        "October 14th, 2018",
   206  		Description: "Fixed Windows build.",
   207  	},
   208  	ReleaseNote{
   209  		Version:     "1.7.0",
   210  		Date:        "November 5th, 2018",
   211  		Description: `Adding "we inspect config". Fix links for DXP Cloud documentation. Fix "we log --level" filter. Use metadata from project git repository for DXP Cloud. Improve "we list" reliability. Fix "we deploy --service id" issue when a prompt opens asking for the project id. Minor improvements.`,
   212  	},
   213  	ReleaseNote{
   214  		Version:     "1.7.1",
   215  		Date:        "December 7th, 2018",
   216  		Description: "Fixing links to DXP Cloud. Minor improvements.",
   217  	},
   218  	ReleaseNote{
   219  		Version:     "1.7.2",
   220  		Date:        "January 9th, 2019",
   221  		Description: `Fixing removing remotes. Improved "we shell" connection reliability. Minor improvements.`,
   222  	},
   223  	ReleaseNote{
   224  		Version:     "1.7.3",
   225  		Date:        "February 6th, 2019",
   226  		Description: `Prevent git hooks from being triggered by mistake on Windows. Minor improvements.`,
   227  	},
   228  	ReleaseNote{
   229  		Version:     "1.7.4",
   230  		Date:        "February 12th, 2019",
   231  		Description: `Fix Windows issue that prevented some Windows users with certain git versions from deploying.`,
   232  	},
   233  	ReleaseNote{
   234  		Version:     "1.7.5",
   235  		Date:        "April 1st, 2019",
   236  		Description: `Fixing deployment progress stuck due to out of order activities.`,
   237  	},
   238  	ReleaseNote{
   239  		Version:     "2.0.0-beta",
   240  		Date:        "May 10th, 2019",
   241  		Description: `Liferay Cloud CLI tool.`,
   242  	},
   243  	ReleaseNote{
   244  		Version:     "2.0.0-beta.2",
   245  		Date:        "May 20th, 2019",
   246  		Description: `Liferay Cloud CLI tool.`,
   247  	},
   248  	ReleaseNote{
   249  		Version:     "2.0.0-beta.3",
   250  		Date:        "May 23rd, 2019",
   251  		Description: `Fixing fetching the logs of a service.`,
   252  	},
   253  	ReleaseNote{
   254  		Version:     "2.0.0-beta.4",
   255  		Date:        "May 23rd, 2019",
   256  		Description: `Improving developer experience for the API.`,
   257  	},
   258  	ReleaseNote{
   259  		Version:     "2.0.0-beta.5",
   260  		Date:        "May 24th, 2019",
   261  		Description: `Fixing issue where progress bar would never stop for services only supposed to be built in some circumstances.`,
   262  	},
   263  	ReleaseNote{
   264  		Version:     "2.0.0-beta.6",
   265  		Date:        "June 3rd, 2019",
   266  		Description: `Try to send related git remote even when branch is untracked.`,
   267  	},
   268  	ReleaseNote{
   269  		Version:     "2.1.0",
   270  		Date:        "June 7th, 2019",
   271  		Description: `Update breaking changes to the log format.`,
   272  	},
   273  	ReleaseNote{
   274  		Version:     "2.1.1",
   275  		Date:        "June 25th, 2019",
   276  		Description: `Print logs using local timezone instead of UTC. Fix race condition that was making opening up a shell when using a fast Internet connection fail sometimes.`,
   277  	},
   278  	ReleaseNote{
   279  		Version:     "2.1.2",
   280  		Date:        "July 9th, 2019",
   281  		Description: `Fix missing exit code relay after move to Kubernetes.`,
   282  	},
   283  }