Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update from upstream repo facebook/create-react-app@master #4

Open
wants to merge 1,310 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Dec 30, 2019

  1. Replace favicon in templates (#8194)

    The old favicon was the same as the official react documentation, which is a minor annoyance during development when trying to find the tab you want. The new favicon is just the old with inverted colors.
    
    Closes #7957
    heyimalex authored Dec 30, 2019
    Configuration menu
    Copy the full SHA
    c03bb36 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2020

  1. Configuration menu
    Copy the full SHA
    fa85f03 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94932be View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2020

  1. Minor grammatical edit (#8293)

    egrim authored and heyimalex committed Jan 16, 2020
    Configuration menu
    Copy the full SHA
    f875bb0 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2020

  1. Update Dependencies (#8324)

    RDIL authored and ianschmitz committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    a608c5a View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2020

  1. Remove React.FC from Typescript template (#8177)

    This removes `React.FC` from the base template for a Typescript project.
    
    Long explanation for a small change: 
    
    `React.FC` is unnecessary: it provides next to no benefits and has a few downsides.  (See below.)  I see a lot of beginners to TS+React using it, however, and I think that it's usage in this template is a contributing factor to that, as the prominence of this template makes it a de facto source of "best practice".  
    
    ### Downsides to React.FC/React.FunctionComponent
    
    ##### Provides an implicit definition of `children`
    
    Defining a component with `React.FC` causes it to implicitly take `children` (of type `ReactNode`).  It means that all components accept children, even if they're not supposed to, allowing code like:
    
    ```ts
    const App: React.FC = () => { /*... */ };
    const Example = () => {
    	<App><div>Unwanted children</div></App>
    }
    ```
    
    This isn't a run-time error, but it is a mistake and one that would be caught by Typescript if not for `React.FC`. 
    
    ##### Doesn't support generics.
    I can define a generic component like:
    ```ts
    type GenericComponentProps<T> = {
       prop: T
       callback: (t: T) => void
    }
    const GenericComponent = <T>(props: GenericComponentProps<T>) => {/*...*/}
    ```
    
    But it's not possible when using `React.FC` - there's no way to preserve the unresolved generic `T` in the type returned by `React.FC`.
    
    ```ts
    const GenericComponent: React.FC</* ??? */> = <T>(props: GenericComponentProps<T>) => {/*...*/}
    ```
    
    ##### Makes "component as namespace pattern" more awkward.
    It's a somewhat popular pattern to use a component as a namespace for related components (usually children):
    
    ```jsx
    <Select>
    	<Select.Item />
    </Select>
    ```
    
    This is possible, but awkward, with `React.FC`:
    
    ```tsx
    const  Select: React.FC<SelectProps> & { Item: React.FC<ItemProps> } = (props) => {/* ... */ }
    Select.Item = (props) => { /*...*/ }
    ```
    
    but "just works" without `React.FC`:
    
    ```tsx
    const Select = (props: SelectProps) => {/* ... */}
    Select.Item = (props) => { /*...*/ }
    ```
    
    ##### Doesn't work correctly with defaultProps
    
    This is a fairly moot point as in both cases it's probably better to use ES6 default arguments, but...
    
    ```tsx
    type  ComponentProps = { name: string; }
    
    const  Component = ({ name }: ComponentProps) => (<div>
    	{name.toUpperCase()} /* Safe since name is required */
    </div>);
    Component.defaultProps = { name: "John" };
    
    const  Example = () => (<Component />) /* Safe to omit since name has a default value */
    ```
    This compiles correctly.  Any approach with `React.FC` will be slightly wrong: either `React.FC<{name: string}>` will make the prop required by consumers, when it should be optional, or `React.FC<{name?: string}>` will cause `name.toUpperCase()` to be a type error.  There's no way to replicate the "internally required, externally optional" behavior which is desired.
    
    ##### It's as long, or longer than the alternative: (especially longer if you use `FunctionalComponent`):
    Not a huge point, but it isn't even shorter to use `React.FC` 
    ```ts
    const C1: React.FC<CProps> = (props) => { }
    const C2 = (props: CProps) => {};
    ```
    
    ### Benefits of React.FC
    
    ##### Provides an explicit return type
    
    The only benefit I really see to `React.FC` (unless you think that implicit `children` is a good thing) is that it specifies the return type, which catches mistakes like:
    
    ```ts
    const Component = () => {
       return undefined; // components aren't allowed to return undefined, just `null`
    }
    ```
    
    In practice, I think this is fine, as it'll be caught as soon as you try to use it:
    
    ```ts
    const Example = () => <Component />; // Error here, due to Component returning the wrong thing
    ```
    
    But even with explicit type annotations, `React.FC` still isn't saving very much boilerplate:
    
    ```ts
    const Component1 = (props: ComponentProps): ReactNode => { /*...*/ }
    const Component2: FC<ComponentProps> = (props) => { /*...*/ }
    ```
    Retsam authored and ianschmitz committed Jan 22, 2020
    Configuration menu
    Copy the full SHA
    dada035 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2020

  1. Configuration menu
    Copy the full SHA
    4bf14fa View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2020

  1. Remove outdated babel plugins (#8353)

    Updates dependencies and removes babel plugins that are now covered by `@babel/preset-env`.
    
    Co-authored-by: hdineen <hdineen@hubspot.com>
    ianschmitz and henryqdineen authored Jan 30, 2020
    Configuration menu
    Copy the full SHA
    b855da5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ddcb7d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    720d90b View commit details
    Browse the repository at this point in the history
  4. Update custom template docs with instructions for testing custom temp…

    …late locally (#8092)
    
    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    kevinold and ianschmitz authored Jan 30, 2020
    Configuration menu
    Copy the full SHA
    cafd602 View commit details
    Browse the repository at this point in the history
  5. Update setting-up-your-editor.md (#8247)

    `Auto Fix is enabled by default. Use the single string form.` warning is shown in `.vscode/settings.json` due to changes in vscode-eslint. 
    As autoFix is set to default, object format in `eslint.validate` is deprecated.
    eip1599 authored Jan 30, 2020
    Configuration menu
    Copy the full SHA
    ca9c61e View commit details
    Browse the repository at this point in the history
  6. Remove outdated docs regarding vscode eslint extension and type… (#8307)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    john-james-gh and ianschmitz authored Jan 30, 2020
    Configuration menu
    Copy the full SHA
    dd0df73 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e530598 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ed162a3 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2020

  1. Configuration menu
    Copy the full SHA
    6ee4e91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    03018d7 View commit details
    Browse the repository at this point in the history
  3. docs: Add troubleshooting documentation on ENOSPC (#8380)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    huchenme and ianschmitz authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    4da41b4 View commit details
    Browse the repository at this point in the history
  4. Prepare 3.3.1 release

    iansu committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    a7b8732 View commit details
    Browse the repository at this point in the history
  5. Publish

     - babel-plugin-named-asset-import@0.3.6
     - babel-preset-react-app@9.1.1
     - cra-template-typescript@1.0.1
     - cra-template@1.0.1
     - create-react-app@3.3.1
     - eslint-config-react-app@5.2.0
     - react-app-polyfill@1.0.6
     - react-dev-utils@10.1.0
     - react-error-overlay@6.0.5
     - react-scripts@3.3.1
    iansu committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    d7c6842 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb9745e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d9e05f9 View commit details
    Browse the repository at this point in the history
  8. Wider Chromium support for openBrowser (#8367)

    * Expands scope of openBrowser tab control
    
    Adjust openChrome.applescript to allow manipulation of
    other Chromium-based browsers (defaulting to Chrome).
    Requires list of compatible browsers to try in openBrowser.js
    
    * Fix typo
    
    * Remove Safari
    Matthew Curtis authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    d2de54b View commit details
    Browse the repository at this point in the history
  9. fix(test): force install npm in e2e-behaviour (#8402)

    This will fix e2e-behaviour on macos
    
    Related: npm/cli#611 (comment)
    iamandrewluca authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    325e599 View commit details
    Browse the repository at this point in the history
  10. setupTestFrameworkScriptFile is deprecated (#8390)

    * setupTestFrameworkScriptFile is deprecated
    
    __Note:_ `_setupTestFrameworkScriptFile_` _is deprecated in favor of_ `_setupFilesAfterEnv_`_.__
    
    ref: https://jestjs.io/docs/en/configuration#setupfilesafterenv-array
    
    * Update docusaurus/docs/running-tests.md
    
    Co-Authored-By: Simen Bekkhus <sbekkhus91@gmail.com>
    
    Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com>
    JimmyLv and SimenB authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    0db04ec View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    1959131 View commit details
    Browse the repository at this point in the history
  12. Update public folder usage docs to clarify globals (#8299)

    Added the relevant topic linked directly, instead of saying it's just in the next section.
    Adjusted the text so it sounds more like a recommendation rather than a requirement.
    The topic linked is basically explainer to how you'd reference it using the global window object and ways to avoid linter errors. Thus I used 'reference' to give users a hint of what it the linked page would be for.
    keevan authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    9233caf View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    84d8b14 View commit details
    Browse the repository at this point in the history
  14. Support JetBrains Rider IDE as an editor (#7948)

    Rider is JetBrains .NET IDE, which supports the React plugin identically to other JetBrains IDEs such as Idea and WebStorm.
    djpowell authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    cc985d0 View commit details
    Browse the repository at this point in the history
  15. Enable custom sockjs pathname for hot reloading server. (#7750)

    * Enable custom sockjs pathname for hot reloading server.
    
    * Update docusaurus/docs/advanced-configuration.md
    
    Co-Authored-By: Brody McKee <mrmckeb@users.noreply.github.com>
    
    * let WDS_SOCKET_PATH be undefined
    
    * adding env variables for sockHost and sockPort options
    
    Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com>
    heygrady and mrmckeb authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    822422c View commit details
    Browse the repository at this point in the history
  16. Add option to provide custom ssl certificates during development (#5845)

    * Add option to provide custom SSL certificates when using HTTPS
    
    * Update documentation with custom HTTPS certs
    
    * Improve certificate validation and move to its own file
    
    * Update https in development docs
    
    Co-Authored-By: Brody McKee <mrmckeb@users.noreply.github.com>
    
    * Add custom cert example to docs
    
    * Rename https file and update error message
    
    * Include original error message when custom ssl cert is invalid
    
    * Add chalk to react-scripts dependencies
    
    * Bump docs version to say that the new config will be available in 3.2.0
    
    * Remove chalk dependency
    
    * Update custom ssl version to 3.4.0 in docs
    
    * Remove version from custom ssl certificate docs
    
    Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com>
    alexbrazier and mrmckeb authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    0299c0e View commit details
    Browse the repository at this point in the history
  17. Handle service worker error in Firefox (#8272)

    * Handle service worker error in Firefox
    
    See https://bugzilla.mozilla.org/show_bug.cgi?id=1429714 for more details.
    
    * Update serviceWorker.js
    rosinghal authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    3190e4f View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2020

  1. feat(react-scripts): allow PUBLIC_URL in develoment mode (#7259)

    Co-authored-by: Eric Clemmons <eric@smarterspam.com>
    Co-authored-by: Alex Guerra <alex@heyimalex.com>
    Co-authored-by: Kelly <kelly.milligan@gmail.com>
    
    Co-authored-by: Eric Clemmons <eric@smarterspam.com>
    Co-authored-by: Alex Guerra <alex@heyimalex.com>
    Co-authored-by: Kelly <kelly.milligan@gmail.com>
    4 people authored Feb 2, 2020
    Configuration menu
    Copy the full SHA
    1cbc6f7 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2020

  1. Change arrow functions to function declarations (#8412)

    - The JavaScript template uses a function declaration to define the component, the TypeScript template and a page of the documentation used arrow functions. Changed it to use function declarations for consistency and readability.
    lewislbr authored Feb 3, 2020
    Configuration menu
    Copy the full SHA
    687c4eb View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2020

  1. Configuration menu
    Copy the full SHA
    cd2469e View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2020

  1. Configuration menu
    Copy the full SHA
    767aa18 View commit details
    Browse the repository at this point in the history
  2. Downgrade chalk for ie 11 support (#8439)

    * Downgrade chalk for ie 11 support
    
    * Update lockfile
    ianschmitz authored Feb 8, 2020
    Configuration menu
    Copy the full SHA
    eb8e7be View commit details
    Browse the repository at this point in the history
  3. fix(react-scripts): do not redirect served path if request may proxy (#…

    …8442)
    
    Moved redirect middleware and noopSW middleware in WDS after hook
    So proxy, and before proxy will take precedence before redirect
    
    Closes #8417
    iamandrewluca authored Feb 8, 2020
    Configuration menu
    Copy the full SHA
    d45823c View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2020

  1. Configuration menu
    Copy the full SHA
    865ea05 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2020

  1. Configuration menu
    Copy the full SHA
    589b41a View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2020

  1. Correct webpack name casing (#8475)

    webpack should always be written in lower-case, according to webpack's branding guidelines https://webpack.js.org/branding
    lewislbr authored Feb 13, 2020
    Configuration menu
    Copy the full SHA
    4784997 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2020

  1. Configuration menu
    Copy the full SHA
    e579de1 View commit details
    Browse the repository at this point in the history
  2. Prepare 3.4.0 release

    iansu committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    5ccee88 View commit details
    Browse the repository at this point in the history
  3. Publish

     - cra-template-typescript@1.0.2
     - cra-template@1.0.2
     - create-react-app@3.4.0
     - react-dev-utils@10.2.0
     - react-error-overlay@6.0.6
     - react-scripts@3.4.0
    iansu committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    8b0dd54 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2020

  1. Configuration menu
    Copy the full SHA
    af926d5 View commit details
    Browse the repository at this point in the history
  2. Closes webpack dev server and exits process on "end" stdin (#7203)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    Kelsey Leftwich and ianschmitz authored Feb 19, 2020
    Configuration menu
    Copy the full SHA
    7e6d6cd View commit details
    Browse the repository at this point in the history
  3. Widen eslint-config-react-app peer dependency versions (#7790)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    lukyth and ianschmitz authored Feb 19, 2020
    Configuration menu
    Copy the full SHA
    038e6fa View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2020

  1. Configuration menu
    Copy the full SHA
    2030ee1 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2020

  1. Configuration menu
    Copy the full SHA
    7d3b72c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8ba0ccb View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2020

  1. Configuration menu
    Copy the full SHA
    4d26208 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2020

  1. Fix proxying API request docs (#8515)

    The http-proxy-middleware package has made a major version upgraded and
    introduced a breaking change. This fixes the "Configuring the Proxy
    Manually" documentation to match the latest version.
    hjr3 authored Mar 4, 2020
    Configuration menu
    Copy the full SHA
    3f699fd View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2020

  1. Configuration menu
    Copy the full SHA
    a452ddc View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2020

  1. Add React.StrictMode to default templates (#8558)

    Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
    connkat and gaearon authored Mar 10, 2020
    Configuration menu
    Copy the full SHA
    6adb82a View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2020

  1. Configuration menu
    Copy the full SHA
    d5b527f View commit details
    Browse the repository at this point in the history
  2. Prepare 3.4.1 release

    iansu committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    7641a3c View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2020

  1. Publish

     - babel-preset-react-app@9.1.2
     - cra-template-typescript@1.0.3
     - cra-template@1.0.3
     - create-react-app@3.4.1
     - eslint-config-react-app@5.2.1
     - react-dev-utils@10.2.1
     - react-error-overlay@6.0.7
     - react-scripts@3.4.1
    iansu committed Mar 21, 2020
    Configuration menu
    Copy the full SHA
    d2f813f View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2020

  1. Configuration menu
    Copy the full SHA
    79dbc33 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2020

  1. Configuration menu
    Copy the full SHA
    edc671e View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2020

  1. Configuration menu
    Copy the full SHA
    bc41892 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56d34c0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c7352c7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4cbb003 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e0b179c View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2020

  1. Add experimental react-refresh support (#8582)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    charrondev and ianschmitz authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    c5b96c2 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2020

  1. Configuration menu
    Copy the full SHA
    53cace5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0f4d5b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d80e533 View commit details
    Browse the repository at this point in the history
  4. Bump acorn from 6.4.0 to 6.4.1 in /docusaurus/website (#8656)

    Bumps [acorn](https://github.com/acornjs/acorn) from 6.4.0 to 6.4.1.
    - [Release notes](https://github.com/acornjs/acorn/releases)
    - [Commits](acornjs/acorn@6.4.0...6.4.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 7, 2020
    Configuration menu
    Copy the full SHA
    a4fa63f View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2020

  1. Don't use webpack multi entry unnecessarily (#8834)

    Passing an array with a single entry is not equivalent. This causes Webpack
    to generate another wrapper module around the entry. This is just
    unnecessary overhead and bytes.
    sebmarkbage authored Apr 15, 2020
    Configuration menu
    Copy the full SHA
    e89f153 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. Widen eslint-config-react-app peer dependency versions (#8892)

    See #7790 for a previous similar PR.
    NMinhNguyen authored Apr 27, 2020
    Configuration menu
    Copy the full SHA
    855a984 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2020

  1. Revert "Replace favicon in templates (#8194)" (#8925)

    This reverts commit c03bb36.
    gaearon authored Apr 28, 2020
    Configuration menu
    Copy the full SHA
    3771237 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2020

  1. Configuration menu
    Copy the full SHA
    9cc1bdf View commit details
    Browse the repository at this point in the history

Commits on May 4, 2020

  1. Upgrade to Jest 25 (#8362)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    skovhus and ianschmitz authored May 4, 2020
    Configuration menu
    Copy the full SHA
    9904075 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b0d21f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fa93437 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    99f1b6b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2975939 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b37cff9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    790fba9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4974a20 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3c2f2d4 View commit details
    Browse the repository at this point in the history
  10. Upgrade testing-library packages (#8406)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    gnapse and ianschmitz authored May 4, 2020
    Configuration menu
    Copy the full SHA
    5d437b8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5a019e6 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2473a73 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    62e8e3d View commit details
    Browse the repository at this point in the history

Commits on May 5, 2020

  1. Configuration menu
    Copy the full SHA
    6a7aaa2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    408c065 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1f81469 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b28c60 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9123aae View commit details
    Browse the repository at this point in the history

Commits on May 8, 2020

  1. Configuration menu
    Copy the full SHA
    0cfccd8 View commit details
    Browse the repository at this point in the history
  2. bump webpack-dev-server to 3.11.0 (#8975)

    Co-authored-by: Marc Hassan <marc@unqork.com>
    mhassan1 and Marc Hassan authored May 8, 2020
    Configuration menu
    Copy the full SHA
    a0b3753 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2020

  1. Configuration menu
    Copy the full SHA
    f5c3bdb View commit details
    Browse the repository at this point in the history

Commits on May 29, 2020

  1. Update packages (#9081)

    ianschmitz authored May 29, 2020
    Configuration menu
    Copy the full SHA
    d97fbad View commit details
    Browse the repository at this point in the history
  2. Fix dotenv file loading order (#9037)

    * Fix dotenv file loading order
    
    * tests: fix failing env tests
    
    * tests: fix more failing tests
    
    Co-authored-by: Brody McKee <mrmckeb@hotmail.com>
    Timer and mrmckeb authored May 29, 2020
    Configuration menu
    Copy the full SHA
    26a1c7f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    285f9cb View commit details
    Browse the repository at this point in the history

Commits on May 30, 2020

  1. Update question issue template

    iansu authored May 30, 2020
    Configuration menu
    Copy the full SHA
    461775a View commit details
    Browse the repository at this point in the history

Commits on May 31, 2020

  1. Configuration menu
    Copy the full SHA
    78e13b0 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2020

  1. Upgrade to Jest 26 (#8955)

    * Update Jest to 26
    
    * Upgrade to Jest 26.0.1
    
    * Use jest-circus test runner by default
    
    * Try resolving test runner to fix behavior tests
    
    * Run TypeScript verification in new context
    
    * Delete globalThis if polyfilled
    ianschmitz authored Jun 1, 2020
    Configuration menu
    Copy the full SHA
    c87ab79 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2020

  1. Configuration menu
    Copy the full SHA
    538d527 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2020

  1. Add support for absolute paths when using url() in CSS (#7937)

    * Support scss absolute path resolution for url()
    
    Adding resolve-url-loader broke all apps using scss with centralized assets folder and all url(./assets/*.png) broke (#7023).
    This change allows apps to use url(/assets/*.png) and it would map to src/assets/*.png
    
    * test: Add global scss assets test
    atlanteh authored Jun 7, 2020
    Configuration menu
    Copy the full SHA
    fa648da View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2020

  1. Configuration menu
    Copy the full SHA
    2814124 View commit details
    Browse the repository at this point in the history
  2. Fix typo in docs (#9135)

    sonicdoe authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    a2dac9e View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2020

  1. Add performance relayer + documentation (web-vitals) (#9116)

    Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com>
    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    3 people authored Jun 11, 2020
    Configuration menu
    Copy the full SHA
    8fda779 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2020

  1. Update deployment docs for Azure Static Web Apps (#9042)

    Co-authored-by: Minh Nguyen <minhnguyenxx@gmail.com>
    burkeholland and NMinhNguyen authored Jun 14, 2020
    Configuration menu
    Copy the full SHA
    b389928 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    41a1088 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2020

  1. Configuration menu
    Copy the full SHA
    71facad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    697dffe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fdbde1f View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. Configuration menu
    Copy the full SHA
    6223fd9 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2020

  1. Fix chai URL (#8895)

    The root domain, chaijs.com, does not serve a valid certificate
    and gives a browser warning.
    BMorearty authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    abe2369 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. Explain how to uninstall create-react-app globally (#9244)

    * Explain how to uninstall create-react-app globally
    
    * Add uninstallation intructions for yarn
    nickserv authored Jul 2, 2020
    Configuration menu
    Copy the full SHA
    2da5517 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2020

  1. Configuration menu
    Copy the full SHA
    759696d View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2020

  1. Switch to the Workbox InjectManifest plugin (#9205)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    jeffposnick and ianschmitz authored Jul 22, 2020
    Configuration menu
    Copy the full SHA
    8e720ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d1f32c4 View commit details
    Browse the repository at this point in the history
  3. feat: Update ESLint dependencies (#9251)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    MichaelDeBoey and ianschmitz authored Jul 22, 2020
    Configuration menu
    Copy the full SHA
    2bef8a5 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2020

  1. Configuration menu
    Copy the full SHA
    bdae9b6 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2020

  1. Configuration menu
    Copy the full SHA
    a01b1c5 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2020

  1. Configuration menu
    Copy the full SHA
    66bf7df View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2020

  1. Configuration menu
    Copy the full SHA
    a79d8b8 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2020

  1. Prepare 4.0.0 alpha release

    iansu committed Jul 30, 2020
    Configuration menu
    Copy the full SHA
    7ab0116 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2020

  1. Configuration menu
    Copy the full SHA
    58db16b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de27bcf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a6ef92 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2020

  1. Configuration menu
    Copy the full SHA
    aeaf575 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5bd6e73 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c2e224 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. Configuration menu
    Copy the full SHA
    ebab256 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3cf2b06 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f86cf44 View commit details
    Browse the repository at this point in the history
  4. Bump immer version (#8933)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    Co-authored-by: Ian Sutherland <ian@iansutherland.ca>
    3 people authored Aug 5, 2020
    Configuration menu
    Copy the full SHA
    42dcf79 View commit details
    Browse the repository at this point in the history
  5. Upgrade whatwg-fetch (#9392)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    Lapz and ianschmitz authored Aug 5, 2020
    Configuration menu
    Copy the full SHA
    6cd3826 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5036825 View commit details
    Browse the repository at this point in the history
  7. Prepare 4.0.0 alpha release

    iansu committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    3d74b79 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Configuration menu
    Copy the full SHA
    c8ea284 View commit details
    Browse the repository at this point in the history
  2. Create SECURITY.md

    gaearon authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    5e41ca0 View commit details
    Browse the repository at this point in the history
  3. Add 3.4.2 to changelog

    gaearon authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    5e703a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2020

  1. Add 3.4.3 to the changelog

    gaearon authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    8e761d1 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2020

  1. Configuration menu
    Copy the full SHA
    7763737 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2020

  1. Added CRA logo in README.md (#9363)

    * Added React logo in README.md
    
    * Added React logo in README file that makes looks nicer now.
    
    * Added CRA Logo in README.md that looks nicer
    
    * Replacing React Logo with CRA Logo instead
    
    Co-authored-by: Eddie Monge Jr <eddiemonge@users.noreply.github.com>
    
    * Update README.md
    
    Co-authored-by: Eddie Monge Jr <eddiemonge@users.noreply.github.com>
    Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
    3 people authored Aug 24, 2020
    Configuration menu
    Copy the full SHA
    edfc30a View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. Configuration menu
    Copy the full SHA
    cf74eb9 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Configuration menu
    Copy the full SHA
    97695bc View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2020

  1. Configuration menu
    Copy the full SHA
    e258532 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2020

  1. Configuration menu
    Copy the full SHA
    cef668a View commit details
    Browse the repository at this point in the history
  2. Update template dependencies to latest version (#9526)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    MichaelDeBoey and ianschmitz authored Sep 14, 2020
    Configuration menu
    Copy the full SHA
    2a8237c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6abc7a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    22b61c9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ce1e2af View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    65d8eb2 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2020

  1. Configuration menu
    Copy the full SHA
    552c7a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    730438c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14b7868 View commit details
    Browse the repository at this point in the history
  4. Prepare 4.0.0 alpha release

    iansu committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    930b5db View commit details
    Browse the repository at this point in the history
  5. Update postcss-safe-parser

    iansu committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    13e0d1c View commit details
    Browse the repository at this point in the history
  6. Prepare 4.0.0 alpha release

    iansu committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    025f273 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

  1. Update CODEOWNERS

    iansu authored Sep 30, 2020
    Configuration menu
    Copy the full SHA
    7e4949a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5c0fe2 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2020

  1. Add AVIF image support (#9611)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    hongbo-miao and ianschmitz authored Oct 14, 2020
    Configuration menu
    Copy the full SHA
    6a51dcd View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Configuration menu
    Copy the full SHA
    1f2d387 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2020

  1. Configuration menu
    Copy the full SHA
    6f3e32e View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. Replace deprecated eslint-loader with eslint-webpack-plugin (#9751)

    * Replace deprecated eslint-loader by eslint-webpack-plugin
    
    * Update eslintFormatter for eslint-webpack-plugin
    
    * fix: always enable jsx-uses-react
    
    Co-authored-by: Brody McKee <mrmckeb@hotmail.com>
    tooppaaa and mrmckeb authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    d07b7d0 View commit details
    Browse the repository at this point in the history
  2. Add 3.4.4 to the changelog

    gaearon authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    b1f8536 View commit details
    Browse the repository at this point in the history
  3. Bump resolve-url-loader version (#9841)

    * Bump resolve-url-loader version
    
    * Unpin resolve-url-loader
    johannespfeiffer authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    7965594 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2020

  1. Configuration menu
    Copy the full SHA
    0a93e32 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2020

  1. Configuration menu
    Copy the full SHA
    ed919b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10fa972 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    329f392 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    85ab02b View commit details
    Browse the repository at this point in the history
  5. feat: Update all dependencies (#9857)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    MichaelDeBoey and ianschmitz authored Oct 22, 2020
    Configuration menu
    Copy the full SHA
    fe785b2 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2020

  1. Configuration menu
    Copy the full SHA
    e63de79 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d61347d View commit details
    Browse the repository at this point in the history
  3. Upgrade to React 17 (#9863)

    iansu authored Oct 23, 2020
    Configuration menu
    Copy the full SHA
    4bc639c View commit details
    Browse the repository at this point in the history
  4. Prepare 4.0.0 alpha release

    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    f2aef41 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2b1161b View commit details
    Browse the repository at this point in the history
  6. Prepare 4.0.0 release

    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    014ca01 View commit details
    Browse the repository at this point in the history
  7. Update CHANGELOG

    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    af616ab View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    523b416 View commit details
    Browse the repository at this point in the history
  9. Update CHANGELOG

    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    95265c3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d23d615 View commit details
    Browse the repository at this point in the history
  11. Prepare 4.0.0 release

    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    88ca4f6 View commit details
    Browse the repository at this point in the history
  12. Publish

     - babel-plugin-named-asset-import@0.3.7
     - babel-preset-react-app@10.0.0
     - confusing-browser-globals@1.0.10
     - cra-template-typescript@1.1.0
     - cra-template@1.1.0
     - create-react-app@4.0.0
     - eslint-config-react-app@6.0.0
     - react-app-polyfill@2.0.0
     - react-dev-utils@11.0.0
     - react-error-overlay@6.0.8
     - react-scripts@4.0.0
    iansu committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    ed95893 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2020

  1. fix: slow recompile time (#9911)

    fixes #9886
    FezVrasta authored Oct 26, 2020
    Configuration menu
    Copy the full SHA
    ceeb654 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c06f16c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5fdadd View commit details
    Browse the repository at this point in the history
  4. fix: page doesn't get refreshed when FAST_REFRESH=false (#9884)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    n3tr and ianschmitz authored Oct 26, 2020
    Configuration menu
    Copy the full SHA
    7e48117 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    027b03b View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2020

  1. Fix react-jsx error (#9869)

    benneq authored Oct 28, 2020
    Configuration menu
    Copy the full SHA
    545d460 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Fix noFallthroughCasesInSwitch/jsx object is not extensible (#9921)

    Co-authored-by: Konstantin Simeonov <kon.simeonov@protonmail.com>
    ryota-murakami and KonstantinSimeonov authored Oct 30, 2020
    Configuration menu
    Copy the full SHA
    3a98ed1 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2020

  1. Add logo license to README

    iansu authored Nov 1, 2020
    Configuration menu
    Copy the full SHA
    aec42e2 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2020

  1. Configuration menu
    Copy the full SHA
    4e97dc7 View commit details
    Browse the repository at this point in the history
  2. docs: add React Testing Library as a library requiring jsdom (#10052)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    anyulled and ianschmitz authored Nov 10, 2020
    Configuration menu
    Copy the full SHA
    aafe8af View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5867170 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2020

  1. Create FUNDING.yml

    iansu authored Nov 11, 2020
    Configuration menu
    Copy the full SHA
    8f03b91 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2020

  1. replace inquirer with prompts (#10083)

    - remove `react-dev-utils/inquirer` public import
    EvanBacon authored Nov 17, 2020
    Configuration menu
    Copy the full SHA
    8bf050a View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2020

  1. Prepare 4.0.1 release

    iansu committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    90a0898 View commit details
    Browse the repository at this point in the history
  2. Prepare 4.0.1 release

    iansu committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    98a886d View commit details
    Browse the repository at this point in the history
  3. Publish

     - cra-template-typescript@1.1.1
     - cra-template@1.1.1
     - create-react-app@4.0.1
     - react-dev-utils@11.0.1
     - react-scripts@4.0.1
    iansu committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    de8b2b3 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2020

  1. chore: bump web-vital dependency version (#10143)

    Sahil Purav authored Nov 25, 2020
    Configuration menu
    Copy the full SHA
    9a79df2 View commit details
    Browse the repository at this point in the history
  2. chore: bump typescript version (#10141)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    trainto and ianschmitz authored Nov 25, 2020
    Configuration menu
    Copy the full SHA
    be6c193 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2020

  1. Configuration menu
    Copy the full SHA
    9b08e3c View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2020

  1. Configuration menu
    Copy the full SHA
    91e28a4 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2020

  1. Upgrade @svgr/webpack to fix build error (#10213)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    jabranr and ianschmitz authored Dec 8, 2020
    Configuration menu
    Copy the full SHA
    723224f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f2413e View commit details
    Browse the repository at this point in the history
  3. Update postcss packages (#10003)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    raix and ianschmitz authored Dec 8, 2020
    Configuration menu
    Copy the full SHA
    580ed5d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    54ad467 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6dce3f4 View commit details
    Browse the repository at this point in the history
  6. Move ESLint cache file into node_modules (#9977)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    ehsankhfr and ianschmitz authored Dec 8, 2020
    Configuration menu
    Copy the full SHA
    e039ad3 View commit details
    Browse the repository at this point in the history
  7. Revert "Update postcss packages" (#10216)

    This reverts commit 580ed5d.
    ianschmitz authored Dec 8, 2020
    Configuration menu
    Copy the full SHA
    3968923 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2020

  1. Configuration menu
    Copy the full SHA
    282c03f View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2021

  1. fix(react-scripts): add missing peer dependency react and update reac…

    …t-refresh-webpack-plugin (#9872)
    merceyz authored Jan 13, 2021
    Configuration menu
    Copy the full SHA
    a504e9d View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2021

  1. Update using-the-public-folder.md (#10314)

    Some library --> Some libraries
    Avivhdr authored Jan 14, 2021
    Configuration menu
    Copy the full SHA
    0f6fc2b View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2021

  1. Configuration menu
    Copy the full SHA
    c9a24db View commit details
    Browse the repository at this point in the history
  2. Fix CI tests (#10217)

    ianschmitz authored Feb 3, 2021
    Configuration menu
    Copy the full SHA
    d229676 View commit details
    Browse the repository at this point in the history
  3. appTsConfig immutability handling by immer (#10027)

    Co-authored-by: mad-jose <joset@yeswearemad.com>
    josezone and mad-jose authored Feb 3, 2021
    Configuration menu
    Copy the full SHA
    6a39607 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8fa0a26 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b9963ab View commit details
    Browse the repository at this point in the history
  6. Prepare 4.0.2 release

    iansu committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    32c06e6 View commit details
    Browse the repository at this point in the history
  7. Publish

     - cra-template-typescript@1.1.2
     - cra-template@1.1.2
     - create-react-app@4.0.2
     - react-dev-utils@11.0.2
     - react-error-overlay@6.0.9
     - react-scripts@4.0.2
    iansu committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    9c75260 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3f5dea9 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2021

  1. Bump webpack-dev-server 3.11.0 -> 3.11.1 (#10312)

    Resolves #10084 security vulnerability in websocket-driver library version 0.5.6, imported transitively by sockjs
    Awarua- authored Feb 18, 2021
    Configuration menu
    Copy the full SHA
    9722ef1 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2021

  1. Configuration menu
    Copy the full SHA
    18b5962 View commit details
    Browse the repository at this point in the history
  2. update immer to 8.0.1 to address vulnerability (#10412)

    Resolves #10411
    
    Bumps immer version to 8.0.1 to address the prototype pollution
    vulnerability with the current 7.0.9 version.
    wclem4 authored Feb 22, 2021
    Configuration menu
    Copy the full SHA
    6947896 View commit details
    Browse the repository at this point in the history
  3. Prepare 4.0.3 release

    iansu committed Feb 22, 2021
    Configuration menu
    Copy the full SHA
    f710976 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG

    iansu committed Feb 22, 2021
    Configuration menu
    Copy the full SHA
    cce32fa View commit details
    Browse the repository at this point in the history
  5. Publish

     - create-react-app@4.0.3
     - react-dev-utils@11.0.3
     - react-scripts@4.0.3
    iansu committed Feb 22, 2021
    Configuration menu
    Copy the full SHA
    f92c37a View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2021

  1. Update IMAGE_INLINE_SIZE_LIMIT docs (#10631)

    The variable is also used in dev.
    ianschmitz authored Mar 2, 2021
    Configuration menu
    Copy the full SHA
    22f46a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2021

  1. Security Fix for Command Injection - huntr.dev (#10644)

    * Update getProcessForPort.js
    
    * Update getProcessForPort.js
    
    Co-authored-by: Zhou Peng <zpbrent@gmail.com>
    Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
    3 people authored Mar 8, 2021
    Configuration menu
    Copy the full SHA
    f5e415f View commit details
    Browse the repository at this point in the history
  2. react-dev-utils@11.0.4

    gaearon authored Mar 8, 2021
    Configuration menu
    Copy the full SHA
    3c02ca7 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. Configuration menu
    Copy the full SHA
    7b56cf7 View commit details
    Browse the repository at this point in the history
  2. Update WebpackManifestPlugin (#10204)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    raix and ianschmitz authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    48d7ffe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5fc8350 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2021

  1. Bump y18n from 4.0.0 to 4.0.1 in /docusaurus/website (#10765)

    Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1.
    - [Release notes](https://github.com/yargs/y18n/releases)
    - [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/yargs/y18n/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    09ac3d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d1829e View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. Configuration menu
    Copy the full SHA
    4d3bbe0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea4002e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    007a028 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    71cbe59 View commit details
    Browse the repository at this point in the history
  5. Remove outdated comments on react-refresh (#10784)

    Luke Kang authored Apr 12, 2021
    Configuration menu
    Copy the full SHA
    fddce8a View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

  1. eslint-config-react-app typo fix (#10317)

    This just fixes a shell snippet in the readme file for this plugin
    Spacerat authored May 12, 2021
    Configuration menu
    Copy the full SHA
    651d0db View commit details
    Browse the repository at this point in the history
  2. Fix link address (#10907)

    Replace the Github home link with a link to the repo's main page or a link to the source (https://github.com/CodeByZach/pace/blob/master/pace.js)
    e-w-h authored May 12, 2021
    Configuration menu
    Copy the full SHA
    b680ee7 View commit details
    Browse the repository at this point in the history
  3. Bump immer version for fixing security issue (#10791)

    Bump immer minor version to fix `Prototype Pollution` Security issue.
    shamprasadrh authored May 12, 2021
    Configuration menu
    Copy the full SHA
    281a868 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7bdeced View commit details
    Browse the repository at this point in the history

Commits on May 30, 2021

  1. Add support for Webpack 5 message objects (#10121)

    Co-authored-by: Brody McKee <mrmckeb@gmail.com>
    jasonwilliams and mrmckeb authored May 30, 2021
    Configuration menu
    Copy the full SHA
    b172b5e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    93241a0 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2021

  1. Configuration menu
    Copy the full SHA
    0415189 View commit details
    Browse the repository at this point in the history
  2. Add source-map-loader for debugging into original source of node_modu…

    …les libraries that contain sourcemaps (#8227)
    justingrant authored Jun 2, 2021
    Configuration menu
    Copy the full SHA
    382ba21 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. Configuration menu
    Copy the full SHA
    0ee4765 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2021

  1. Configuration menu
    Copy the full SHA
    64df135 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2021

  1. Configuration menu
    Copy the full SHA
    78d86f6 View commit details
    Browse the repository at this point in the history