1. 01 Oct, 2018 1 commit
  2. 30 Sep, 2018 1 commit
    • Joe Haddad's avatar
      Polish webpack message output (#5174) · 7b1a32be
      Joe Haddad authored
      * Only install react-scripts in CI mode
      
      * Link locally
      
      * Re-enable all output tests
      
      * :lipstick: Polish webpack output
      
      * Test sass support message
      
      * Add more tests, but disabled
      
      * Format missing default export error
      
      * Format aliased import
      
      * Why was node-sass required? Odd
      
      * Format webpack rejection error
      
      * Re-enable unknown package test
      
      * Format file not found error and catch module scope plugin error
      
      * Re-disable case sensitive paths
      
      * Intercept and format case sensitive path errors
      
      * Test out of scope message formatting
      
      * Run behavior on macOS
      
      * Run behavior on Node 8 and 10, only Node 8 for macOS
      
      * Add some debugging
      
      * Update matcher
      
      * Only check stderr
      
      * Remove old snapshot
      
      * More debug
      
      * Remove debug
      
      * Add new debug
      
      * Disable test on linux
      
      * Add comment for future
      7b1a32be
  3. 29 Sep, 2018 1 commit
  4. 28 Sep, 2018 2 commits
    • Joe Haddad's avatar
      Publish · c5c7da0f
      Joe Haddad authored
       - babel-preset-react-app@5.0.0
       - react-app-polyfill@0.1.1
       - react-dev-utils@6.0.1
       - react-error-overlay@5.0.1
       - react-scripts@2.0.1
      c5c7da0f
    • Joe Haddad's avatar
      Run behavioral smoke tests with Jest, add output tests (#5150) · 2a7346e0
      Joe Haddad authored
      * Run smoke tests with Jest
      
      * Get a unique port for smoke test
      
      * Upgrade verdaccio across the board
      
      * Drop unneeded step
      
      * Try latest instead
      
      * Boot registry in home directory
      
      * Correct config path
      
      * Add mutex
      
      * Test webpack message formatting
      
      * Strip color
      
      * Add browserslist to default
      
      * Disable another broken feature
      2a7346e0
  5. 27 Sep, 2018 3 commits
  6. 26 Sep, 2018 2 commits
    • Joe Haddad's avatar
      Publish · ac5376f9
      Joe Haddad authored
       - babel-plugin-named-asset-import@0.2.0
       - babel-preset-react-app@4.0.0
       - confusing-browser-globals@1.0.1
       - create-react-app@2.0.0
       - eslint-config-react-app@3.0.0
       - react-app-polyfill@0.1.0
       - react-dev-utils@6.0.0
       - react-error-overlay@5.0.0
       - react-scripts@2.0.0
      ac5376f9
    • Joe Haddad's avatar
      Make Sass missing message friendlier (#4514) · 1448b241
      Joe Haddad authored
      * Tweak browser support section
      
      * Make sass message friendlier
      
      * Tweak message
      
      * Tweak message futher
      
      * test
      1448b241
  7. 25 Sep, 2018 1 commit
  8. 24 Sep, 2018 3 commits
  9. 22 Sep, 2018 1 commit
  10. 21 Sep, 2018 3 commits
  11. 20 Sep, 2018 4 commits
  12. 19 Sep, 2018 4 commits
  13. 18 Sep, 2018 3 commits
  14. 17 Sep, 2018 7 commits
  15. 22 Aug, 2018 4 commits
    • Dan Abramov's avatar
      Bump release · 550fccb6
      Dan Abramov authored
      550fccb6
    • Dan Abramov's avatar
      Bump versions · ca88a69b
      Dan Abramov authored
      ca88a69b
    • Dan Abramov's avatar
      Bump versions · 96ba7bdd
      Dan Abramov authored
      96ba7bdd
    • 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