Skip to content

Commit bb39096

Browse files
authored
Merge pull request #43 from aaronlademann-wf/1.4.0-rc
UIP-1850 Release over_react 1.4.0
2 parents 94baf47 + 770df04 commit bb39096

File tree

4 files changed

+43
-15
lines changed

4 files changed

+43
-15
lines changed

.analysis_options

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
analyzer:
22
exclude:
33
- integrate/**
4+
- _site/**
45
strong-mode: true
56
linter:
67
rules:

CHANGELOG.md

Lines changed: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,48 @@
11
# OverReact Changelog
22

3+
## 1.4.0
4+
5+
> [Complete `1.4.0` Changeset](https://github.com/Workiva/over_react/compare/1.3.0...1.4.0)
6+
7+
__Sync changes from original private repo library__ (#40)
8+
> _This is the last time we'll do this - as the original library has now been completely switched over to use `over_react`_
9+
10+
* __Switched dependency__ from `browser_detect` to our [new `platform_detect` library](https://github.com/Workiva/platform_detect)!
11+
12+
* __Improved__ `toString` method of `DebugFriendlyConstant`.
13+
* __Improved__ `setSelectionRange` polyfill to avoid https://github.com/dart-lang/sdk/issues/22967
14+
15+
* __Added__ typedef for `ElementCallback` and `ResizeSensorHandler`.
16+
* __Added__ `newStyleFromProps` utility function.
17+
* __Added__ `getPropKey` utility function.
18+
* Allows you to get a namespaced prop key dynamically!
19+
20+
21+
22+
__Miscellaneous__
23+
24+
* #28 Run unit tests in dart2js on CI
25+
* #37 Update formatting guidelines WRT dartfmt and trailing commas
26+
27+
28+
 
29+
330
## 1.3.0
431

532
> [Complete `1.3.0` Changeset](https://github.com/Workiva/over_react/compare/1.2.0...1.3.0)
633
734
__React JS Upgrade__
835

9-
* [#31](https://github.com/Workiva/over_react/pull/31) Upgrade to
10-
[React JS `15.4.x`](https://github.com/facebook/react/releases/tag/v15.4.0) via
36+
* [#31](https://github.com/Workiva/over_react/pull/31) Upgrade to
37+
[React JS `15.4.x`](https://github.com/facebook/react/releases/tag/v15.4.0) via
1138
[react-dart `3.1.0`](https://github.com/cleandart/react-dart/pull/108).
12-
* [#27](https://github.com/Workiva/over_react/ussues/27) Add missing SVG elements
39+
* [#27](https://github.com/Workiva/over_react/ussues/27) Add missing SVG elements
1340
_(e.g. `Dom.foreignObject` pointed out by @kasperpeulen)_
14-
41+
1542
__We are now on Gitter!__
1643

17-
* [#33](https://github.com/Workiva/over_react/pull/33) Implement vehicle for community discussion
18-
([on Gitter](https://gitter.im/over_react/Lobby)).
44+
* [#33](https://github.com/Workiva/over_react/pull/33) Implement vehicle for community discussion
45+
([on Gitter](https://gitter.im/over_react/Lobby)).
1946
_Thanks for [the suggestion](https://github.com/Workiva/over_react/issues/32) @jtrunick!_
2047

2148

@@ -34,7 +61,7 @@ __Dependency Updates__
3461

3562
* [#23](https://github.com/Workiva/over_react/pull/23) Update minimum Dart SDK version to `1.19.1`.
3663
* [#15](https://github.com/Workiva/over_react/pull/15) Update minimum `react` package version to `3.0.1`.
37-
64+
3865
__Bug Fixes__
3966

4067
* [#17](https://github.com/Workiva/over_react/pull/17) Add missing `browser_detect` dependency.
@@ -55,7 +82,7 @@ __Documentation__
5582
> [Complete `1.1.1` Changeset](https://github.com/Workiva/over_react/compare/1.1.0...1.1.1)
5683
5784
* [#6](https://github.com/Workiva/over_react/pull/6) Add contributor documentation.
58-
* [#7](https://github.com/Workiva/over_react/pull/7) Allow "unsupported" units to be passed
85+
* [#7](https://github.com/Workiva/over_react/pull/7) Allow "unsupported" units to be passed
5986
to the `toRem` and `toPx` functions.
6087

6188

@@ -68,8 +95,8 @@ __Documentation__
6895
6996
__New Features__
7097

71-
* [#10](https://github.com/Workiva/over_react/pull/10) Add `FluxUiComponent` and `FluxUiStatefulComponent`.
72-
* Enables consumers to build UI components with a uni-directional data flow via the
98+
* [#10](https://github.com/Workiva/over_react/pull/10) Add `FluxUiComponent` and `FluxUiStatefulComponent`.
99+
* Enables consumers to build UI components with a uni-directional data flow via the
73100
[w_flux](https://github.com/workiva/w_flux) library.
74101

75102
__Misc__
@@ -85,8 +112,8 @@ __Misc__
85112

86113
> [Complete `1.0.2` Changeset](https://github.com/Workiva/over_react/compare/1.0.1...1.0.2)
87114
88-
* [#5](https://github.com/Workiva/over_react/pull/5) Add some Bootstrap UI components to `web/`
89-
to demonstrate what can be built using OverReact.
115+
* [#5](https://github.com/Workiva/over_react/pull/5) Add some Bootstrap UI components to `web/`
116+
to demonstrate what can be built using OverReact.
90117

91118

92119

@@ -96,7 +123,7 @@ __Misc__
96123

97124
> [Complete `1.0.1` Changeset](https://github.com/Workiva/over_react/compare/1.0.0...1.0.1)
98125
99-
* Add test coverage for the `constants`, `dom_util`, `guid_util` and `event_helpers` libraries.
126+
* Add test coverage for the `constants`, `dom_util`, `guid_util` and `event_helpers` libraries.
100127

101128

102129

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
```yaml
4242
dependencies:
43-
over_react: "^1.3.0"
43+
over_react: "^1.4.0"
4444
```
4545
4646
2. Add the `over_react` [transformer] to your `pubspec.yaml`.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: over_react
2-
version: 1.3.0
2+
version: 1.4.0
33
description: A library for building statically-typed React UI components using Dart.
44
homepage: https://github.com/Workiva/over_react/
55
authors:

0 commit comments

Comments
 (0)