From 6bdbfc8ca2ef7c1bece0d8b9719de2a8e22e0da0 Mon Sep 17 00:00:00 2001 From: rmconsole-readonly-wk Date: Tue, 20 Aug 2024 22:04:14 +0000 Subject: [PATCH 1/2] over_react_5.3.0 --- pubspec.yaml | 2 +- tools/analyzer_plugin/pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7acf3f9be..d2c0fdc68 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: over_react -version: 5.2.1 +version: 5.3.0 description: A library for building statically-typed React UI components using Dart. homepage: https://github.com/Workiva/over_react/ environment: diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index 5c9968529..e26b1f7d8 100644 --- a/tools/analyzer_plugin/pubspec.yaml +++ b/tools/analyzer_plugin/pubspec.yaml @@ -13,7 +13,7 @@ dependencies: # Upon release, this should be pinned to the over_react version from ../../pubspec.yaml # so that it always resolves to the same version of over_react that the user has pulled in, # and thus has the same boilerplate parsing code that's running in the builder. - over_react: 5.2.1 + over_react: 5.3.0 path: ^1.5.1 source_span: ^1.7.0 yaml: ^3.0.0 From 57f2c5ff150f0b20f29836797bc7afab2f2e6233 Mon Sep 17 00:00:00 2001 From: Aaron Lademann Date: Tue, 20 Aug 2024 15:07:13 -0700 Subject: [PATCH 2/2] Add changelog entry for 5.3.0 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3eea1930..42408da83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # OverReact Changelog +## 5.3.0 +- [#937] Use and export a new, [more expressive typedef for `Object?` called `ReactNode`](https://github.com/Workiva/react-dart/pull/384) + ## 5.2.1 - [#934] Tighten dependency ranges following null-safety release - [#935] Docs: update null safety migration guide with required props codemod instructions