@rio-cloud/cdk-v2-constructs 4.1.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,216 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
9
+ ## [2.0.1] - 2020-08-29
10
+ ### Fixed
11
+ - Fix issue with `process.argv` when used with interpreters (`coffee`, `ts-node`, etc.), #150.
12
+
13
+
14
+ ## [2.0.0] - 2020-08-14
15
+ ### Changed
16
+ - Full rewrite. Now port from python 3.9.0 & more precise following.
17
+ See [doc](./doc) for difference and migration info.
18
+ - node.js 10+ required
19
+ - Removed most of local docs in favour of original ones.
20
+
21
+
22
+ ## [1.0.10] - 2018-02-15
23
+ ### Fixed
24
+ - Use .concat instead of + for arrays, #122.
25
+
26
+
27
+ ## [1.0.9] - 2016-09-29
28
+ ### Changed
29
+ - Rerelease after 1.0.8 - deps cleanup.
30
+
31
+
32
+ ## [1.0.8] - 2016-09-29
33
+ ### Changed
34
+ - Maintenance (deps bump, fix node 6.5+ tests, coverage report).
35
+
36
+
37
+ ## [1.0.7] - 2016-03-17
38
+ ### Changed
39
+ - Teach `addArgument` to accept string arg names. #97, @tomxtobin.
40
+
41
+
42
+ ## [1.0.6] - 2016-02-06
43
+ ### Changed
44
+ - Maintenance: moved to eslint & updated CS.
45
+
46
+
47
+ ## [1.0.5] - 2016-02-05
48
+ ### Changed
49
+ - Removed lodash dependency to significantly reduce install size.
50
+ Thanks to @mourner.
51
+
52
+
53
+ ## [1.0.4] - 2016-01-17
54
+ ### Changed
55
+ - Maintenance: lodash update to 4.0.0.
56
+
57
+
58
+ ## [1.0.3] - 2015-10-27
59
+ ### Fixed
60
+ - Fix parse `=` in args: `--examplepath="C:\myfolder\env=x64"`. #84, @CatWithApple.
61
+
62
+
63
+ ## [1.0.2] - 2015-03-22
64
+ ### Changed
65
+ - Relaxed lodash version dependency.
66
+
67
+
68
+ ## [1.0.1] - 2015-02-20
69
+ ### Changed
70
+ - Changed dependencies to be compatible with ancient nodejs.
71
+
72
+
73
+ ## [1.0.0] - 2015-02-19
74
+ ### Changed
75
+ - Maintenance release.
76
+ - Replaced `underscore` with `lodash`.
77
+ - Bumped version to 1.0.0 to better reflect semver meaning.
78
+ - HISTORY.md -> CHANGELOG.md
79
+
80
+
81
+ ## [0.1.16] - 2013-12-01
82
+ ### Changed
83
+ - Maintenance release. Updated dependencies and docs.
84
+
85
+
86
+ ## [0.1.15] - 2013-05-13
87
+ ### Fixed
88
+ - Fixed #55, @trebor89
89
+
90
+
91
+ ## [0.1.14] - 2013-05-12
92
+ ### Fixed
93
+ - Fixed #62, @maxtaco
94
+
95
+
96
+ ## [0.1.13] - 2013-04-08
97
+ ### Changed
98
+ - Added `.npmignore` to reduce package size
99
+
100
+
101
+ ## [0.1.12] - 2013-02-10
102
+ ### Fixed
103
+ - Fixed conflictHandler (#46), @hpaulj
104
+
105
+
106
+ ## [0.1.11] - 2013-02-07
107
+ ### Added
108
+ - Added 70+ tests (ported from python), @hpaulj
109
+ - Added conflictHandler, @applepicke
110
+ - Added fromfilePrefixChar, @hpaulj
111
+
112
+ ### Fixed
113
+ - Multiple bugfixes, @hpaulj
114
+
115
+
116
+ ## [0.1.10] - 2012-12-30
117
+ ### Added
118
+ - Added [mutual exclusion](http://docs.python.org/dev/library/argparse.html#mutual-exclusion)
119
+ support, thanks to @hpaulj
120
+
121
+ ### Fixed
122
+ - Fixed options check for `storeConst` & `appendConst` actions, thanks to @hpaulj
123
+
124
+
125
+ ## [0.1.9] - 2012-12-27
126
+ ### Fixed
127
+ - Fixed option dest interferens with other options (issue #23), thanks to @hpaulj
128
+ - Fixed default value behavior with `*` positionals, thanks to @hpaulj
129
+ - Improve `getDefault()` behavior, thanks to @hpaulj
130
+ - Improve negative argument parsing, thanks to @hpaulj
131
+
132
+
133
+ ## [0.1.8] - 2012-12-01
134
+ ### Fixed
135
+ - Fixed parser parents (issue #19), thanks to @hpaulj
136
+ - Fixed negative argument parse (issue #20), thanks to @hpaulj
137
+
138
+
139
+ ## [0.1.7] - 2012-10-14
140
+ ### Fixed
141
+ - Fixed 'choices' argument parse (issue #16)
142
+ - Fixed stderr output (issue #15)
143
+
144
+
145
+ ## [0.1.6] - 2012-09-09
146
+ ### Fixed
147
+ - Fixed check for conflict of options (thanks to @tomxtobin)
148
+
149
+
150
+ ## [0.1.5] - 2012-09-03
151
+ ### Fixed
152
+ - Fix parser #setDefaults method (thanks to @tomxtobin)
153
+
154
+
155
+ ## [0.1.4] - 2012-07-30
156
+ ### Fixed
157
+ - Fixed pseudo-argument support (thanks to @CGamesPlay)
158
+ - Fixed addHelp default (should be true), if not set (thanks to @benblank)
159
+
160
+
161
+ ## [0.1.3] - 2012-06-27
162
+ ### Fixed
163
+ - Fixed formatter api name: Formatter -> HelpFormatter
164
+
165
+
166
+ ## [0.1.2] - 2012-05-29
167
+ ### Fixed
168
+ - Removed excess whitespace in help
169
+ - Fixed error reporting, when parcer with subcommands
170
+ called with empty arguments
171
+
172
+ ### Added
173
+ - Added basic tests
174
+
175
+
176
+ ## [0.1.1] - 2012-05-23
177
+ ### Fixed
178
+ - Fixed line wrapping in help formatter
179
+ - Added better error reporting on invalid arguments
180
+
181
+
182
+ ## [0.1.0] - 2012-05-16
183
+ ### Added
184
+ - First release.
185
+
186
+
187
+ [2.0.1]: https://github.com/nodeca/argparse/compare/2.0.0...2.0.1
188
+ [2.0.0]: https://github.com/nodeca/argparse/compare/1.0.10...2.0.0
189
+ [1.0.10]: https://github.com/nodeca/argparse/compare/1.0.9...1.0.10
190
+ [1.0.9]: https://github.com/nodeca/argparse/compare/1.0.8...1.0.9
191
+ [1.0.8]: https://github.com/nodeca/argparse/compare/1.0.7...1.0.8
192
+ [1.0.7]: https://github.com/nodeca/argparse/compare/1.0.6...1.0.7
193
+ [1.0.6]: https://github.com/nodeca/argparse/compare/1.0.5...1.0.6
194
+ [1.0.5]: https://github.com/nodeca/argparse/compare/1.0.4...1.0.5
195
+ [1.0.4]: https://github.com/nodeca/argparse/compare/1.0.3...1.0.4
196
+ [1.0.3]: https://github.com/nodeca/argparse/compare/1.0.2...1.0.3
197
+ [1.0.2]: https://github.com/nodeca/argparse/compare/1.0.1...1.0.2
198
+ [1.0.1]: https://github.com/nodeca/argparse/compare/1.0.0...1.0.1
199
+ [1.0.0]: https://github.com/nodeca/argparse/compare/0.1.16...1.0.0
200
+ [0.1.16]: https://github.com/nodeca/argparse/compare/0.1.15...0.1.16
201
+ [0.1.15]: https://github.com/nodeca/argparse/compare/0.1.14...0.1.15
202
+ [0.1.14]: https://github.com/nodeca/argparse/compare/0.1.13...0.1.14
203
+ [0.1.13]: https://github.com/nodeca/argparse/compare/0.1.12...0.1.13
204
+ [0.1.12]: https://github.com/nodeca/argparse/compare/0.1.11...0.1.12
205
+ [0.1.11]: https://github.com/nodeca/argparse/compare/0.1.10...0.1.11
206
+ [0.1.10]: https://github.com/nodeca/argparse/compare/0.1.9...0.1.10
207
+ [0.1.9]: https://github.com/nodeca/argparse/compare/0.1.8...0.1.9
208
+ [0.1.8]: https://github.com/nodeca/argparse/compare/0.1.7...0.1.8
209
+ [0.1.7]: https://github.com/nodeca/argparse/compare/0.1.6...0.1.7
210
+ [0.1.6]: https://github.com/nodeca/argparse/compare/0.1.5...0.1.6
211
+ [0.1.5]: https://github.com/nodeca/argparse/compare/0.1.4...0.1.5
212
+ [0.1.4]: https://github.com/nodeca/argparse/compare/0.1.3...0.1.4
213
+ [0.1.3]: https://github.com/nodeca/argparse/compare/0.1.2...0.1.3
214
+ [0.1.2]: https://github.com/nodeca/argparse/compare/0.1.1...0.1.2
215
+ [0.1.1]: https://github.com/nodeca/argparse/compare/0.1.0...0.1.1
216
+ [0.1.0]: https://github.com/nodeca/argparse/releases/tag/0.1.0