cypress 9.6.0 → 10.0.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.
Files changed (44) hide show
  1. package/index.mjs +15 -0
  2. package/lib/cli.js +72 -23
  3. package/lib/errors.js +16 -1
  4. package/lib/exec/open.js +45 -10
  5. package/lib/exec/run.js +17 -10
  6. package/lib/exec/shared.js +30 -9
  7. package/lib/exec/spawn.js +4 -0
  8. package/lib/exec/xvfb.js +1 -0
  9. package/lib/util.js +10 -3
  10. package/mount-utils/CHANGELOG.md +20 -0
  11. package/mount-utils/README.md +14 -0
  12. package/mount-utils/dist/index.d.ts +54 -0
  13. package/mount-utils/dist/index.js +134 -0
  14. package/mount-utils/package.json +31 -0
  15. package/package.json +39 -4
  16. package/react/CHANGELOG.md +373 -0
  17. package/react/README.md +414 -0
  18. package/react/dist/cypress-react.browser.js +497 -0
  19. package/react/dist/cypress-react.cjs.js +495 -0
  20. package/react/dist/cypress-react.esm-bundler.js +467 -0
  21. package/react/dist/getDisplayName.d.ts +8 -0
  22. package/react/dist/index.d.ts +2 -0
  23. package/react/dist/mount.d.ts +143 -0
  24. package/react/dist/mountHook.d.ts +11 -0
  25. package/react/package.json +105 -0
  26. package/types/bluebird/index.d.ts +18 -4
  27. package/types/cypress-eventemitter.d.ts +1 -1
  28. package/types/cypress-global-vars.d.ts +2 -2
  29. package/types/cypress-npm-api.d.ts +4 -10
  30. package/types/cypress.d.ts +180 -120
  31. package/types/minimatch/index.d.ts +15 -5
  32. package/vue/CHANGELOG.md +380 -0
  33. package/vue/README.md +678 -0
  34. package/vue/dist/cypress-vue.cjs.js +13535 -0
  35. package/vue/dist/cypress-vue.esm-bundler.js +13511 -0
  36. package/vue/dist/index.d.ts +56 -0
  37. package/vue/package.json +86 -0
  38. package/vue2/CHANGELOG.md +5 -0
  39. package/vue2/README.md +693 -0
  40. package/vue2/dist/cypress-vue2.browser.js +20191 -0
  41. package/vue2/dist/cypress-vue2.cjs.js +20188 -0
  42. package/vue2/dist/cypress-vue2.esm-bundler.js +20179 -0
  43. package/vue2/dist/index.d.ts +171 -0
  44. package/vue2/package.json +59 -0
@@ -175,27 +175,37 @@ declare namespace M {
175
175
  matchOne(files: string[], pattern: string[], partial: boolean): boolean;
176
176
 
177
177
  /**
178
- * @deprecated. For internal use.
178
+ * Deprecated. For internal use.
179
+ *
180
+ * @private
179
181
  */
180
182
  debug(): void;
181
183
 
182
184
  /**
183
- * @deprecated. For internal use.
185
+ * Deprecated. For internal use.
186
+ *
187
+ * @private
184
188
  */
185
189
  make(): void;
186
190
 
187
191
  /**
188
- * @deprecated. For internal use.
192
+ * Deprecated. For internal use.
193
+ *
194
+ * @private
189
195
  */
190
196
  parseNegate(): void;
191
197
 
192
198
  /**
193
- * @deprecated. For internal use.
199
+ * Deprecated. For internal use.
200
+ *
201
+ * @private
194
202
  */
195
203
  braceExpand(pattern: string, options: IOptions): void;
196
204
 
197
205
  /**
198
- * @deprecated. For internal use.
206
+ * Deprecated. For internal use.
207
+ *
208
+ * @private
199
209
  */
200
210
  parse(pattern: string, isSub?: boolean): void;
201
211
  }
