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/react-redux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.2.5
Choose a base ref
...
head repository: reduxjs/react-redux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.2.6
Choose a head ref
  • 4 commits
  • 21 files changed
  • 1 contributor

Commits on Oct 25, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    e94b191 View commit details
  2. Backwards action steps

    timdorr committed Oct 25, 2021
    Copy the full SHA
    9890491 View commit details
  3. Upgrade a bunch of stuff.

    timdorr committed Oct 25, 2021
    Copy the full SHA
    27e2332 View commit details
  4. 7.2.6

    timdorr committed Oct 25, 2021
    Copy the full SHA
    0bcaec4 View commit details
7 changes: 2 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"eslint:recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended"
"prettier"
],
"settings": {
"react": {
@@ -31,8 +31,5 @@
"react/jsx-wrap-multilines": 2,
"react/no-string-refs": 0
},
"plugins": [
"import",
"react"
]
"plugins": ["import", "react"]
}
20 changes: 7 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -12,26 +12,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 14.x

- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
path: .yarn/cache
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: yarn-
node-version: '14.x'
cache: 'npm'

- name: Install dependencies
run: yarn install
run: npm ci

- name: Run test suite
run: yarn test
run: npm test

- name: Collect coverage
run: yarn coverage
run: npm run coverage
25 changes: 0 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -3,28 +3,3 @@ dist
lib
coverage
es

.cache
.yarnrc
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
*.tgz
react-redux-*/

.yalc
yalc.lock
yalc.sig

lib/core/metadata.js
lib/core/MetadataBlog.js

website/translated_docs
website/build/
website/yarn.lock
website/node_modules
website/i18n/*
9 changes: 0 additions & 9 deletions .yarn/plugins/@yarnpkg/plugin-compat.cjs

This file was deleted.

Loading