Skip to content

Commit

Permalink
Merge pull request #824 from Workiva/batch/fedx/raise_3rd_party_deps
Browse files Browse the repository at this point in the history
Update 3rd party dependencies
  • Loading branch information
rmconsole7-wk authored May 8, 2023
2 parents d85d64e + b72ed3e commit 50e3d77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/over_react_redux/todo_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies:
meta: ^1.6.0
over_react: ">=3.1.5 <5.0.0"
json_annotation: ^3.0.0
redux: ">=3.0.0 <5.0.0"
redux_dev_tools: ">=0.4.0 <0.6.0"
redux: '>=3.0.0 <6.0.0'
redux_dev_tools: '>=0.4.0 <0.8.0'
uuid: '>=1.0.3 <4.0.0'

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dependencies:
meta: ^1.6.0
path: ^1.5.1
react: ^6.2.0
redux: ">=3.0.0 <5.0.0"
redux: '>=3.0.0 <6.0.0'
source_span: ^1.4.1
transformer_utils: ^0.2.6
w_common: '>=2.0.0 <4.0.0'
w_flux: ^2.10.21
platform_detect: '>=1.3.4 <3.0.0'
quiver: ">=0.25.0 <4.0.0"
redux_dev_tools: ">=0.4.0 <0.6.0"
redux_dev_tools: '>=0.4.0 <0.8.0'

dev_dependencies:
build_resolvers: '>=1.0.5 <3.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ main() {
TestJacket<FooComponent> jacket;
expect(() {
jacket = mount(
(ReduxProvider()..store = Store((_, __) => null))(
(ReduxProvider()..store = Store((_, __) => null, initialState: null))(
(Foo()..foo = 'bar')(),
),
);
Expand All @@ -50,7 +50,7 @@ main() {
TestJacket<FooComponent290> jacket;
expect(() {
jacket = mount(
(ReduxProvider()..store = Store((_, __) => null))(
(ReduxProvider()..store = Store((_, __) => null, initialState: null))(
(Foo290()..foo = 'bar')(),
),
);
Expand Down

0 comments on commit 50e3d77

Please sign in to comment.