Commit 72fcc33 1 parent e7026ff commit 72fcc33 Copy full SHA for 72fcc33
File tree 2 files changed +29
-6
lines changed
2 files changed +29
-6
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,32 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
6
6
7
7
<!-- # [x.x.x] (unreleased) - 2021-mm-dd
8
8
> Important: X breaking changes below, indicated by **❗ BREAKING ❗**
9
- ## 🚀 Features
10
9
## ❗ BREAKING ❗
10
+ ## 🚀 Features
11
11
## 🐛 Fixes
12
12
## 🛠 Maintenance
13
13
## 📚 Documentation -->
14
14
15
- # [ x.x.x] (unreleased) - 2021-mm-dd
16
- > Important: X breaking changes below, indicated by ** ❗ BREAKING ❗**
17
- ## 🚀 Features
15
+ # [ 0.0.11] (upcoming) - 2021-05-11
16
+ > Important: 1 breaking change below, indicated by ** ❗ BREAKING ❗**
18
17
## ❗ BREAKING ❗
18
+
19
+ - ** Removes -V/--version flag from subcommands - [ EverlastingBugstopper] , [ pull/487] **
20
+
21
+ Rover's subcommands will always be the same version as Rover, so we no longer accept ` -V ` or ` --version `
22
+ on Rover's subcommands.
23
+
24
+ [ EverlastingBugstopper ] : https://github.com/EverlastingBugstopper
25
+ [ pull/487 ] : https://github.com/apollographql/rover/pull/487
26
+
27
+ - ** Disallow all non-UTF-8 argument values - [ EverlastingBugstopper] , [ pull/487] **
28
+
29
+ Rover will no longer accept any argument values that cannot be properly interpreted as UTF-8.
30
+
31
+ [ EverlastingBugstopper ] : https://github.com/EverlastingBugstopper
32
+ [ pull/487 ] : https://github.com/apollographql/rover/pull/487
33
+
34
+ ## 🚀 Features
19
35
## 🐛 Fixes
20
36
## 🛠 Maintenance
21
37
Original file line number Diff line number Diff line change 1
1
use serde:: Serialize ;
2
- use structopt:: StructOpt ;
2
+ use structopt:: { clap :: AppSettings , StructOpt } ;
3
3
4
4
use crate :: command:: { self , RoverStdout } ;
5
5
use crate :: utils:: {
@@ -17,7 +17,14 @@ use timber::{Level, LEVELS};
17
17
use camino:: Utf8PathBuf ;
18
18
19
19
#[ derive( Debug , Serialize , StructOpt ) ]
20
- #[ structopt( name = "Rover" , global_settings = & [ structopt:: clap:: AppSettings :: ColoredHelp ] , about = "
20
+ #[ structopt(
21
+ name = "Rover" ,
22
+ global_settings = & [
23
+ AppSettings :: ColoredHelp ,
24
+ AppSettings :: StrictUtf8 ,
25
+ AppSettings :: VersionlessSubcommands ,
26
+ ] ,
27
+ about = "
21
28
Rover - Your Graph Companion
22
29
Read the getting started guide by running:
23
30
You can’t perform that action at this time.
0 commit comments