@fluentui/react-image 0.0.0-nightly-20220302-0405.1

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 (57) hide show
  1. package/CHANGELOG.json +3258 -0
  2. package/CHANGELOG.md +1240 -0
  3. package/LICENSE +15 -0
  4. package/MIGRATION.md +235 -0
  5. package/README.md +57 -0
  6. package/Spec.md +173 -0
  7. package/dist/react-image.d.ts +60 -0
  8. package/lib/Image.d.ts +1 -0
  9. package/lib/Image.js +2 -0
  10. package/lib/Image.js.map +1 -0
  11. package/lib/components/Image/Image.d.ts +6 -0
  12. package/lib/components/Image/Image.js +15 -0
  13. package/lib/components/Image/Image.js.map +1 -0
  14. package/lib/components/Image/Image.types.d.ts +30 -0
  15. package/lib/components/Image/Image.types.js +2 -0
  16. package/lib/components/Image/Image.types.js.map +1 -0
  17. package/lib/components/Image/index.d.ts +5 -0
  18. package/lib/components/Image/index.js +6 -0
  19. package/lib/components/Image/index.js.map +1 -0
  20. package/lib/components/Image/renderImage.d.ts +6 -0
  21. package/lib/components/Image/renderImage.js +16 -0
  22. package/lib/components/Image/renderImage.js.map +1 -0
  23. package/lib/components/Image/useImage.d.ts +6 -0
  24. package/lib/components/Image/useImage.js +30 -0
  25. package/lib/components/Image/useImage.js.map +1 -0
  26. package/lib/components/Image/useImageStyles.d.ts +3 -0
  27. package/lib/components/Image/useImageStyles.js +78 -0
  28. package/lib/components/Image/useImageStyles.js.map +1 -0
  29. package/lib/index.d.ts +1 -0
  30. package/lib/index.js +2 -0
  31. package/lib/index.js.map +1 -0
  32. package/lib/tsdoc-metadata.json +11 -0
  33. package/lib-commonjs/Image.d.ts +1 -0
  34. package/lib-commonjs/Image.js +10 -0
  35. package/lib-commonjs/Image.js.map +1 -0
  36. package/lib-commonjs/components/Image/Image.d.ts +6 -0
  37. package/lib-commonjs/components/Image/Image.js +26 -0
  38. package/lib-commonjs/components/Image/Image.js.map +1 -0
  39. package/lib-commonjs/components/Image/Image.types.d.ts +30 -0
  40. package/lib-commonjs/components/Image/Image.types.js +6 -0
  41. package/lib-commonjs/components/Image/Image.types.js.map +1 -0
  42. package/lib-commonjs/components/Image/index.d.ts +5 -0
  43. package/lib-commonjs/components/Image/index.js +18 -0
  44. package/lib-commonjs/components/Image/index.js.map +1 -0
  45. package/lib-commonjs/components/Image/renderImage.d.ts +6 -0
  46. package/lib-commonjs/components/Image/renderImage.js +27 -0
  47. package/lib-commonjs/components/Image/renderImage.js.map +1 -0
  48. package/lib-commonjs/components/Image/useImage.d.ts +6 -0
  49. package/lib-commonjs/components/Image/useImage.js +40 -0
  50. package/lib-commonjs/components/Image/useImage.js.map +1 -0
  51. package/lib-commonjs/components/Image/useImageStyles.d.ts +3 -0
  52. package/lib-commonjs/components/Image/useImageStyles.js +89 -0
  53. package/lib-commonjs/components/Image/useImageStyles.js.map +1 -0
  54. package/lib-commonjs/index.d.ts +1 -0
  55. package/lib-commonjs/index.js +10 -0
  56. package/lib-commonjs/index.js.map +1 -0
  57. package/package.json +64 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1240 @@
