microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.1.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

CHANGELOG.md

370lines · modecode

1## 1.1.0
2* Added React Native macOS debugging support: [more info](https://github.com/microsoft/vscode-react-native#react-native-for-macos) [#1409](https://github.com/microsoft/vscode-react-native/pull/1409)
3* Added support for `openExpoQR` debugging argument determining whether to open a tab with a QR code after launching the Expo server or not. Enhanced the workflow for Expo server starting [#1413](https://github.com/microsoft/vscode-react-native/pull/1413)
4* Fixed launch scenarios for iOS direct debugging [#1430](https://github.com/microsoft/vscode-react-native/pull/1430)
5* Values in the `target` debug scenario argument are no longer replaced by UDID in case the existing simulator name is already used there [#1431](https://github.com/microsoft/vscode-react-native/pull/1431)
6* Fixed minor extension issues [#1424](https://github.com/microsoft/vscode-react-native/issues/1424), [#1425](https://github.com/microsoft/vscode-react-native/issues/1425)
7
8
9## 1.0.1
10* Fixed issue connected to incorrect project caching when the `projectRoot` argument is used in `settings.json`
11
12
13## 1.0.0
14* Added `sourcemaps` parameters for Direct debugging scenarios [#1395](https://github.com/microsoft/vscode-react-native/pull/1395)
15* Fixed the `Debug Windows` scenario for React Native Windows applications v0.63 [#1395](https://github.com/microsoft/vscode-react-native/pull/1395), [#1412](https://github.com/microsoft/vscode-react-native/pull/1412)
16* Implemented experimental support of iOS direct debugging. It could be used in next versions of React Native with support of [TurboModules](https://github.com/react-native-community/discussions-and-proposals/issues/40) and [Hermes engine for iOS](https://github.com/facebook/hermes/issues/34) [#1367](https://github.com/microsoft/vscode-react-native/pull/1367)
17* Implemented selection of iOS and Android emulators for launch and run scenarios and Command Palette commands [#1361](https://github.com/microsoft/vscode-react-native/pull/1361), [#1374](https://github.com/microsoft/vscode-react-native/pull/1374)
18* Implemented automatic launch of the packager in `attach` scenarios in case it is not running yet [#1320](https://github.com/microsoft/vscode-react-native/pull/1320)
19* Added scenarios (`Run Android, Run iOS, etc`) to run applications without debugging [#1319](https://github.com/microsoft/vscode-react-native/pull/1319)
20* Minor logging improvement [#1392](https://github.com/microsoft/vscode-react-native/pull/1392), [#1330](https://github.com/microsoft/vscode-react-native/pull/1330)
21* Updated documentation
22* The minimum supported version of VS Code has been increased from `1.31.0` to `1.40.0`
23* Internal changes:
24 * Migrated from the [`vscode-node-debug2`](https://github.com/microsoft/vscode-node-debug2) debugger to [`js-debug`](https://github.com/microsoft/vscode-js-debug) one
25 * Integrated the debug adapter directly inside the extension, which allows VS Code to connect to it instead of launching a new external debug adapter per extension's debugging session. See [`DebugAdapterDescriptorFactory`](https://code.visualstudio.com/api/extension-guides/debugger-extension#alternative-approach-to-develop-a-debugger-extension) approach for more details
26 * Improved debug sessions control
27 * Added Webpack bundling for the extension [#1308](https://github.com/microsoft/vscode-react-native/pull/1308)
28 * Got rid of Q promises [#1354](https://github.com/microsoft/vscode-react-native/pull/1354)
29
30
31## 0.17.0
32* Enhanced extension security [#1339](https://github.com/microsoft/vscode-react-native/pull/1339), [#1350](https://github.com/microsoft/vscode-react-native/pull/1350), [#1355](https://github.com/microsoft/vscode-react-native/pull/1355), [#1362](https://github.com/microsoft/vscode-react-native/pull/1362)
33* Updated extension troubleshooting for the Expo debugging case [#1338](https://github.com/microsoft/vscode-react-native/pull/1338)
34* Fixed the Github organisation name capitalization in URLs to the repository, thanks to [Frieder Bluemle(@friederbluemle)](https://github.com/friederbluemle) [#1324](https://github.com/microsoft/vscode-react-native/pull/1324)
35* Updated Packager statusbar indicator representation [#1340](https://github.com/microsoft/vscode-react-native/pull/1340), [#1353](https://github.com/microsoft/vscode-react-native/pull/1353):
36 * Now there are two representations available: `Full` and `Short`. To change it add `react-native.packager.status-indicator` property with a value `Full` for full representation or `Short` for icon only mode. [More info](https://github.com/microsoft/vscode-react-native/pull/1353).
37
38
39## 0.16.1
40* Improved extension security [#1310](https://github.com/microsoft/vscode-react-native/pull/1310), [#1329](https://github.com/microsoft/vscode-react-native/pull/1329)
41* Fixed the incorrect handling of spaces in `adb` path from `local.properties` [#1326](https://github.com/microsoft/vscode-react-native/pull/1326)
42* Internal changes:
43 * Migrated from TSLint to ESLint [#1315](https://github.com/microsoft/vscode-react-native/pull/1315)
44 * Implemented service for running different checks of the extension work [#1309](https://github.com/microsoft/vscode-react-native/pull/1309), [#1322](https://github.com/microsoft/vscode-react-native/pull/1322)
45 * Smoke tests were updated to work with VS Code 1.45.1 and Expo SDK 38
46
47
48## 0.16.0
49* Improved extension security [#1253](https://github.com/microsoft/vscode-react-native/pull/1253)
50* Updated extension license to MIT [#1286](https://github.com/microsoft/vscode-react-native/pull/1286)
51* Fixed fonts usage with Expo SDK 37 [#1260](https://github.com/microsoft/vscode-react-native/pull/1260), [#1264](https://github.com/microsoft/vscode-react-native/pull/1264)
52* Increased packager starting time and fixed handling of StatusBar items click [#1268](https://github.com/microsoft/vscode-react-native/pull/1268)
53* Fixed links in Table of Contents and typos, thanks to [Max von Webel(@343max)](https://github.com/343max) [#1284](https://github.com/microsoft/vscode-react-native/pull/1284)
54* Internal changes:
55 * Migrated unit tests to vscode-test [#1256](https://github.com/microsoft/vscode-react-native/pull/1256)
56 * Updated smoke tests docs [#1281](https://github.com/microsoft/vscode-react-native/pull/1281)
57
58
59## 0.15.0
60* Improved extension security [#1227](https://github.com/microsoft/vscode-react-native/pull/1227)
61* Added an option to add environment variables to the React Native packager process. [More info](https://github.com/microsoft/vscode-react-native#custom-environment-variables) [#1248](https://github.com/microsoft/vscode-react-native/pull/1248)
62* Readme extension homepage has been updated [#1243](https://github.com/microsoft/vscode-react-native/pull/1243), [#1250](https://github.com/microsoft/vscode-react-native/pull/1250), [#1251](https://github.com/microsoft/vscode-react-native/pull/1251)
63* Minor logging improvement [#1237](https://github.com/microsoft/vscode-react-native/pull/1237)
64* Internal changes:
65 * Added YAML Azure Pipelines support for the extension repository
66 * Smoke tests were updated to work with React Native 0.62 and Expo SDK 37
67
68
69## 0.14.2
70* Improved extension security [#1219](https://github.com/microsoft/vscode-react-native/pull/1219), [#1222](https://github.com/microsoft/vscode-react-native/pull/1222), [#1223](https://github.com/microsoft/vscode-react-native/pull/1223), [#1224](https://github.com/microsoft/vscode-react-native/pull/1224)
71* Updated extension dependencies [#1224](https://github.com/microsoft/vscode-react-native/pull/1224)
72* Added support for running iOS debugging on a specific device using flag `target: 'device=<iOS_device_name>'`. [More info](https://github.com/microsoft/vscode-react-native/blob/master/doc/debugging.md#debugging-on-ios-device). [#1207](https://github.com/microsoft/vscode-react-native/pull/1207)
73* Fixed launch of iOS apps with custom project's configuration: custom scheme name, custom app bundle name. [#1213](https://github.com/microsoft/vscode-react-native/pull/1213)
74
75
76## 0.14.1
77* Implemented Expo debugging without mandatory logging in and Internet connection [#1188](https://github.com/microsoft/vscode-react-native/issues/1188)
78 * Added `expoHostType` parameter to Expo debug scenario configuration. See the [documentation](https://github.com/microsoft/vscode-react-native#react-native-debug-configuration-properties) for more details
79* Fixed iOS debugging according to [XCode build caching changes in React Native CLI v3.1.0](https://github.com/react-native-community/cli/releases/tag/v3.1.0) [#1198](https://github.com/microsoft/vscode-react-native/issues/1198)
80
81## 0.14.0
82* Enhanced extension security [#1171](https://github.com/microsoft/vscode-react-native/pull/1171)
83* Deps: `vscode-chrome-debug-core@6.8.8` [#1193](https://github.com/microsoft/vscode-react-native/pull/1193)
84* Enhanced extension logging [#1175](https://github.com/microsoft/vscode-react-native/pull/1175)
85* Added `Debug Windows` scenario configuration to extension's debug scenarios configurations layouts ([#1189](https://github.com/microsoft/vscode-react-native/pull/1189), [#1191](https://github.com/microsoft/vscode-react-native/pull/1191)), thanks to [David Serafimov(@nasadigital)](https://github.com/nasadigital)
86* Fixed typos in documentation ([#1190](https://github.com/microsoft/vscode-react-native/pull/1190)), thanks to [Ivan Tse(@ivantse)](https://github.com/ivantse)
87* Enhanced React Native Hermes applications debugging [#1099](https://github.com/microsoft/vscode-react-native/issues/1099) ([#548](https://github.com/microsoft/vscode-chrome-debug-core/pull/548))
88 * Fixed incorrect displaying of `Global`, `Closure` variables
89 * Fixed incorrect displaying of value of numeric variables
90 * Fixed incorrect displaying of `this` object content
91 * Fixed incorrect handling of arrays on debugging
92 * Fixed displaying of redundant React Native Hermes native functions calls in Call Stack [#1187](https://github.com/microsoft/vscode-react-native/pull/1187)
93* Internal changes:
94 * Enhanced smoke tests workflow ([#1180](https://github.com/microsoft/vscode-react-native/pull/1180))
95 * Enhanced extension telemetry ([#1175](https://github.com/microsoft/vscode-react-native/pull/1175))
96
97## 0.13.2
98* Added support for Haul packager 0.15 [#1166](https://github.com/microsoft/vscode-react-native/pull/1166)
99* Fixed security vulnerability [#1165](https://github.com/microsoft/vscode-react-native/pull/1165)
100
101## 0.13.1
102* Fixed command palette commands execution in cases when `projectRoot` has been customized [#1160](https://github.com/microsoft/vscode-react-native/pull/1160)
103
104## 0.13.0
105* The algorithm of processing React Native CLI commands was changed, the [following changes were made](https://github.com/microsoft/vscode-react-native/pull/1093):
106 * Extension can now work without the `react-native-cli` installed globally. Now it uses local CLI from `react-native` package installed in `node_modules` of the React Native project
107 * Added `reactNativeGlobalCommandName` property support to `settings.json` that is allowing to switch between locally installed CLI and global ones ([more info](https://github.com/microsoft/vscode-react-native/blob/master/doc/customization.md#setting-up-react-native-global-cli))
108 * Added error handling in cases if React Native package is not installed in `node_modules`
109* Added additional verbose mode error logging in cases if `settings.json` file is incorrect or absent [#1148](https://github.com/microsoft/vscode-react-native/pull/1148)
110* Fixed --project-path React Native command argument handling for iOS [#1143](https://github.com/microsoft/vscode-react-native/pull/1143)
111* Fixed Hermes debug scenarios quick configurations names [#1140](https://github.com/microsoft/vscode-react-native/pull/1140)
112* Fixed `port` argument handling for launch and attach Hermes debug scenarios [#1140](https://github.com/microsoft/vscode-react-native/pull/1140)
113* Added support for `@expo/xdl` greater than 56.1 [#1155](https://github.com/microsoft/vscode-react-native/pull/1155), [@expo/expo-cli#864](https://github.com/expo/expo-cli/issues/864)
114* Improved extension security [#1145](https://github.com/microsoft/vscode-react-native/pull/1145)
115
116## 0.12.1
117* Fixed debugging issues with React Native 0.61 applications if some additional packages were installed, such as `react-native-navigation` or `react-native-splash-screen`
118
119## 0.12.0
120* Added experimental support for React Native Android applications on Hermes engine. Experimental means that the debugger is on early stage of development and some bugs can be revealed. If you tried experimental feature and would like to provide feedback, please post it to [Github issue](https://github.com/microsoft/vscode-react-native/issues/1099).
121* Added support for React Native 0.61 [#1122](https://github.com/microsoft/vscode-react-native/pull/1122)
122* Added wait phase for initializing React Native app bundle sourcemaps to avoid breakpoints skip on application initialization [#1081](https://github.com/microsoft/vscode-react-native/issues/1081)
123* Added [inline breakpoints feature](https://github.com/microsoft/vscode/issues/31612) support
124* Improved extension security [#1125](https://github.com/microsoft/vscode-react-native/pull/1125)
125
126## 0.11.2
127* Fixed `Attach to packager` debugging issue when Haul packager is being used [#1108](https://github.com/microsoft/vscode-react-native/issues/1108)
128* Optimized extension activation events [#1114](https://github.com/microsoft/vscode-react-native/pull/1114)
129
130## 0.11.1
131* Fixed debugging issue when using `broadcast-channels` package in React Native application [#1083](https://github.com/microsoft/vscode-react-native/issues/1083)
132* Added `launchActivity` debug configuration parameter for Android allowing to choose the activity to launch on `Debug Android` scenario [#1084](https://github.com/microsoft/vscode-react-native/pull/1084)
133* Added error handling for some specific cases [#1086](https://github.com/microsoft/vscode-react-native/pull/1086)
134* Optimized extension activation events [#1103](https://github.com/microsoft/vscode-react-native/pull/1103)
135
136## 0.11.0
137* Fixed the folder `.vscode/.react` isn't created when opening directory with nested RN project
138* Fixed usage of removed `-v` option for `react-native` command from @react-native-community/cli
139* Updated extension translation
140* [Internal] Improved smoke tests workflow
141
142## 0.10.2
143* Fixed security vulnerabilities ([#1050](https://github.com/microsoft/vscode-react-native/pull/1050), [#1052](https://github.com/microsoft/vscode-react-native/pull/1052), [#1055](https://github.com/microsoft/vscode-react-native/pull/1055))
144* Fixed readme markup ([#1051](https://github.com/microsoft/vscode-react-native/pull/1051))
145
146## 0.10.1
147* Added support for React Native 0.60 ([#1043](https://github.com/microsoft/vscode-react-native/pull/1043))
148* Fixed `diff` security vulnerability ([#1029](https://github.com/microsoft/vscode-react-native/pull/1029))
149* `program` debug configuration property is deprecated and will be removed in future, please remove it from debug configurations and replace it by `"cwd": "${workspaceFolder}"`
150* Added documentation for debug configurations properties ([#1040](https://github.com/microsoft/vscode-react-native/pull/1040))
151
152## 0.10.0
153* Added support for Expo SDK 33 ([#1025](https://github.com/microsoft/vscode-react-native/pull/1025))
154* Simplified `launch.json` debug configuration file generation, added debug configuration provider UI which allows to choose needed debug configurations ([#830](https://github.com/microsoft/vscode-react-native/issues/830))
155* `outDir` debug configuration property was removed, `sourceMaps` property was excluded from initial debug configurations and set to `true` if not specified explicitly ([#1033](https://github.com/microsoft/vscode-react-native/pull/1033))
156* Changed `Reload App` Command Pallete command approach for Android ([#1016](https://github.com/microsoft/vscode-react-native/pull/1016)), thanks to [Alter Code(@muhamad-rizki)](https://github.com/muhamad-rizki)
157* Fixed some logging typos ([#1018](https://github.com/microsoft/vscode-react-native/pull/1018)), thanks to [Adam Krantz(@akrantz)](https://github.com/akrantz)
158
159## 0.9.3
160* Fixed `Show Dev Menu` and `Reload App` Command Pallette commands for iOS ([#978](https://github.com/microsoft/vscode-react-native/issues/978))
161* Fixed debugging functionality on Node.js 12 due to deprecating of Node cli argument `--debug-brk` ([#1000](https://github.com/microsoft/vscode-react-native/issues/1000))
162* Fixed scheme configuration variable handling for iOS native apps, added instruction for using `scheme` variable ([#989](https://github.com/microsoft/vscode-react-native/issues/989))
163* Added debug configuration setup instruction[(#986)](https://github.com/microsoft/vscode-react-native/pull/986), thanks to [Peadar Coyle(@springcoil)](https://github.com/springcoil)
164* Changed extension publisher from `vsmobile` to `msjsdiag`
165
166## 0.9.2
167* Fixed issue when using `console.trace()` caused error on native app [#974](https://github.com/microsoft/vscode-react-native/issues/974)
168* Fixed [tar security vulnerabilities](https://www.npmjs.com/advisories/803)
169* Fixed logging for `attach` event
170* Updated documentation
171
172## 0.9.1
173* Added debugger configuration parameter `debuggerWorkerUrlPath` that provides the ability to change path to the React Native `debuggerWorker.js` file [#947](https://github.com/microsoft/vscode-react-native/issues/947)
174* Fixed [js-yaml security vulnerability](https://www.npmjs.com/advisories/788)
175* Bumped debug core dependencies versions to the more recent ones
176* Fixed wording for "Run Android on Emulator" command, thanks to [Frieder Bluemle(@friederbluemle)](https://github.com/friederbluemle)
177
178## 0.9.0
179* Finished localization of the extension
180* Bumped debug core dependencies versions to the more recent ones
181* Fixed debugging issue on iOS due to changes in building process in RN 0.59
182* Fixed several documentation wordings, thanks to [Kristian Sakarisson (@Sakarisson)](https://github.com/Sakarisson), [Brendan McGill (@brendanmc6)](https://github.com/brendanmc6)
183* Other minor improvements
184
185## 0.8.0
186* Improved extension security
187* Improved error logging
188* Improved Expo login workflow
189* Added warning if RN application is being ran using `Debug In Exponent` configuration and `expo` package is not installed [#882](https://github.com/microsoft/vscode-react-native/issues/882)
190* Fixed debugger url problem for haul projects [#875](https://github.com/microsoft/vscode-react-native/issues/875)
191* Added localization for next languages:
192 * Chinese Simplified
193 * Chinese Traditional
194 * Japanese
195 * Korean
196 * German
197 * French
198 * Spanish
199 * Russian
200 * Italian
201 * Czech
202 * Turkish
203 * Portuguese
204 * Polish
205
206**Some localizations may not be completed, they will be updated in future**
207
208## 0.7.0
209* Added `Run Element Inspector` command that runs standalone [React Developer Tools](https://github.com/facebook/react-devtools)
210* Migrate to [WebView Api](https://code.visualstudio.com/docs/extensions/webview) instead of using deprecated `vscode.previewHtml` command
211* Added minimal externalization support for Italian language
212* Moved to Azure pipelines builds instead of Travis CI for pull requests validation
213* Replaced deprecated dependency gulp-util
214* Updated documentation: improved `Debugging React Native applications` section and Expo instructions
215
216## 0.6.18
217* Fix parsing `sdk.dir` in `android/local.properties` on Windows machines
218
219## 0.6.17
220* Return changes from 0.6.14 - 0.6.15
221* Added support for react-native versions >= 0.57
222* Bug fixes
223
224## 0.6.16
225* Reverted to the state of 0.6.13
226
227## 0.6.15
228* Fixed critical issue with android debugging introduced in 0.6.14
229
230## 0.6.14
231* Added reading SDK location from `local.properties`
232* Added support for building iOS apps with custom configuration names
233* Bug fixes and improvements
234
235## 0.6.13
236* Fixed "Inverified breakpoint" error while debugging apps with RN >= 0.54.3 < 0.55
237* Fixed issue with ignoring getAssetExts() in rn-cli.config.js during debugging
238* Fixed leaking global variable "process.versions" from debugger process to worker
239
240## 0.6.12
241* Added debugger for WPF platform(react-native-windows > 0.55.0)
242* Minor bug fixes and improvements
243
244## 0.6.11
245* Fixed activation event promises handling
246* Fixed "connect ENOENT *.sock" error during debugging from within non React Native project root
247* Minor bug fixes and improvements
248
249## 0.6.10
250* Minor fixes and improvements
251
252## 0.6.9
253* Migrated CodePush functionality to App Center extension for VS Code
254
255## 0.6.8
256* Bug fixes
257
258## 0.6.7
259* Bug fixes
260
261## 0.6.6
262* Bug fixes
263
264## 0.6.5
265* Fixed issue with SourceMaps generation for RN 0.54.x
266
267## 0.6.4
268* Narrow down activation events for extension
269* Remove local file dependencies for code-push libs from package.json
270* Bug fixes
271
272## 0.6.3
273* Updated README
274
275## 0.6.2
276* Fixed issue with finding index{os}.js file
277
278## 0.6.1
279* Fixed issue with detecting react-native-code-push
280* Minor fixes
281
282## 0.6.0
283* Added support for react-native-code-push commands
284
285## 0.5.7
286* Bug fixes
287
288## 0.5.6
289* Bug fixes
290
291## 0.5.4
292* Bug fixes
293
294## 0.5.3
295* Environment Variable setting for debug configurations
296* Improved multi-root workspaces support
297* Bug fixes
298
299## 0.5.2
300* Added support React-Native 0.50 and greater
301
302## 0.5.1
303* Bug fixes
304
305## 0.5.0
306* Multi-root workspaces support
307* Debugging for Haxe project
308* Some bugs fixed
309
310## 0.4.4
311* Fixed issue with Run iOS on device
312
313## 0.4.3
314* Added custom packager port support
315* Added separate channels for logs output
316* Added Reload App and Open Dev Menu commands
317* Added launch options to attach to remote packager
318
319## 0.4.2
320* Fixed annoying error message when app's entry point is not `index.<platform>.js`
321* Added `runArguments` [configuration option](doc/customization.md#specifying-custom-arguments-for-react-native-run--command) to allow passing custom arguments to `react-native run-*` commands
322* Reorganized documentation structure
323* Switched to direct usage of React Native CLI instead of `ideviceinstaller` to run iOS
324* Fixed automatic enable of JS debugging on iOS simulator
325
326## 0.4.1
327* Added notice about `.vscode/.react` directory (#505)
328* Fixed bug in typescript sourcemaps rewrite logic when project and vscode are on different drives
329* Fixed regression causing `react-native` commands ran from command palette to fail
330* Fixed regression causing debugging to fail when start debugging Expo project first time
331
332## 0.4.0
333* Fixed issue with infinite loops when reloading RN app
334* Fixed compatibility issues with react-native >=0.45
335* Added more robust sourcemaps support to enable Typescript debugging
336* Added instructions to enable Flowtype intellisense
337* Fixed error "Error processing 'continue'" appearing when reloading app while staying on breakpoint
338* Added “scheme” option to `launch.json` to pass build scheme to xcodebuild
339* Improved LogCat logging - now reusing existing output channel when possible
340* Refactored extension to support debugging of Expo and CRNA apps better (#478)
341* Added support for displaying Expo's QR code
342
343## 0.3.2
344* Rename launch.json snippets to make it easier to add React Native launch configurations to existing `launch.json`
345* Fix regressions in app worker introduced after moving to 'node2' debugger
346* Fix bug with loading assets in exponent and upgrade XDL
347* Prevent unhandled rejection warnings to be logged to debug console when breakpoints are not set up successfully
348* Prefer `xcworkspace` files over `xcodeproj` when launching `xcodebuild`
349* Updated README `.babelrc` instructions
350
351## 0.3.1
352* Fixed an issue when no .vscode folder is present in a project
353* Added support for launch.json snippets
354
355## 0.3.0
356* Updated to use node2 debug engine instead of node. We now spawn a separate node process to run the app logic rather than using node's `vm` infrastructure.
357* Fixed support for android variants
358* Fixed the ability to open source files by tapping on stack frames when the app red-boxes
359
360## 0.2.5
361* Removed `require` from app worker context to work around change in node 7. `__debug__.require` is still present for applications which need it
362
363## 0.2.4
364* Allowed using this extension in a workspace with the react-native project in a subfolder.
365* Ignore references to inline sourcemaps, in the hopes of finding another reference to a map file
366* Exposed `react-native-tools.showInternalLogs` and `react-native-tools.logLevel` to print additional output for debugging issues with the extension.
367* Added CHANGELOG.md!
368
369## 0.2.3
370* Added a workaround for max-stack issues with react-native 0.37
371