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

RM-285731 RM-285730 Release over_react 5.3.3 #951

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
branches:
- '**'

permissions:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the last release we hit this build error on the anchore/sbom-action@v0 step:

------------------------- Uploading workflow artifacts -------------------------
/tmp/sbom-action-jo68vn/over_react-build.cyclonedx.json
Found 1 artifact(s)
---------------------- Attaching SBOMs to release: '5.3.2' ---------------------
/usr/bin/unzip -o -q /home/runner/work/_temp/e4596f5b-92f8-4f38-a5db-dbde4d5545d6
/home/runner/work/_temp/0f6b674c-ce8a-4b9b-842e-7ddb2a1e1cd3/over_react-build.cyclonedx.json
Error: Resource not accessible by integration

Which should hopefully be fixed by adding these permissions

contents: write
id-token: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# OverReact Changelog

## 5.3.3
- [#951] Internal CI fixes

## 5.3.2
- [#948] Fix late required prop linting not working in non-null-safe libraries
- [#949] Add docs around migrating connect and wrapper components, improve helpfulness of required prop lints and runtime errors
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: over_react
version: 5.3.2
version: 5.3.3
description: A library for building statically-typed React UI components using Dart.
homepage: https://github.com/Workiva/over_react/
environment:
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.2
over_react: 5.3.3
path: ^1.5.1
source_span: ^1.7.0
yaml: ^3.0.0
Expand Down