1
+ # Change Log - @fluentui/react-image
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:54 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:54 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-rc.4..@fluentui/react-image_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
16
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
17
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+
19
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-rc.4)
20
+
21
+ Tue, 01 Mar 2022 02:17:40 GMT
22
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-rc.3..@fluentui/react-image_v9.0.0-rc.4)
23
+
24
+ ### Changes
25
+
26
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
27
+
28
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-rc.3)
29
+
30
+ Fri, 18 Feb 2022 13:35:32 GMT
31
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-rc.1..@fluentui/react-image_v9.0.0-rc.3)
32
+
33
+ ### Changes
34
+
35
+ - fix: Add react-theme as dependency to react-image ([PR #21787](https://github.com/microsoft/fluentui/pull/21787) by lingfangao@hotmail.com)
36
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
37
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
38
+ - Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
39
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
40
+
41
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-rc.1)
42
+
43
+ Thu, 10 Feb 2022 08:51:14 GMT
44
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-beta.4..@fluentui/react-image_v9.0.0-rc.1)
45
+
46
+ ### Changes
47
+
48
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
49
+ - react-image: Replacing use of functions in makeStyles with direct use of tokens. ([PR #21044](https://github.com/microsoft/fluentui/pull/21044) by Humberto.Morimoto@microsoft.com)
50
+ - use Griffel packages ([PR #21432](https://github.com/microsoft/fluentui/pull/21432) by olfedias@microsoft.com)
51
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
52
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
53
+ - BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
54
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
55
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
56
+ - update styles to not use CSS shorthands ([PR #20818](https://github.com/microsoft/fluentui/pull/20818) by olfedias@microsoft.com)
57
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
58
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
59
+
60
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-beta.4)
61
+
62
+ Thu, 25 Nov 2021 08:34:13 GMT
63
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-beta.3..@fluentui/react-image_v9.0.0-beta.4)
64
+
65
+ ### Changes
66
+
67
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
68
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
69
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
70
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
71
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
72
+
73
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-beta.3)
74
+
75
+ Fri, 12 Nov 2021 13:25:24 GMT
76
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-beta.2..@fluentui/react-image_v9.0.0-beta.3)
77
+
78
+ ### Changes
79
+
80
+ - export static classes for components ([PR #20447](https://github.com/microsoft/fluentui/pull/20447) by olfedias@microsoft.com)
81
+ - Updated Image stories with codesandbox export comments ([PR #20369](https://github.com/microsoft/fluentui/pull/20369) by gcox@microsoft.com)
82
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
83
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
84
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
85
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
86
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
87
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
88
+
89
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-beta.2)
90
+
91
+ Wed, 27 Oct 2021 12:14:18 GMT
92
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-beta.1..@fluentui/react-image_v9.0.0-beta.2)
93
+
94
+ ### Changes
95
+
96
+ - Removed duplicate 'Image' from story names ([PR #20268](https://github.com/microsoft/fluentui/pull/20268) by gcox@microsoft.com)
97
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
98
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
99
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
100
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
101
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
102
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
103
+
104
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-beta.1)
105
+
106
+ Wed, 06 Oct 2021 10:37:22 GMT
107
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.90..@fluentui/react-image_v9.0.0-beta.1)
108
+
109
+ ### Changes
110
+
111
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
112
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
113
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
114
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
115
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
116
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
117
+
118
+ ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.90)
119
+
120
+ Tue, 05 Oct 2021 12:47:58 GMT
121
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.89..@fluentui/react-image_v9.0.0-alpha.90)
122
+
123
+ ### Changes
124
+
125
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
126
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
127
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
128
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
129
+
130
+ ## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.89)
131
+
132
+ Tue, 05 Oct 2021 09:28:07 GMT
133
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.88..@fluentui/react-image_v9.0.0-alpha.89)
134
+
135
+ ### Changes
136
+
137
+ - Adds ForwardRefComponent to react-image components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
138
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
139
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
140
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
141
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
142
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
143
+
144
+ ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.88)
145
+
146
+ Fri, 01 Oct 2021 14:13:08 GMT
147
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.86..@fluentui/react-image_v9.0.0-alpha.88)
148
+
149
+ ### Changes
150
+
151
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
152
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
153
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
154
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
155
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
156
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
157
+
158
+ ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.86)
159
+
160
+ Wed, 29 Sep 2021 08:06:11 GMT
161
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.85..@fluentui/react-image_v9.0.0-alpha.86)
162
+
163
+ ### Changes
164
+
165
+ - Updated ImageProps for consistency ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by gcox@microsoft.com)
166
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
167
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
168
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
169
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
170
+
171
+ ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.85)
172
+
173
+ Mon, 27 Sep 2021 08:06:00 GMT
174
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.84..@fluentui/react-image_v9.0.0-alpha.85)
175
+
176
+ ### Changes
177
+
178
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
179
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
180
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
181
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
182
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
183
+
184
+ ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.84)
185
+
186
+ Fri, 24 Sep 2021 09:17:17 GMT
187
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.83..@fluentui/react-image_v9.0.0-alpha.84)
188
+
189
+ ### Changes
190
+
191
+ - Added shadow prop ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by tkrasniqi@microsoft.com)
192
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
193
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
194
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
195
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
196
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
197
+
198
+ ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.83)
199
+
200
+ Thu, 23 Sep 2021 08:21:34 GMT
201
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.82..@fluentui/react-image_v9.0.0-alpha.83)
202
+
203
+ ### Changes
204
+
205
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
206
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
207
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
208
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
209
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
210
+
211
+ ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.82)
212
+
213
+ Wed, 22 Sep 2021 10:10:07 GMT
214
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.81..@fluentui/react-image_v9.0.0-alpha.82)
215
+
216
+ ### Changes
217
+
218
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
219
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
220
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
221
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
222
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
223
+
224
+ ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.81)
225
+
226
+ Tue, 21 Sep 2021 07:42:34 GMT
227
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.80..@fluentui/react-image_v9.0.0-alpha.81)
228
+
229
+ ### Changes
230
+
231
+ - Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
232
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
233
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
234
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
235
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
236
+
237
+ ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.80)
238
+
239
+ Mon, 20 Sep 2021 07:36:26 GMT
240
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.79..@fluentui/react-image_v9.0.0-alpha.80)
241
+
242
+ ### Changes
243
+
244
+ - Removed conditional adding of aria-hidden ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by tkrasniqi@microsoft.com)
245
+ - Bump @fluentui/react-image to v9.0.0-alpha.80 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
246
+
247
+ ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.79)
248
+
249
+ Fri, 17 Sep 2021 07:35:26 GMT
250
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.78..@fluentui/react-image_v9.0.0-alpha.79)
251
+
252
+ ### Changes
253
+
254
+ - Bump @fluentui/react-image to v9.0.0-alpha.79 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
255
+
256
+ ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.78)
257
+
258
+ Thu, 16 Sep 2021 07:38:39 GMT
259
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.77..@fluentui/react-image_v9.0.0-alpha.78)
260
+
261
+ ### Changes
262
+
263
+ - Fix typings in React.forwardRef ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
264
+ - Bump @fluentui/react-image to v9.0.0-alpha.78 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
265
+
266
+ ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.77)
267
+
268
+ Tue, 14 Sep 2021 20:09:02 GMT
269
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.76..@fluentui/react-image_v9.0.0-alpha.77)
270
+
271
+ ### Changes
272
+
273
+ - Migrate to simplified slots ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by tkrasniqi@microsoft.com)
274
+ - Bump @fluentui/react-image to v9.0.0-alpha.77 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
275
+
276
+ ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.76)
277
+
278
+ Fri, 10 Sep 2021 16:31:53 GMT
279
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.75..@fluentui/react-image_v9.0.0-alpha.76)
280
+
281
+ ### Changes
282
+
283
+ - chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
284
+ - Bump @fluentui/react-image to v9.0.0-alpha.76 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
285
+
286
+ ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.75)
287
+
288
+ Fri, 10 Sep 2021 07:39:51 GMT
289
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.74..@fluentui/react-image_v9.0.0-alpha.75)
290
+
291
+ ### Changes
292
+
293
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.45 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
294
+
295
+ ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.74)
296
+
297
+ Mon, 06 Sep 2021 07:34:53 GMT
298
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.73..@fluentui/react-image_v9.0.0-alpha.74)
299
+
300
+ ### Changes
301
+
302
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.44 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
303
+
304
+ ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.73)
305
+
306
+ Thu, 02 Sep 2021 07:36:46 GMT
307
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.72..@fluentui/react-image_v9.0.0-alpha.73)
308
+
309
+ ### Patches
310
+
311
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
312
+
313
+ ### Changes
314
+
315
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
316
+
317
+ ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.72)
318
+
319
+ Wed, 01 Sep 2021 07:39:56 GMT
320
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.71..@fluentui/react-image_v9.0.0-alpha.72)
321
+
322
+ ### Changes
323
+
324
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.43 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
325
+
326
+ ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.71)
327
+
328
+ Tue, 31 Aug 2021 07:37:47 GMT
329
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.70..@fluentui/react-image_v9.0.0-alpha.71)
330
+
331
+ ### Changes
332
+
333
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.42 ([PR #19556](https://github.com/microsoft/fluentui/pull/19556) by lingfan.gao@microsoft.com)
334
+
335
+ ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.70)
336
+
337
+ Fri, 27 Aug 2021 07:33:32 GMT
338
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.69..@fluentui/react-image_v9.0.0-alpha.70)
339
+
340
+ ### Changes
341
+
342
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
343
+
344
+ ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.69)
345
+
346
+ Thu, 26 Aug 2021 07:35:43 GMT
347
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.68..@fluentui/react-image_v9.0.0-alpha.69)
348
+
349
+ ### Changes
350
+
351
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
352
+
353
+ ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.68)
354
+
355
+ Tue, 24 Aug 2021 07:34:48 GMT
356
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.67..@fluentui/react-image_v9.0.0-alpha.68)
357
+
358
+ ### Changes
359
+
360
+ - Updating TypeScript type-only imports/exports to use import/export syntax. ([PR #19474](https://github.com/microsoft/fluentui/pull/19474) by dzearing@hotmail.com)
361
+
362
+ ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.67)
363
+
364
+ Fri, 20 Aug 2021 07:37:28 GMT
365
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.66..@fluentui/react-image_v9.0.0-alpha.67)
366
+
367
+ ### Changes
368
+
369
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
370
+
371
+ ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.66)
372
+
373
+ Thu, 19 Aug 2021 07:41:35 GMT
374
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.65..@fluentui/react-image_v9.0.0-alpha.66)
375
+
376
+ ### Changes
377
+
378
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.39 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
379
+
380
+ ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.65)
381
+
382
+ Fri, 13 Aug 2021 07:36:34 GMT
383
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.64..@fluentui/react-image_v9.0.0-alpha.65)
384
+
385
+ ### Changes
386
+
387
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
388
+
389
+ ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.64)
390
+
391
+ Wed, 11 Aug 2021 07:34:54 GMT
392
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.63..@fluentui/react-image_v9.0.0-alpha.64)
393
+
394
+ ### Changes
395
+
396
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.35 ([PR #19256](https://github.com/microsoft/fluentui/pull/19256) by olfedias@microsoft.com)
397
+
398
+ ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.63)
399
+
400
+ Fri, 06 Aug 2021 07:35:14 GMT
401
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.62..@fluentui/react-image_v9.0.0-alpha.63)
402
+
403
+ ### Changes
404
+
405
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.34 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
406
+
407
+ ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.62)
408
+
409
+ Tue, 03 Aug 2021 07:39:30 GMT
410
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.61..@fluentui/react-image_v9.0.0-alpha.62)
411
+
412
+ ### Patches
413
+
414
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
415
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
416
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
417
+
418
+ ### Changes
419
+
420
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.33 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
421
+
422
+ ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.61)
423
+
424
+ Mon, 02 Aug 2021 07:36:20 GMT
425
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.60..@fluentui/react-image_v9.0.0-alpha.61)
426
+
427
+ ### Changes
428
+
429
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.36 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
430
+
431
+ ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.60)
432
+
433
+ Mon, 26 Jul 2021 07:37:30 GMT
434
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.59..@fluentui/react-image_v9.0.0-alpha.60)
435
+
436
+ ### Changes
437
+
438
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.31 ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
439
+
440
+ ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.59)
441
+
442
+ Fri, 23 Jul 2021 07:38:19 GMT
443
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.58..@fluentui/react-image_v9.0.0-alpha.59)
444
+
445
+ ### Changes
446
+
447
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.30 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
448
+
449
+ ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.58)
450
+
451
+ Thu, 22 Jul 2021 07:36:55 GMT
452
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.57..@fluentui/react-image_v9.0.0-alpha.58)
453
+
454
+ ### Changes
455
+
456
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.29 ([PR #19038](https://github.com/microsoft/fluentui/pull/19038) by lingfan.gao@microsoft.com)
457
+
458
+ ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.57)
459
+
460
+ Tue, 20 Jul 2021 22:23:17 GMT
461
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.56..@fluentui/react-image_v9.0.0-alpha.57)
462
+
463
+ ### Changes
464
+
465
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.28 ([PR #18998](https://github.com/microsoft/fluentui/pull/18998) by olfedias@microsoft.com)
466
+
467
+ ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.56)
468
+
469
+ Fri, 16 Jul 2021 22:53:17 GMT
470
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.55..@fluentui/react-image_v9.0.0-alpha.56)
471
+
472
+ ### Changes
473
+
474
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.26 ([PR #18973](https://github.com/microsoft/fluentui/pull/18973) by olfedias@microsoft.com)
475
+
476
+ ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.55)
477
+
478
+ Thu, 15 Jul 2021 07:36:18 GMT
479
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.54..@fluentui/react-image_v9.0.0-alpha.55)
480
+
481
+ ### Changes
482
+
483
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.33 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
484
+
485
+ ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.54)
486
+
487
+ Tue, 13 Jul 2021 22:32:58 GMT
488
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.53..@fluentui/react-image_v9.0.0-alpha.54)
489
+
490
+ ### Patches
491
+
492
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
493
+
494
+ ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.53)
495
+
496
+ Tue, 13 Jul 2021 07:35:36 GMT
497
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.52..@fluentui/react-image_v9.0.0-alpha.53)
498
+
499
+ ### Changes
500
+
501
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
502
+
503
+ ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.52)
504
+
505
+ Fri, 09 Jul 2021 07:39:31 GMT
506
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.51..@fluentui/react-image_v9.0.0-alpha.52)
507
+
508
+ ### Patches
509
+
510
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
511
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
512
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
513
+
514
+ ### Changes
515
+
516
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.23 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
517
+
518
+ ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.51)
519
+
520
+ Fri, 02 Jul 2021 23:15:55 GMT
521
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.50..@fluentui/react-image_v9.0.0-alpha.51)
522
+
523
+ ### Changes
524
+
525
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.22 ([PR #18816](https://github.com/microsoft/fluentui/pull/18816) by olfedias@microsoft.com)
526
+
527
+ ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.50)
528
+
529
+ Fri, 02 Jul 2021 07:37:06 GMT
530
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.49..@fluentui/react-image_v9.0.0-alpha.50)
531
+
532
+ ### Changes
533
+
534
+ - Rename typings and getSlots to have the Compat Suffix ([PR #18796](https://github.com/microsoft/fluentui/pull/18796) by bsunderhus@microsoft.com)
535
+
536
+ ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.49)
537
+
538
+ Thu, 01 Jul 2021 07:35:05 GMT
539
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.48..@fluentui/react-image_v9.0.0-alpha.49)
540
+
541
+ ### Changes
542
+
543
+ - Fixing bug in start script of converged packages. ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com)
544
+
545
+ ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.48)
546
+
547
+ Wed, 30 Jun 2021 07:38:35 GMT
548
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.47..@fluentui/react-image_v9.0.0-alpha.48)
549
+
550
+ ### Changes
551
+
552
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.19 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com)
553
+
554
+ ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.47)
555
+
556
+ Tue, 29 Jun 2021 07:33:32 GMT
557
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.46..@fluentui/react-image_v9.0.0-alpha.47)
558
+
559
+ ### Changes
560
+
561
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.18 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
562
+
563
+ ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.46)
564
+
565
+ Tue, 22 Jun 2021 07:35:11 GMT
566
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.45..@fluentui/react-image_v9.0.0-alpha.46)
567
+
568
+ ### Changes
569
+
570
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.17 ([PR #18397](https://github.com/microsoft/fluentui/pull/18397) by olfedias@microsoft.com)
571
+
572
+ ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.45)
573
+
574
+ Tue, 15 Jun 2021 07:40:20 GMT
575
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.44..@fluentui/react-image_v9.0.0-alpha.45)
576
+
577
+ ### Changes
578
+
579
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.29 ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com)
580
+
581
+ ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.44)
582
+
583
+ Mon, 07 Jun 2021 07:38:15 GMT
584
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.43..@fluentui/react-image_v9.0.0-alpha.44)
585
+
586
+ ### Patches
587
+
588
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
589
+ - Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
590
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
591
+
592
+ ### Changes
593
+
594
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.15 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
595
+
596
+ ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.43)
597
+
598
+ Fri, 04 Jun 2021 07:37:23 GMT
599
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.42..@fluentui/react-image_v9.0.0-alpha.43)
600
+
601
+ ### Changes
602
+
603
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com)
604
+
605
+ ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.42)
606
+
607
+ Thu, 03 Jun 2021 07:36:03 GMT
608
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.41..@fluentui/react-image_v9.0.0-alpha.42)
609
+
610
+ ### Changes
611
+
612
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.13 ([PR #18401](https://github.com/microsoft/fluentui/pull/18401) by martinhochel@microsoft.com)
613
+
614
+ ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.41)
615
+
616
+ Wed, 02 Jun 2021 07:37:15 GMT
617
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.40..@fluentui/react-image_v9.0.0-alpha.41)
618
+
619
+ ### Changes
620
+
621
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.12 ([PR #18404](https://github.com/microsoft/fluentui/pull/18404) by bsunderhus@microsoft.com)
622
+
623
+ ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.40)
624
+
625
+ Wed, 26 May 2021 07:35:43 GMT
626
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.39..@fluentui/react-image_v9.0.0-alpha.40)
627
+
628
+ ### Changes
629
+
630
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
631
+
632
+ ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.39)
633
+
634
+ Fri, 21 May 2021 07:34:54 GMT
635
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.38..@fluentui/react-image_v9.0.0-alpha.39)
636
+
637
+ ### Changes
638
+
639
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.24 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com)
640
+
641
+ ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.38)
642
+
643
+ Thu, 20 May 2021 07:41:54 GMT
644
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.37..@fluentui/react-image_v9.0.0-alpha.38)
645
+
646
+ ### Patches
647
+
648
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
649
+ - Bump @fluentui/react-conformance to v0.4.0 ([PR #17577](https://github.com/microsoft/fluentui/pull/17577) by elcraig@microsoft.com)
650
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
651
+
652
+ ### Changes
653
+
654
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.10 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
655
+
656
+ ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.37)
657
+
658
+ Wed, 19 May 2021 07:34:20 GMT
659
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.36..@fluentui/react-image_v9.0.0-alpha.37)
660
+
661
+ ### Patches
662
+
663
+ - Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com)
664
+
665
+ ### Changes
666
+
667
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
668
+
669
+ ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.36)
670
+
671
+ Tue, 18 May 2021 07:34:38 GMT
672
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.35..@fluentui/react-image_v9.0.0-alpha.36)
673
+
674
+ ### Changes
675
+
676
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.8 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com)
677
+
678
+ ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.35)
679
+
680
+ Thu, 13 May 2021 07:36:55 GMT
681
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.34..@fluentui/react-image_v9.0.0-alpha.35)
682
+
683
+ ### Changes
684
+
685
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.7 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com)
686
+
687
+ ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.34)
688
+
689
+ Wed, 12 May 2021 07:36:20 GMT
690
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.33..@fluentui/react-image_v9.0.0-alpha.34)
691
+
692
+ ### Changes
693
+
694
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.6 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com)
695
+
696
+ ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.33)
697
+
698
+ Mon, 10 May 2021 07:36:07 GMT
699
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.32..@fluentui/react-image_v9.0.0-alpha.33)
700
+
701
+ ### Changes
702
+
703
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.5 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com)
704
+
705
+ ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.32)
706
+
707
+ Wed, 05 May 2021 07:36:50 GMT
708
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.31..@fluentui/react-image_v9.0.0-alpha.32)
709
+
710
+ ### Changes
711
+
712
+ - transform styles with Babel plugin ([PR #16534](https://github.com/microsoft/fluentui/pull/16534) by olfedias@microsoft.com)
713
+
714
+ ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.31)
715
+
716
+ Mon, 03 May 2021 07:45:19 GMT
717
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.30..@fluentui/react-image_v9.0.0-alpha.31)
718
+
719
+ ### Changes
720
+
721
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
722
+
723
+ ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.30)
724
+
725
+ Fri, 30 Apr 2021 07:42:23 GMT
726
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.29..@fluentui/react-image_v9.0.0-alpha.30)
727
+
728
+ ### Patches
729
+
730
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
731
+ - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
732
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
733
+
734
+ ### Changes
735
+
736
+ - Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
737
+
738
+ ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.29)
739
+
740
+ Tue, 27 Apr 2021 07:34:03 GMT
741
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.28..@fluentui/react-image_v9.0.0-alpha.29)
742
+
743
+ ### Changes
744
+
745
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com)
746
+
747
+ ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.28)
748
+
749
+ Mon, 26 Apr 2021 07:34:31 GMT
750
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.27..@fluentui/react-image_v9.0.0-alpha.28)
751
+
752
+ ### Changes
753
+
754
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com)
755
+
756
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.27)
757
+
758
+ Fri, 23 Apr 2021 07:37:10 GMT
759
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.26..@fluentui/react-image_v9.0.0-alpha.27)
760
+
761
+ ### Patches
762
+
763
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
764
+ - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
765
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
766
+
767
+ ### Changes
768
+
769
+ - remove polyfill for objectFit ([PR #17896](https://github.com/microsoft/fluentui/pull/17896) by olfedias@microsoft.com)
770
+
771
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.26)
772
+
773
+ Thu, 22 Apr 2021 07:33:28 GMT
774
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.25..@fluentui/react-image_v9.0.0-alpha.26)
775
+
776
+ ### Changes
777
+
778
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com)
779
+
780
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.25)
781
+
782
+ Wed, 21 Apr 2021 07:31:50 GMT
783
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.24..@fluentui/react-image_v9.0.0-alpha.25)
784
+
785
+ ### Changes
786
+
787
+ - Rename ax() to mergeClasses() ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com)
788
+
789
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.24)
790
+
791
+ Tue, 20 Apr 2021 07:31:35 GMT
792
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.23..@fluentui/react-image_v9.0.0-alpha.24)
793
+
794
+ ### Changes
795
+
796
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.23 ([PR #17855](https://github.com/microsoft/fluentui/pull/17855) by lingfan.gao@microsoft.com)
797
+
798
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.23)
799
+
800
+ Fri, 16 Apr 2021 18:08:21 GMT
801
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.22..@fluentui/react-image_v9.0.0-alpha.23)
802
+
803
+ ### Changes
804
+
805
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com)
806
+
807
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.22)
808
+
809
+ Wed, 14 Apr 2021 07:34:12 GMT
810
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.21..@fluentui/react-image_v9.0.0-alpha.22)
811
+
812
+ ### Changes
813
+
814
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.21 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com)
815
+
816
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.21)
817
+
818
+ Fri, 09 Apr 2021 07:31:06 GMT
819
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.20..@fluentui/react-image_v9.0.0-alpha.21)
820
+
821
+ ### Changes
822
+
823
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.20 ([PR #17670](https://github.com/microsoft/fluentui/pull/17670) by olfedias@microsoft.com)
824
+
825
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.20)
826
+
827
+ Thu, 08 Apr 2021 07:33:06 GMT
828
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.19..@fluentui/react-image_v9.0.0-alpha.20)
829
+
830
+ ### Changes
831
+
832
+ - use ax() instead of useAx() ([PR #17713](https://github.com/microsoft/fluentui/pull/17713) by olfedias@microsoft.com)
833
+
834
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.19)
835
+
836
+ Thu, 01 Apr 2021 20:13:37 GMT
837
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.18..@fluentui/react-image_v9.0.0-alpha.19)
838
+
839
+ ### Changes
840
+
841
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.18 ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com)
842
+
843
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.18)
844
+
845
+ Wed, 31 Mar 2021 00:53:43 GMT
846
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.17..@fluentui/react-image_v9.0.0-alpha.18)
847
+
848
+ ### Patches
849
+
850
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
851
+ - Bump @fluentui/react-conformance to v0.2.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
852
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
853
+
854
+ ### Changes
855
+
856
+ - Fix type errors caught by makeMergeProps improvements ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
857
+
858
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.17)
859
+
860
+ Tue, 30 Mar 2021 07:34:45 GMT
861
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.16..@fluentui/react-image_v9.0.0-alpha.17)
862
+
863
+ ### Changes
864
+
865
+ - chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
866
+
867
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.16)
868
+
869
+ Fri, 26 Mar 2021 07:32:34 GMT
870
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.15..@fluentui/react-image_v9.0.0-alpha.16)
871
+
872
+ ### Changes
873
+
874
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.15 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
875
+
876
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.15)
877
+
878
+ Thu, 25 Mar 2021 07:33:24 GMT
879
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.14..@fluentui/react-image_v9.0.0-alpha.15)
880
+
881
+ ### Changes
882
+
883
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.14 ([PR #17539](https://github.com/microsoft/fluentui/pull/17539) by olfedias@microsoft.com)
884
+
885
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.14)
886
+
887
+ Tue, 23 Mar 2021 07:31:43 GMT
888
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.13..@fluentui/react-image_v9.0.0-alpha.14)
889
+
890
+ ### Changes
891
+
892
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.13 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
893
+
894
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.13)
895
+
896
+ Fri, 19 Mar 2021 07:32:43 GMT
897
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.12..@fluentui/react-image_v9.0.0-alpha.13)
898
+
899
+ ### Changes
900
+
901
+ - react-image - Updates styles from makeStylesCompat to makeStyles ([PR #17441](https://github.com/microsoft/fluentui/pull/17441) by bsunderhus@microsoft.com)
902
+
903
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.12)
904
+
905
+ Thu, 18 Mar 2021 20:15:34 GMT
906
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.11..@fluentui/react-image_v9.0.0-alpha.12)
907
+
908
+ ### Changes
909
+
910
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.12 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
911
+
912
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.11)
913
+
914
+ Tue, 16 Mar 2021 07:32:44 GMT
915
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.10..@fluentui/react-image_v9.0.0-alpha.11)
916
+
917
+ ### Patches
918
+
919
+ - Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
920
+
921
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.10)
922
+
923
+ Mon, 15 Mar 2021 07:36:20 GMT
924
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.9..@fluentui/react-image_v9.0.0-alpha.10)
925
+
926
+ ### Changes
927
+
928
+ - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
929
+
930
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.9)
931
+
932
+ Fri, 12 Mar 2021 20:04:27 GMT
933
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.8..@fluentui/react-image_v9.0.0-alpha.9)
934
+
935
+ ### Patches
936
+
937
+ - Bump @fluentui/react-conformance to v0.2.3 ([PR #17161](https://github.com/microsoft/fluentui/pull/17161) by martinhochel@microsoft.com)
938
+
939
+ ### Changes
940
+
941
+ - Change makeStyles to makeStylesCompat ([PR #17354](https://github.com/microsoft/fluentui/pull/17354) by bsunderhus@microsoft.com)
942
+
943
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.8)
944
+
945
+ Wed, 10 Mar 2021 07:34:39 GMT
946
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.7..@fluentui/react-image_v9.0.0-alpha.8)
947
+
948
+ ### Changes
949
+
950
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.8 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com)
951
+
952
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.7)
953
+
954
+ Fri, 05 Mar 2021 20:30:59 GMT
955
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.6..@fluentui/react-image_v9.0.0-alpha.7)
956
+
957
+ ### Changes
958
+
959
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.7 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com)
960
+
961
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.6)
962
+
963
+ Wed, 03 Mar 2021 00:10:09 GMT
964
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.5..@fluentui/react-image_v9.0.0-alpha.6)
965
+
966
+ ### Changes
967
+
968
+ - Remove set-version dependency from converged components ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
969
+
970
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.5)
971
+
972
+ Tue, 02 Mar 2021 07:24:27 GMT
973
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.4..@fluentui/react-image_v9.0.0-alpha.5)
974
+
975
+ ### Changes
976
+
977
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.5 ([PR #17131](https://github.com/microsoft/fluentui/pull/17131) by behowell@microsoft.com)
978
+
979
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.4)
980
+
981
+ Fri, 26 Feb 2021 01:16:27 GMT
982
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.3..@fluentui/react-image_v9.0.0-alpha.4)
983
+
984
+ ### Patches
985
+
986
+ - Bump @fluentui/eslint-plugin to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
987
+ - Bump @fluentui/react-conformance to v0.2.2 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
988
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
989
+ - Bump @fluentui/set-version to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
990
+
991
+ ### Changes
992
+
993
+ - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
994
+
995
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.3)
996
+
997
+ Thu, 25 Feb 2021 20:16:39 GMT
998
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.2..@fluentui/react-image_v9.0.0-alpha.3)
999
+
1000
+ ### Changes
1001
+
1002
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.3 ([PR #17085](https://github.com/microsoft/fluentui/pull/17085) by humbertomakotomorimoto@gmail.com)
1003
+
1004
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.2)
1005
+
1006
+ Thu, 25 Feb 2021 01:15:27 GMT
1007
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v9.0.0-alpha.1..@fluentui/react-image_v9.0.0-alpha.2)
1008
+
1009
+ ### Patches
1010
+
1011
+ - Bump @fluentui/react-conformance to v0.2.1 ([PR #17118](https://github.com/microsoft/fluentui/pull/17118) by altinokd@microsoft.com)
1012
+
1013
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v9.0.0-alpha.1)
1014
+
1015
+ Wed, 24 Feb 2021 00:05:29 GMT
1016
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.8.0..@fluentui/react-image_v9.0.0-alpha.1)
1017
+
1018
+ ### Changes
1019
+
1020
+ - bump version to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
1021
+
1022
+ ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.8.0)
1023
+
1024
+ Mon, 22 Feb 2021 12:26:22 GMT
1025
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.7.2..@fluentui/react-image_v0.8.0)
1026
+
1027
+ ### Minor changes
1028
+
1029
+ - Breaks dependency on react-hooks for convergence ([PR #17091](https://github.com/microsoft/fluentui/pull/17091) by lingfan.gao@microsoft.com)
1030
+
1031
+ ### Patches
1032
+
1033
+ - Bump @fluentui/react-make-styles to v0.2.8 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
1034
+
1035
+ ## [0.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.7.2)
1036
+
1037
+ Thu, 18 Feb 2021 19:38:50 GMT
1038
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.7.1..@fluentui/react-image_v0.7.2)
1039
+
1040
+ ### Patches
1041
+
1042
+ - Allow React 17 in peerDependencies ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1043
+
1044
+ ### Changes
1045
+
1046
+ - Bump @fluentui/react-hooks to v8.0.0-beta.14 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1047
+ - Bump @fluentui/react-make-styles to v0.2.7 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1048
+
1049
+ ## [0.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.7.1)
1050
+
1051
+ Thu, 18 Feb 2021 12:27:34 GMT
1052
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.7.0..@fluentui/react-image_v0.7.1)
1053
+
1054
+ ### Patches
1055
+
1056
+ - use @fluentui/react-utilities instead of @fluentui/react-utils ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com)
1057
+
1058
+ ### Changes
1059
+
1060
+ - Bump @fluentui/eslint-plugin to v1.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1061
+ - Bump @fluentui/react-hooks to v8.0.0-beta.13 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1062
+ - Bump @fluentui/react-make-styles to v0.2.7-0 ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com)
1063
+ - Bump @fluentui/react-conformance to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1064
+ - Bump @fluentui/set-version to v8.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1065
+ - Bump @fluentui/scripts to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1066
+
1067
+ ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.7.0)
1068
+
1069
+ Wed, 17 Feb 2021 12:21:39 GMT
1070
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.23..@fluentui/react-image_v0.7.0)
1071
+
1072
+ ### Minor changes
1073
+
1074
+ - feat(react-image): redo to match convergence rfc ([PR #16894](https://github.com/microsoft/fluentui/pull/16894) by jakubkonka@microsoft.com)
1075
+
1076
+ ## [0.6.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.23)
1077
+
1078
+ Mon, 15 Feb 2021 12:22:00 GMT
1079
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.22..@fluentui/react-image_v0.6.23)
1080
+
1081
+ ### Patches
1082
+
1083
+ - cleanup ref usages, remove unused types ([PR #16964](https://github.com/microsoft/fluentui/pull/16964) by olfedias@microsoft.com)
1084
+
1085
+ ### Changes
1086
+
1087
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.24 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1088
+ - Bump @fluentui/react-hooks to v8.0.0-beta.12 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1089
+ - Bump @fluentui/react-utils to v0.3.2-0 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1090
+
1091
+ ## [0.6.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.22)
1092
+
1093
+ Fri, 12 Feb 2021 12:26:20 GMT
1094
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.21..@fluentui/react-image_v0.6.22)
1095
+
1096
+ ### Patches
1097
+
1098
+ - Bump @fluentui/react-utils to v0.3.1 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com)
1099
+
1100
+ ### Changes
1101
+
1102
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.23 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com)
1103
+
1104
+ ## [0.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.21)
1105
+
1106
+ Thu, 11 Feb 2021 00:58:10 GMT
1107
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.21..@fluentui/react-image_v0.6.21)
1108
+
1109
+ ### Changes
1110
+
1111
+ - Bump @fluentui/react-compose to v1.0.0-beta.12 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1112
+ - Bump @fluentui/react-hooks to v8.0.0-beta.11 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1113
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.22 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1114
+ - Bump @fluentui/react-utils to v0.3.1-0 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1115
+
1116
+ ## [0.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.21)
1117
+
1118
+ Tue, 09 Feb 2021 00:56:52 GMT
1119
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.20..@fluentui/react-image_v0.6.21)
1120
+
1121
+ ### Patches
1122
+
1123
+ - Bump @fluentui/react-utils to v0.3.0 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1124
+
1125
+ ### Changes
1126
+
1127
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.21 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1128
+
1129
+ ## [0.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.20)
1130
+
1131
+ Mon, 08 Feb 2021 12:23:08 GMT
1132
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.20..@fluentui/react-image_v0.6.20)
1133
+
1134
+ ### Changes
1135
+
1136
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.20 ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com)
1137
+
1138
+ ## [0.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.20)
1139
+
1140
+ Tue, 02 Feb 2021 12:21:54 GMT
1141
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.19..@fluentui/react-image_v0.6.20)
1142
+
1143
+ ### Patches
1144
+
1145
+ - use a compat version of ThemeProvider ([PR #16729](https://github.com/microsoft/fluentui/pull/16729) by olfedias@microsoft.com)
1146
+
1147
+ ## [0.6.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.19)
1148
+
1149
+ Mon, 01 Feb 2021 12:23:48 GMT
1150
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.19-15..@fluentui/react-image_v0.6.19)
1151
+
1152
+ ### Patches
1153
+
1154
+ - add prerelease in disallowed change type for version packages and fix current versioning. ([PR #16696](https://github.com/microsoft/fluentui/pull/16696) by xgao@microsoft.com)
1155
+ - Extract compose/next to react-utils ([PR #16690](https://github.com/microsoft/fluentui/pull/16690) by lingfan.gao@microsoft.com)
1156
+
1157
+ ## [0.6.19-15](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.19-15)
1158
+
1159
+ Thu, 28 Jan 2021 12:25:56 GMT
1160
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.19-14..@fluentui/react-image_v0.6.19-15)
1161
+
1162
+ ### Changes
1163
+
1164
+ - Updating to webpack 5, latest typings, latest loaders and plugins. ([PR #16447](https://github.com/microsoft/fluentui/pull/16447) by dzearing@microsoft.com)
1165
+
1166
+ ## [0.6.19-14](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.19-14)
1167
+
1168
+ Thu, 21 Jan 2021 12:36:12 GMT
1169
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.18..@fluentui/react-image_v0.6.19-14)
1170
+
1171
+ ### Changes
1172
+
1173
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1174
+
1175
+ ## [0.6.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.18)
1176
+
1177
+ Fri, 23 Oct 2020 23:25:40 GMT
1178
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.17..@fluentui/react-image_v0.6.18)
1179
+
1180
+ ### Patches
1181
+
1182
+ - Major bump react-compose package since it dependes on packages with new major. ([PR #15679](https://github.com/microsoft/fluentui/pull/15679) by xgao@microsoft.com)
1183
+
1184
+ ## [0.6.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.17)
1185
+
1186
+ Fri, 23 Oct 2020 03:26:15 GMT
1187
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.9..@fluentui/react-image_v0.6.17)
1188
+
1189
+ ### Patches
1190
+
1191
+ - Rename @uifabric/set-version to @fluentui/set-version ([PR #15616](https://github.com/microsoft/fluentui/pull/15616) by ololubek@microsoft.com)
1192
+ - Rename @uifabric/react-hooks to @fluentui/react-hooks & @uifabric/utilities to @fluentui/utilities ([PR #15629](https://github.com/microsoft/fluentui/pull/15629) by ololubek@microsoft.com)
1193
+
1194
+ ## [0.6.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.9)
1195
+
1196
+ Fri, 25 Sep 2020 12:25:17 GMT
1197
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.6.1..@fluentui/react-image_v0.6.9)
1198
+
1199
+ ### Patches
1200
+
1201
+ - Moving examples to @fluentui/examples package. ([PR #15132](https://github.com/microsoft/fluentui/pull/15132) by humbertomakotomorimoto@gmail.com)
1202
+
1203
+ ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.6.0)
1204
+
1205
+ Tue, 15 Sep 2020 12:26:06 GMT
1206
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.4.2..@fluentui/react-image_v0.6.0)
1207
+
1208
+ ### Minor changes
1209
+
1210
+ - Updating state to use makeProps (mergeProps with explicit deep cloning, rather than implicit.) ([PR #14985](https://github.com/microsoft/fluentui/pull/14985) by dzearing@hotmail.com)
1211
+
1212
+ ## [0.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.4.2)
1213
+
1214
+ Tue, 25 Aug 2020 12:36:19 GMT
1215
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.3.0..@fluentui/react-image_v0.4.2)
1216
+
1217
+ ### Patches
1218
+
1219
+ - feat(react-image): improve accessibility, align with design spec ([PR #14441](https://github.com/microsoft/fluentui/pull/14441) by olfedias@microsoft.com)
1220
+
1221
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.3.0)
1222
+
1223
+ Tue, 18 Aug 2020 07:58:00 GMT
1224
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-image_v0.1.1..@fluentui/react-image_v0.3.0)
1225
+
1226
+ ### Minor changes
1227
+
1228
+ - Image: removing compose usage in favor of hooks and factories ([PR #14506](https://github.com/microsoft/fluentui/pull/14506) by mnajdova@gmail.com)
1229
+
1230
+ ### Patches
1231
+
1232
+ - fixing publish ([PR #14566](https://github.com/microsoft/fluentui/pull/14566) by kchau@microsoft.com)
1233
+
1234
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-image_v0.1.1)
1235
+
1236
+ Wed, 22 Jul 2020 12:40:51 GMT
1237
+
1238
+ ### Patches
1239
+
1240
+ - feat: add @fluentui/react-image ([PR #14083](https://github.com/microsoft/fluentui/pull/14083) by olfedias@microsoft.com)