Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / escodegen / node_modules / source-map / CHANGELOG.md
1 # Change Log
2
3 ## 0.2.0
4
5 * Support for consuming "indexed" source maps which do not have any remote
6   sections. See pull request #127. This introduces a minor backwards
7   incompatibility if you are monkey patching `SourceMapConsumer.prototype`
8   methods.
9
10 ## 0.1.43
11
12 * Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
13   #148 for some discussion and issues #150, #151, and #152 for implementations.
14
15 ## 0.1.42
16
17 * Fix an issue where `SourceNode`s from different versions of the source-map
18   library couldn't be used in conjunction with each other. See issue #142.
19
20 ## 0.1.41
21
22 * Fix a bug with getting the source content of relative sources with a "./"
23   prefix. See issue #145 and [Bug 1090768](bugzil.la/1090768).
24
25 * Add the `SourceMapConsumer.prototype.computeColumnSpans` method to compute the
26   column span of each mapping.
27
28 * Add the `SourceMapConsumer.prototype.allGeneratedPositionsFor` method to find
29   all generated positions associated with a given original source and line.
30
31 ## 0.1.40
32
33 * Performance improvements for parsing source maps in SourceMapConsumer.
34
35 ## 0.1.39
36
37 * Fix a bug where setting a source's contents to null before any source content
38   had been set before threw a TypeError. See issue #131.
39
40 ## 0.1.38
41
42 * Fix a bug where finding relative paths from an empty path were creating
43   absolute paths. See issue #129.
44
45 ## 0.1.37
46
47 * Fix a bug where if the source root was an empty string, relative source paths
48   would turn into absolute source paths. Issue #124.
49
50 ## 0.1.36
51
52 * Allow the `names` mapping property to be an empty string. Issue #121.
53
54 ## 0.1.35
55
56 * A third optional parameter was added to `SourceNode.fromStringWithSourceMap`
57   to specify a path that relative sources in the second parameter should be
58   relative to. Issue #105.
59
60 * If no file property is given to a `SourceMapGenerator`, then the resulting
61   source map will no longer have a `null` file property. The property will
62   simply not exist. Issue #104.
63
64 * Fixed a bug where consecutive newlines were ignored in `SourceNode`s.
65   Issue #116.
66
67 ## 0.1.34
68
69 * Make `SourceNode` work with windows style ("\r\n") newlines. Issue #103.
70
71 * Fix bug involving source contents and the
72   `SourceMapGenerator.prototype.applySourceMap`. Issue #100.
73
74 ## 0.1.33
75
76 * Fix some edge cases surrounding path joining and URL resolution.
77
78 * Add a third parameter for relative path to
79   `SourceMapGenerator.prototype.applySourceMap`.
80
81 * Fix issues with mappings and EOLs.
82
83 ## 0.1.32
84
85 * Fixed a bug where SourceMapConsumer couldn't handle negative relative columns
86   (issue 92).
87
88 * Fixed test runner to actually report number of failed tests as its process
89   exit code.
90
91 * Fixed a typo when reporting bad mappings (issue 87).
92
93 ## 0.1.31
94
95 * Delay parsing the mappings in SourceMapConsumer until queried for a source
96   location.
97
98 * Support Sass source maps (which at the time of writing deviate from the spec
99   in small ways) in SourceMapConsumer.
100
101 ## 0.1.30
102
103 * Do not join source root with a source, when the source is a data URI.
104
105 * Extend the test runner to allow running single specific test files at a time.
106
107 * Performance improvements in `SourceNode.prototype.walk` and
108   `SourceMapConsumer.prototype.eachMapping`.
109
110 * Source map browser builds will now work inside Workers.
111
112 * Better error messages when attempting to add an invalid mapping to a
113   `SourceMapGenerator`.
114
115 ## 0.1.29
116
117 * Allow duplicate entries in the `names` and `sources` arrays of source maps
118   (usually from TypeScript) we are parsing. Fixes github issue 72.
119
120 ## 0.1.28
121
122 * Skip duplicate mappings when creating source maps from SourceNode; github
123   issue 75.
124
125 ## 0.1.27
126
127 * Don't throw an error when the `file` property is missing in SourceMapConsumer,
128   we don't use it anyway.
129
130 ## 0.1.26
131
132 * Fix SourceNode.fromStringWithSourceMap for empty maps. Fixes github issue 70.
133
134 ## 0.1.25
135
136 * Make compatible with browserify
137
138 ## 0.1.24
139
140 * Fix issue with absolute paths and `file://` URIs. See
141   https://bugzilla.mozilla.org/show_bug.cgi?id=885597
142
143 ## 0.1.23
144
145 * Fix issue with absolute paths and sourcesContent, github issue 64.
146
147 ## 0.1.22
148
149 * Ignore duplicate mappings in SourceMapGenerator. Fixes github issue 21.
150
151 ## 0.1.21
152
153 * Fixed handling of sources that start with a slash so that they are relative to
154   the source root's host.
155
156 ## 0.1.20
157
158 * Fixed github issue #43: absolute URLs aren't joined with the source root
159   anymore.
160
161 ## 0.1.19
162
163 * Using Travis CI to run tests.
164
165 ## 0.1.18
166
167 * Fixed a bug in the handling of sourceRoot.
168
169 ## 0.1.17
170
171 * Added SourceNode.fromStringWithSourceMap.
172
173 ## 0.1.16
174
175 * Added missing documentation.
176
177 * Fixed the generating of empty mappings in SourceNode.
178
179 ## 0.1.15
180
181 * Added SourceMapGenerator.applySourceMap.
182
183 ## 0.1.14
184
185 * The sourceRoot is now handled consistently.
186
187 ## 0.1.13
188
189 * Added SourceMapGenerator.fromSourceMap.
190
191 ## 0.1.12
192
193 * SourceNode now generates empty mappings too.
194
195 ## 0.1.11
196
197 * Added name support to SourceNode.
198
199 ## 0.1.10
200
201 * Added sourcesContent support to the customer and generator.