@@ -0,0 +1,380 @@
1
+ # [@cypress/vue-v3.1.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.1.1...@cypress/vue-v3.1.2) (2022-05-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * head content reset, fix [#19721](https://github.com/cypress-io/cypress/issues/19721) ([#21291](https://github.com/cypress-io/cypress/issues/21291)) ([77ab6a5](https://github.com/cypress-io/cypress/commit/77ab6a51a0de1929171a2275e9cec9580c57241d))
7
+
8
+ # [@cypress/vue-v3.1.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.1.0...@cypress/vue-v3.1.1) (2022-02-10)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * create a dummy commit to trigger release ([97e6c14](https://github.com/cypress-io/cypress/commit/97e6c14b91661658b856038da8a0f5fa4319b19b))
14
+
15
+ # [@cypress/vue-v3.1.0](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.5...@cypress/vue-v3.1.0) (2021-12-16)
16
+
17
+
18
+ ### Features
19
+
20
+ * use hoisted yarn install in binary build ([#17285](https://github.com/cypress-io/cypress/issues/17285)) ([e4f5b10](https://github.com/cypress-io/cypress/commit/e4f5b106d49d6ac0857c5fdac886f83b99558c88))
21
+
22
+ # [@cypress/vue-v3.0.5](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.4...@cypress/vue-v3.0.5) (2021-11-10)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * remove outdated npm registry links ([#18727](https://github.com/cypress-io/cypress/issues/18727)) ([4ded6c9](https://github.com/cypress-io/cypress/commit/4ded6c9624134fe6203f5377d62d62809cd27cda))
28
+
29
+ # [@cypress/vue-v3.0.4](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.3...@cypress/vue-v3.0.4) (2021-10-29)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * remove outdated registry link ([#18710](https://github.com/cypress-io/cypress/issues/18710)) ([e2a869d](https://github.com/cypress-io/cypress/commit/e2a869d2a984abb6703aec966dd9124ee693b8c1))
35
+
36
+ # [@cypress/vue-v3.0.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.2...@cypress/vue-v3.0.3) (2021-07-31)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * vue 3 types, beta suffix & component name ([#17508](https://github.com/cypress-io/cypress/issues/17508)) ([b4733a6](https://github.com/cypress-io/cypress/commit/b4733a6179577b0447af9bcdcf417713d5fb38b9))
42
+
43
+ # [@cypress/vue-v3.0.0-beta.4](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-beta.3...@cypress/vue-v3.0.0-beta.4) (2021-07-27)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * do not register CT specific event in e2e mode ([5836203](https://github.com/cypress-io/cypress/commit/58362037fd231c6fdc587e422fc139bf7546ac2d))
49
+
50
+ # [@cypress/vue-v3.0.0-beta.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-beta.2...@cypress/vue-v3.0.0-beta.3) (2021-06-24)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * bumps deps for npm/vue ([#17096](https://github.com/cypress-io/cypress/issues/17096)) ([96af8bf](https://github.com/cypress-io/cypress/commit/96af8bf29d69537af0c10c69b33a0a889edcaa37))
56
+
57
+ # [@cypress/vue-v3.0.0-beta.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-beta.1...@cypress/vue-v3.0.0-beta.2) (2021-06-17)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * add latest channel to properly release npm packages ([#16994](https://github.com/cypress-io/cypress/issues/16994)) ([ac16efc](https://github.com/cypress-io/cypress/commit/ac16efca80f33e12153b0c2bd0fc3f04983ed305))
63
+
64
+ # [@cypress/vue-v3.0.0-beta.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.2.3...@cypress/vue-v3.0.0-beta.1) (2021-05-31)
65
+
66
+
67
+ ### Continuous Integration
68
+
69
+ * deliver vue3 on master ([#16728](https://github.com/cypress-io/cypress/issues/16728)) ([0ee001f](https://github.com/cypress-io/cypress/commit/0ee001f6250604711653caf5365d8aca063a9cad)), closes [#15100](https://github.com/cypress-io/cypress/issues/15100)
70
+
71
+
72
+ ### BREAKING CHANGES
73
+
74
+ * no support for vue 2 anymore
75
+
76
+ * build: disable auto deliver of next vue
77
+
78
+ * Revert "feat(vue): vue 3 support in @cypress/vue"
79
+
80
+ This reverts commit 8f55d7baaff1f240677239ae5fdc4180c4a06475.
81
+
82
+ * Revert "build: disable auto deliver of next vue"
83
+
84
+ This reverts commit ed46c9e5c551e57901dbdc75db2e83bf194c4b18.
85
+
86
+ * chore: release @cypress/vue-v1.1.0-alpha.1
87
+
88
+ [skip ci]
89
+ * dropped support for vue 2 in favor of vue 3
90
+
91
+ * test: remove filter tests not relevant in vue 3
92
+
93
+ * build: try publishing as a private new major
94
+
95
+ * chore: release @cypress/vue-v3.0.0-alpha.1
96
+
97
+ [skip ci]
98
+
99
+ * chore: bring back access public
100
+
101
+ * fix: update dependency to webpack dev server
102
+
103
+ * chore: release @cypress/vue-v3.0.0-alpha.2
104
+
105
+ [skip ci]
106
+
107
+ * chore: remove unnecessary dependency
108
+
109
+ * fix: mistreatment of monorepo dependency
110
+
111
+ * chore: release @cypress/vue-v3.0.0-alpha.3
112
+
113
+ [skip ci]
114
+
115
+ * chore: release @cypress/vue-v3.0.0-alpha.4
116
+
117
+ [skip ci]
118
+
119
+ * fix: use __cy_root at the root element
120
+
121
+ * build: avoid using array spread (tslib imports issue)
122
+
123
+ * fix: setup for cypress vue tests
124
+
125
+ * fix: add cleanup event
126
+
127
+ * test: make sure we use the right build of compiler
128
+
129
+ * chore: downgrade VTU to rc-1
130
+
131
+ * chore: release @cypress/vue-v3.0.0
132
+
133
+ [skip ci]
134
+
135
+ * chore: upgrade vue version to 3.0.11
136
+
137
+ * fix: adjust optional peer deps
138
+
139
+ * fix: allow fo any VTU 2 version using ^
140
+
141
+ * test: ignore nuxt example
142
+
143
+ * test: update yarn lock on vue cli
144
+
145
+ * chore: release @cypress/vue-v3.0.1
146
+
147
+ [skip ci]
148
+
149
+ * ci: release vue@next on master
150
+
151
+ * test: fix vue3 examples
152
+
153
+ * ci: open only needed server in circle npm-vue
154
+
155
+ Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net>
156
+ Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
157
+
158
+ # [@cypress/vue-v3.0.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0...@cypress/vue-v3.0.1) (2021-04-08)
159
+
160
+ ### Bug Fixes
161
+
162
+ * adjust optional peer deps ([735d61d](https://github.com/cypress-io/cypress/commit/735d61d15a34c04729bff692861faad2dc1b6a35))
163
+ * allow fo any VTU 2 version using ^ ([a1da052](https://github.com/cypress-io/cypress/commit/a1da0520651eaa1d83db96fe9d692b28ad2fc727))
164
+
165
+ # [@cypress/vue-v3.0.0](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.2.0...@cypress/vue-v3.0.0) (2021-04-07)
166
+
167
+
168
+ ### Bug Fixes
169
+
170
+ * add cleanup event ([cf51935](https://github.com/cypress-io/cypress/commit/cf51935bf5a49594b012e9a6bd9cabe983fbe500))
171
+ * mistreatment of monorepo dependency ([a21afb2](https://github.com/cypress-io/cypress/commit/a21afb2f2204debd191586bcb250bb64ecbdfd25))
172
+ * setup for cypress vue tests ([c27dc77](https://github.com/cypress-io/cypress/commit/c27dc77ecdb9b33c68737db690432e0418181286))
173
+ * update dependency to webpack dev server ([717ea3a](https://github.com/cypress-io/cypress/commit/717ea3a628c26743a9fe8868e01291ad6b8c0977))
174
+ * use __cy_root at the root element ([9cf102a](https://github.com/cypress-io/cypress/commit/9cf102ad6248a90a91ca766e2ff9267db0f208fa))
175
+
176
+
177
+ ### Features
178
+
179
+ * vue3 support for @cypress/vue ([#15100](https://github.com/cypress-io/cypress/issues/15100)) ([71e85a0](https://github.com/cypress-io/cypress/commit/71e85a03682d577344e705548b5350ec84c29382))
180
+
181
+
182
+ ### Reverts
183
+
184
+ * Revert "feat(vue): vue 3 support in @cypress/vue" ([53fc995](https://github.com/cypress-io/cypress/commit/53fc9958d111a8e60c6dcd873c9d89666c86dfc8))
185
+
186
+
187
+ ### BREAKING CHANGES
188
+
189
+ * dropped support for vue 2 in favor of vue 3
190
+
191
+ * test: remove filter tests not relevant in vue 3
192
+
193
+ # [@cypress/vue-v3.0.0-alpha.4](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-alpha.3...@cypress/vue-v3.0.0-alpha.4) (2021-03-10)
194
+
195
+
196
+ ### Bug Fixes
197
+
198
+ * **component-testing:** video recording for single browser session mode ([#15328](https://github.com/cypress-io/cypress/issues/15328)) ([cce08d2](https://github.com/cypress-io/cypress/commit/cce08d23b781b219635d43419e5b6177927e1ba5))
199
+
200
+ # [@cypress/vue-v3.0.0-alpha.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-alpha.2...@cypress/vue-v3.0.0-alpha.3) (2021-02-24)
201
+
202
+
203
+ ### Bug Fixes
204
+
205
+ * mistreatment of monorepo dependency ([a21afb2](https://github.com/cypress-io/cypress/commit/a21afb2f2204debd191586bcb250bb64ecbdfd25))
206
+
207
+ # [@cypress/vue-v3.0.0-alpha.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v3.0.0-alpha.1...@cypress/vue-v3.0.0-alpha.2) (2021-02-24)
208
+
209
+
210
+ ### Bug Fixes
211
+
212
+ * make webpack-dev-server a peer dependency ([#15163](https://github.com/cypress-io/cypress/issues/15163)) ([fa969fb](https://github.com/cypress-io/cypress/commit/fa969fba78d86494b5d920f573768677301fad13))
213
+ * update dependency to webpack dev server ([717ea3a](https://github.com/cypress-io/cypress/commit/717ea3a628c26743a9fe8868e01291ad6b8c0977))
214
+
215
+ # [@cypress/vue-v3.0.0-alpha.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.0.1...@cypress/vue-v3.0.0-alpha.1) (2021-02-18)
216
+
217
+
218
+ ### Features
219
+
220
+ * vue3 support for @cypress/vue ([#15100](https://github.com/cypress-io/cypress/issues/15100)) ([71e85a0](https://github.com/cypress-io/cypress/commit/71e85a03682d577344e705548b5350ec84c29382))
221
+
222
+
223
+ ### Reverts
224
+
225
+ * Revert "feat(vue): vue 3 support in @cypress/vue" ([53fc995](https://github.com/cypress-io/cypress/commit/53fc9958d111a8e60c6dcd873c9d89666c86dfc8))
226
+
227
+
228
+ ### BREAKING CHANGES
229
+
230
+ * dropped support for vue 2 in favor of vue 3
231
+
232
+ * test: remove filter tests not relevant in vue 3
233
+
234
+ # [@cypress/vue-v2.2.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.2.2...@cypress/vue-v2.2.3) (2021-05-11)
235
+
236
+ ### Bug Fixes
237
+
238
+ * accept webapck 4 & 5 as peer dependencies of @cypress/vue and @cypress/react ([#16290](https://github.com/cypress-io/cypress/issues/16290)) ([c4151fb](https://github.com/cypress-io/cypress/commit/c4151fbd9f3c10de28e3e8dd3a75d0e0973b52e2))
239
+
240
+ # [@cypress/vue-v2.2.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.2.1...@cypress/vue-v2.2.2) (2021-05-05)
241
+
242
+ * accept webapck 4 & 5 as peer dependencies of @cypress/vue and @cypress/react ([#16290](https://github.com/cypress-io/cypress/issues/16290)) ([500cab9](https://github.com/cypress-io/cypress/commit/500cab95ef7a7d6b74b366ba8066bcf73f2955aa))
243
+
244
+ # [@cypress/vue-v2.2.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.2.0...@cypress/vue-v2.2.1) (2021-04-21)
245
+
246
+ * improve handling of userland injected styles in component testing ([#16024](https://github.com/cypress-io/cypress/issues/16024)) ([fe0b63c](https://github.com/cypress-io/cypress/commit/fe0b63c299947470c9cdce3a0d00364a1e224bdb))
247
+
248
+ # [@cypress/vue-v2.2.0](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.1.1...@cypress/vue-v2.2.0) (2021-04-05)
249
+
250
+
251
+ ### Bug Fixes
252
+
253
+ * **@cypress/react:** Devtools unpredictable resets ([#15612](https://github.com/cypress-io/cypress/issues/15612)) ([b1f831a](https://github.com/cypress-io/cypress/commit/b1f831a86a8bcc6646067bc8a9e67871026ff575)), closes [#15634](https://github.com/cypress-io/cypress/issues/15634)
254
+
255
+
256
+ ### Features
257
+
258
+ * simplify vite server ([#15416](https://github.com/cypress-io/cypress/issues/15416)) ([adc2fc8](https://github.com/cypress-io/cypress/commit/adc2fc893fbf32f1f6121d18ddb8a8096e5ebf39))
259
+ * support ct/e2e specific overrides in cypress.json ([#15526](https://github.com/cypress-io/cypress/issues/15526)) ([43c8ae2](https://github.com/cypress-io/cypress/commit/43c8ae2a7c20ba70a0bb0b45b8f6a086e2782f29))
260
+
261
+ # [@cypress/vue-v2.1.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.1.0...@cypress/vue-v2.1.1) (2021-03-16)
262
+
263
+
264
+ ### Bug Fixes
265
+
266
+ * Revert cypress.json changes ([#15499](https://github.com/cypress-io/cypress/issues/15499)) ([237c426](https://github.com/cypress-io/cypress/commit/237c426707714a287ff20ef2bdabff5f0c39e93a))
267
+
268
+ # [@cypress/vue-v2.1.0](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.0.2...@cypress/vue-v2.1.0) (2021-03-15)
269
+
270
+
271
+ ### Bug Fixes
272
+
273
+ * **component-testing:** video recording for single browser session mode ([#15328](https://github.com/cypress-io/cypress/issues/15328)) ([cce08d2](https://github.com/cypress-io/cypress/commit/cce08d23b781b219635d43419e5b6177927e1ba5))
274
+ * make webpack-dev-server a peer dependency ([#15163](https://github.com/cypress-io/cypress/issues/15163)) ([fa969fb](https://github.com/cypress-io/cypress/commit/fa969fba78d86494b5d920f573768677301fad13))
275
+
276
+
277
+ ### Features
278
+
279
+ * support ct/e2e specific overrides in cypress.json ([#15444](https://github.com/cypress-io/cypress/issues/15444)) ([a94c9d5](https://github.com/cypress-io/cypress/commit/a94c9d5ef0da8559f20391fc14396d71fdca7a2f))
280
+
281
+ # [@cypress/vue-v2.0.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.0.1...@cypress/vue-v2.0.2) (2021-03-10)
282
+
283
+
284
+ ### Bug Fixes
285
+
286
+ * trigger release of the packages ([#15405](https://github.com/cypress-io/cypress/issues/15405)) ([1ce5755](https://github.com/cypress-io/cypress/commit/1ce57554e260850472cf753de68858f47b3f7b3d))
287
+
288
+ # [@cypress/vue-v2.0.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v2.0.0...@cypress/vue-v2.0.1) (2021-02-17)
289
+
290
+
291
+ ### Bug Fixes
292
+
293
+ * trigger semantic release ([#15128](https://github.com/cypress-io/cypress/issues/15128)) ([3a6f3b1](https://github.com/cypress-io/cypress/commit/3a6f3b1928277f7086062b1107f424e5a0247e00))
294
+
295
+ # [@cypress/vue-v2.0.0](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.0...@cypress/vue-v2.0.0) (2021-02-16)
296
+
297
+
298
+ ### Bug Fixes
299
+
300
+ * code coverage for vue ([68032c1](https://github.com/cypress-io/cypress/commit/68032c1fcb19999a917c89374ea0a85a9c0a9150))
301
+ * update dependencies of npm/react-vue ([#15095](https://github.com/cypress-io/cypress/issues/15095)) ([e028262](https://github.com/cypress-io/cypress/commit/e028262aed485865c4f40162c1f8102970ef91f8))
302
+ * **Component Testing:** Broken links in docs ([#14251](https://github.com/cypress-io/cypress/issues/14251)) ([a72529f](https://github.com/cypress-io/cypress/commit/a72529f396baee669c9b112d9296d314177f8cc1))
303
+ * **deps:** update dependency debug to version 4.3.1 🌟 ([#14583](https://github.com/cypress-io/cypress/issues/14583)) ([9be6165](https://github.com/cypress-io/cypress/commit/9be61657f4150ba5dee7b67f806d810f3106d13b))
304
+ * add discord chat link for component testing readme ([#8780](https://github.com/cypress-io/cypress/issues/8780)) ([529abdc](https://github.com/cypress-io/cypress/commit/529abdc07c9848fabacf3e304d1dad0def18ebc3))
305
+ * adding build-prod tasks to all of the npm dependencies that need artifacts ([#9045](https://github.com/cypress-io/cypress/issues/9045)) ([550c05c](https://github.com/cypress-io/cypress/commit/550c05cc3d7a2a179de21138ae5f8118277df6ef))
306
+ * adding build-prod tasks to all of the npm dependencies that need artifacts ([#9046](https://github.com/cypress-io/cypress/issues/9046)) ([462829b](https://github.com/cypress-io/cypress/commit/462829bea1d903b0f1666d4ef2dd85e56636b725))
307
+ * Fix cypress-vue-unit-test reference ([#8756](https://github.com/cypress-io/cypress/issues/8756)) ([fa253d2](https://github.com/cypress-io/cypress/commit/fa253d24c04d4f4cecca94729651fcacd48b4ff1))
308
+ * make imported @cypress/react working and pass CI ([#8718](https://github.com/cypress-io/cypress/issues/8718)) ([5e4b638](https://github.com/cypress-io/cypress/commit/5e4b6383854a78d10249621ffea9e4e20effe192))
309
+ * reset head between tests to avoid style bleed ([#8828](https://github.com/cypress-io/cypress/issues/8828)) ([ee7b819](https://github.com/cypress-io/cypress/commit/ee7b8196c8c0e0a9a55b44885e8f43f6120d4869))
310
+ * update bugs link in package.json ([#9015](https://github.com/cypress-io/cypress/issues/9015)) ([34186cb](https://github.com/cypress-io/cypress/commit/34186cb8b76c230a2506cabb0358d44c3205e0c4))
311
+
312
+
313
+ ### Features
314
+
315
+ * component testing ([#14479](https://github.com/cypress-io/cypress/issues/14479)) ([af26fbe](https://github.com/cypress-io/cypress/commit/af26fbebe6bc609132013a0493a116cc78bb1bd4))
316
+ * create-cypress-tests wizard ([#8857](https://github.com/cypress-io/cypress/issues/8857)) ([21ee591](https://github.com/cypress-io/cypress/commit/21ee591d1e9c4083a0c67f2062ced92708c0cedd))
317
+
318
+
319
+ ### BREAKING CHANGES
320
+
321
+ * change of architecture for
322
+ component testing
323
+
324
+ Co-authored-by: Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>
325
+
326
+ # [@cypress/vue-v1.1.0-alpha.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.1.0-alpha.2...@cypress/vue-v1.1.0-alpha.3) (2021-01-27)
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * **deps:** update dependency debug to version 4.3.1 🌟 ([#14583](https://github.com/cypress-io/cypress/issues/14583)) ([9be6165](https://github.com/cypress-io/cypress/commit/9be61657f4150ba5dee7b67f806d810f3106d13b))
332
+
333
+ # [@cypress/vue-v1.1.0-alpha.2](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.1.0-alpha.1...@cypress/vue-v1.1.0-alpha.2) (2021-01-05)
334
+
335
+
336
+ ### Bug Fixes
337
+
338
+ * **Component Testing:** Broken links in docs ([#14251](https://github.com/cypress-io/cypress/issues/14251)) ([a72529f](https://github.com/cypress-io/cypress/commit/a72529f396baee669c9b112d9296d314177f8cc1))
339
+
340
+ # [@cypress/vue-v1.1.0-alpha.1](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.7...@cypress/vue-v1.1.0-alpha.1) (2020-11-30)
341
+
342
+
343
+ ### Features
344
+
345
+ * create-cypress-tests wizard ([#8857](https://github.com/cypress-io/cypress/issues/8857)) ([21ee591](https://github.com/cypress-io/cypress/commit/21ee591d1e9c4083a0c67f2062ced92708c0cedd))
346
+
347
+ # [@cypress/vue-v1.0.1-alpha.7](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.6...@cypress/vue-v1.0.1-alpha.7) (2020-11-10)
348
+
349
+
350
+ ### Bug Fixes
351
+
352
+ * adding build-prod tasks to all of the npm dependencies that need artifacts ([#9045](https://github.com/cypress-io/cypress/issues/9045)) ([550c05c](https://github.com/cypress-io/cypress/commit/550c05cc3d7a2a179de21138ae5f8118277df6ef))
353
+
354
+ # [@cypress/vue-v1.0.1-alpha.6](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.5...@cypress/vue-v1.0.1-alpha.6) (2020-10-30)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * adding build-prod tasks to all of the npm dependencies that need artifacts ([#9046](https://github.com/cypress-io/cypress/issues/9046)) ([462829b](https://github.com/cypress-io/cypress/commit/462829bea1d903b0f1666d4ef2dd85e56636b725))
360
+
361
+ # [@cypress/vue-v1.0.1-alpha.5](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.4...@cypress/vue-v1.0.1-alpha.5) (2020-10-29)
362
+
363
+
364
+ ### Bug Fixes
365
+
366
+ * update bugs link in package.json ([#9015](https://github.com/cypress-io/cypress/issues/9015)) ([34186cb](https://github.com/cypress-io/cypress/commit/34186cb8b76c230a2506cabb0358d44c3205e0c4))
367
+
368
+ # [@cypress/vue-v1.0.1-alpha.4](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.3...@cypress/vue-v1.0.1-alpha.4) (2020-10-14)
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * reset head between tests to avoid style bleed ([#8828](https://github.com/cypress-io/cypress/issues/8828)) ([ee7b819](https://github.com/cypress-io/cypress/commit/ee7b8196c8c0e0a9a55b44885e8f43f6120d4869))
374
+
375
+ # [@cypress/vue-v1.0.1-alpha.3](https://github.com/cypress-io/cypress/compare/@cypress/vue-v1.0.1-alpha.2...@cypress/vue-v1.0.1-alpha.3) (2020-10-14)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * make imported @cypress/react working and pass CI ([#8718](https://github.com/cypress-io/cypress/issues/8718)) ([5e4b638](https://github.com/cypress-io/cypress/commit/5e4b6383854a78d10249621ffea9e4e20effe192))