Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reduxjs/redux
base: v4.0.4
Choose a base ref
...
head repository: reduxjs/redux
compare: v4.0.5
Choose a head ref
  • 19 commits
  • 36 files changed
  • 19 contributors

Commits on Jul 11, 2019

  1. docs: add redux v.s. context difference FAQ entry (#3470)

    * docs: add redux v.s. context difference FAQ entry
    
    * PR review suggestions
    
    * Capitalize React Context
    wgao19 authored and timdorr committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    86d405b View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2019

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

Commits on Jul 16, 2019

  1. Update docs to improve readability (#3476)

    Signed-off-by: An Xiao <hac@zju.edu.cn>
    ihac authored and timdorr committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    d5d23eb View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2019

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

Commits on Jul 21, 2019

  1. Fix broken link to database design book (#3478)

    The original link was to a site that is no longer up. The book is
    now hosted on a different site, so changed link to that.
    lindboe authored and markerikson committed Jul 21, 2019
    Configuration menu
    Copy the full SHA
    b6e1586 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2019

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

Commits on Jul 31, 2019

  1. removing ChatActions import line (#3486)

    `ChatActions` is not used in the commented file.
    jimmy-e authored and timdorr committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    59cc278 View commit details
    Browse the repository at this point in the history
  2. Add import statement to visibilityFilter example (#3487)

    In this code example, SET_VISIBILITY_FILTER is used in a switch case, but it is never imported first. It is imported in the subsequent example code block in the docs. This is confusing, especially for users who aren't familiar with switch statements.
    dalyhabit authored and timdorr committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    03cb88a View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2019

  1. Update docs (#3493)

    made license text point to the respective file
    jamesgeorge007 authored and timdorr committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    3fdb341 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2019

  1. Fix links to some headings with special chars (#3494)

    A couple of links in tables of contents were broken.
    
    These were links where the URL fragment in the target was
    auto-generated. When that happens, most special characters are removed
    from the heading.
    
    When the links in the tables of contents were written, the ones I am
    fixing replaced some of the special characters with `-`, instead of
    stripping them.
    douglasnaphas authored and markerikson committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    7d3c083 View commit details
    Browse the repository at this point in the history
  2. Remove outdated rule on single quotes in docs (#3495)

    * Remove outdated rule on single quotes in docs
    
    In PR #1874, a mass replacement of angled single quotes ’ with ASCII
    single quotes ' was approved. Since then, the docs have contained a
    mixture of angled and ASCII single quotes:
    
    ```
    $ git log -S’ --since="Mon Aug 1 16:45:58 2016 -0400" --pretty=oneline |
    wc -l
    17
    ```
    
    so it does not make sense to state a rule on them.
    
    * Remove typographic stuff we don't use anyways.
    douglasnaphas authored and timdorr committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    42474f3 View commit details
    Browse the repository at this point in the history
  3. Update UsingObjectSpreadOperator.md (#3367)

    I think this warning on using the Object spread operator to clone objects is important. While, good style would encourage the use of flat objects in the reducer, not everyone is going to do that. Using the spread syntax in a reducer on a multidimensional data structure is opening up the door to state mutation.
    mtpetros authored and timdorr committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    14efbe1 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2019

  1. docs: fix store methods link (#3497)

    kon-shou authored and timdorr committed Aug 4, 2019
    Configuration menu
    Copy the full SHA
    39cc043 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2019

  1. Minor language fix (#3498)

    A slight improvement to the language, because:
    1. "anymore" is not word
    1. the second usage is also ambiguous - does it mean "we don't use it fromhereonin" or "we no longer use it"?
    joshuabambrick authored and timdorr committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    6afef6a View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2019

  1. #2979 Add strict type inference overload for combineReducers. (#3484)

    * Add type overload for combineReducers which strictly infers state shape and actions from the reducers object map.
    
    * Fixed some typos.
    
    * Please don't change version numbers in a PR
    
    * Typescript 2.8 default type fixes.
    Shakeskeyboarde authored and timdorr committed Aug 10, 2019
    Configuration menu
    Copy the full SHA
    63dda81 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2019

  1. #2808 Preloaded state is now selectively partial (instead of deeply p…

    …artial). (#3485)
    
    * Preloaded state is now selectively partial (instead of deeply partial).
    
    * Improved CombinedState, PreloadedState, and removed UnCombinedState.
    
    Found a better way to type check CombinedState which allows the
    $CombinedState symbol property marker to be optional. Since it's
    optional, it's no longer necessary to strip it off in the Reducer state
    parameter type and return type. This leaves the type definition for
    Reducer unmodified, reduces the number of types required by one, and
    makes the resolved types and stack traces clearer.
    
    * Small change to the description of CombinedState.
    
    * Removed DeepPartial import from tests.
    
    Leaving the definition in place as removing it would be a breaking change.
    
    * Made prettier happy.
    
    * Made prettier happy with UsingObjectSpreadOperator.md
    Shakeskeyboarde authored and timdorr committed Aug 12, 2019
    Configuration menu
    Copy the full SHA
    0ac73b5 View commit details
    Browse the repository at this point in the history
  2. Fixed combineReducers changeDetection logic(#3488) (#3490)

    * Fixed combineReducers changeDetection logic(#3488)
    
    * Cleaning up these and some other tests while I'm here
    
    
    Co-authored-by: gupta <guptanub@amazon.com>
    Co-authored-by: Tim Dorr <timdorr@users.noreply.github.com>
    3 people committed Aug 12, 2019
    Configuration menu
    Copy the full SHA
    9c9a4d2 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2019

  1. Fixed broken link (#3551)

    osamaqarem authored and markerikson committed Sep 1, 2019
    Configuration menu
    Copy the full SHA
    a5739d9 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2019

  1. 4.0.5

    timdorr committed Dec 24, 2019
    Configuration menu
    Copy the full SHA
    45281b6 View commit details
    Browse the repository at this point in the history