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

TypeScript update for 4.x #486

Merged
merged 21 commits into from
Oct 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4987a6b
Use Callable Type Signature for Memoize Callback in createSelectorCre…
micahbales Jul 30, 2020
95742f0
ci(TypeScript): only test 3.9+
eXamadeus Feb 8, 2021
1ae1033
ci: don't run on push and pull_request, too much noise
eXamadeus Feb 8, 2021
1f55536
build(deps): set base TS version to 3.9, update tests for TS
eXamadeus Feb 8, 2021
e0ef9f9
test(typescript): update testing script and tsconfig
eXamadeus Feb 8, 2021
2a0d0a7
Merge remote-tracking branch 'michabales/master' into types/4.x/updat…
eXamadeus Feb 8, 2021
e07330e
test(typescript): updated tests to correct mistakes from versions <3.1
eXamadeus Feb 8, 2021
05fce95
ci(types): remove typescript@next for now, #484 will address that
eXamadeus Feb 8, 2021
8574786
Merge branch 'master' into types/4.x/update-ts
eXamadeus Feb 8, 2021
ab245c5
fix(types/createStructuredSelector): default output type to match inp…
eXamadeus Feb 8, 2021
d3bbd08
test(ts): made tests more clear as per #391
eXamadeus Feb 8, 2021
3b11f31
Update test matrix to match current RTK repo config
markerikson Oct 16, 2021
47a8e94
Update TS to 4.4
markerikson Oct 16, 2021
4a8c911
Update TS matrix to remove <4.2 and add 4.4+
markerikson Oct 16, 2021
b6aae7c
Update types to target TS 4.2+
markerikson Oct 16, 2021
2f62f50
Use legacy types for TS < 4.2
markerikson Oct 16, 2021
6194b27
Add Lodash types for typetest usage
markerikson Oct 16, 2021
30eb68b
Fix issues with equality/memoize fns and createSelectorCreator
markerikson Oct 16, 2021
0d7430c
Fix compat issues with ParametricSelector
markerikson Oct 16, 2021
e232714
Add automatic inference of types for createStructuredSelector
markerikson Oct 16, 2021
4556d0f
4.1.0-alpha.0
markerikson Oct 16, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test-types.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: CI
on: [push, pull_request]
on: [pull_request]
jobs:
build:
name: Lint, Test, Report Coverage on Node ${{ matrix.node }}

runs-on: ubuntu-latest
strategy:
matrix:
node: ['10.x', '12.x', '14.x', '15.x']
node: ['14.x']

steps:
- name: Checkout repo
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
fail-fast: false
matrix:
node: ['14.x']
ts: ['2.9', '3.0']
ts: ['4.2', '4.3', '4.4', 'next']
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand Down