1. 22 Aug, 2018 2 commits
    • Dan Abramov's avatar
      Bump versions · ca88a69b
      Dan Abramov authored
      ca88a69b
    • Andrew Clark's avatar
      Use file name whitelist to prevent RCE (#4866) · 24b101d2
      Andrew Clark authored
      * Use file name whitelist to prevent RCE
      
      Use a whitelist to validate user-provided file names. This doesn't cover
      the entire range of valid filenames but should cover almost all of them
      in practice. Allows letters, numbers, periods, dashes, and underscores.
      Opting to use a whitelist instead of a blacklist because getting this
      wrong leaves us vulnerable to a RCE attack.
      
      * Allow alphabet characters from all languages
      
      Updated the whitelist to /^[\p{L}0-9/.\-_]+$/u, which matches
      alphanumeric characters, periods, dashes, and underscores. Unicode
      property support is stage 4 so I've inlined the transpiled version.
      
      * Only use file name whitelist on Windows
      
      * Log error message if file name does not pass whitelist
      24b101d2
  2. 04 Apr, 2018 2 commits
  3. 15 Jan, 2018 1 commit
    • Dan's avatar
      Publish · e73a783e
      Dan authored
       - babel-preset-react-app@3.1.1
       - create-react-app@1.5.0
       - eslint-config-react-app@2.1.0
       - react-dev-utils@5.0.0
       - react-error-overlay@4.0.0
       - react-scripts@1.1.0
      e73a783e
  4. 14 Jan, 2018 2 commits
  5. 10 Jan, 2018 3 commits
  6. 09 Jan, 2018 8 commits
  7. 08 Jan, 2018 1 commit
  8. 04 Jan, 2018 1 commit
    • Norris Oduro's avatar
      Fix path regex match bug (#3686) · 8cae659e
      Norris Oduro authored
      * Fix path regex match bug
      
      * Use the escape-string-regexp package to escape regex characters
      
      * Remove redundant character escape from path
      
      * Add removed escape of backslashes
      8cae659e
  9. 04 Nov, 2017 1 commit
  10. 31 Oct, 2017 3 commits
  11. 28 Oct, 2017 1 commit
    • Dan Abramov's avatar
      Bump dependencies (#3342) · d98b7565
      Dan Abramov authored
      * Bump dependencies
      
      * Downgrade source-map back to 0.5.x
      
      Not sure what changed there but our bundle snapshot doesn't match with minor changes.
      I couldn't figure out how to update it, and also whether we need to tweak getPrettyURL in response.
      d98b7565
  12. 06 Oct, 2017 1 commit
    • Tharaka Wijebandara's avatar
      Add click-to-open support for build errors (#3100) · 00ed100b
      Tharaka Wijebandara authored
      * Implement click-to-open for babel syntax errors in build error overlay
      
      * Add click-to-open support for lint errors and refactor parser
      
      * Reactor code to reuse open-in-editor functionality in both build and runtime error overlays
      
      * Fix some eslint warnings
      
      * Add a comment about keeping middleware and dev client in sync
      
      * Remove es6 features from webpack dev client
      
      * Make open-in-editor functionality to work with new iframe script
      
      * Rename `openInEditor` to `editorHandler`
       -  Remove indirection of openInEditorListener
       -  Check editorHandler for null before styling error clickable
      
      * Fix flow errors
      00ed100b
  13. 03 Oct, 2017 1 commit
  14. 27 Sep, 2017 1 commit
    • Joe Haddad's avatar
      Publish · b2c0b3f7
      Joe Haddad authored
       - babel-preset-react-app@3.0.3
       - create-react-app@1.4.1
       - eslint-config-react-app@2.0.1
       - react-dev-utils@4.1.0
       - react-error-overlay@2.0.2
       - react-scripts@1.0.14
      b2c0b3f7
  15. 26 Sep, 2017 1 commit
  16. 16 Sep, 2017 1 commit
  17. 11 Sep, 2017 1 commit
    • gulderov's avatar
      Auto-detect running editor on Linux for error overlay (#3077) · 1faee66a
      gulderov authored
      * Auto-detect running editor on Linux for error overlay
      
      Basic support of auto detecting running editor for #2636.
      Tested on Ubuntu 16.04.
      It detects few editors. JetBrains products should start by
      wrapper like /usr/local/bin/webstorm. Otherwise it takes a
      lot of time to open editor.
      
      * Comments fixed.
      
      * List all processes owned by you
      
      * Comment rewording
      1faee66a
  18. 10 Sep, 2017 1 commit
  19. 09 Sep, 2017 1 commit
  20. 02 Sep, 2017 3 commits
  21. 01 Sep, 2017 1 commit
  22. 28 Aug, 2017 2 commits
    • Dan Abramov's avatar
      Publish · a51be958
      Dan Abramov authored
       - react-dev-utils@4.0.0
       - react-error-overlay@2.0.0
       - react-scripts@1.0.12
      a51be958
    • Tharaka Wijebandara's avatar
      Convert react-error-overlay to React (#2515) · ecd1f054
      Tharaka Wijebandara authored
      * Convert react-error-overlay to React
      
      * Update compile-time error overlay to use react-error-overlay components
      
       * Refactor react-error-overlay components to container and presentational components.
      
       * Make the compile-time error overlay a part of react-error-overlay package.
      
       * Use react-error-overlay as dependency in react-dev-utils to show compile-time errors.
      
      * Run Prettier
      
      * Move the function name fix into StackFrame itself
      
      * Fix clicking on source code snippet to open the code in editor
      
      * Use exact objects + minor style tweak
      
      * Don't linkify frames that don't exist on the disk
      
      * Fix lint
      
      * Consolidate iframe rendering logic
      
      * Remove circular dependency between react-dev-utils and react-error-overlay
      
      * Fix lint
      
      * Fix decoupling of react-dev-utils and react-error-overlay by moving middleware
      
      * Deduplicate identical errors
      ecd1f054
  23. 27 Aug, 2017 1 commit