-
Notifications
You must be signed in to change notification settings - Fork 118
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
Allow alert classnames in HTML sanitization. #3820
Conversation
/cc @parlough |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Woohoo thank you!
Note: I have no clue what's going on in test failures, and I also don't have write access to merge this. |
pubspec.yaml
Outdated
@@ -1,5 +1,5 @@ | |||
name: dartdoc | |||
version: 8.0.11 | |||
version: 8.0.12-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When changing this version, 3 other spots need to change:
- CHANGELOG.md (you did)
- dartdoc_options.yaml
- lib/src/version.dart
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I use -dev
? We use it in pana for intermediate states that precedes release, but keep the final version in changelog. What is the rule here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We stick -dev
in each of those 4 locations generally. But I can release 8.0.12 right after this is merged so that pub.dev is fixed. So you can use 8.0.12 in each location.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do publish 8.0.12 (not urgent though, just so that we don't forget)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for getting to this so quickly :D
Co-authored-by: Luka S <github@jaffaketchup.dev>
Revisions updated by `dart tools/rev_sdk_deps.dart`. dartdoc (https://github.com/dart-lang/dartdoc/compare/f6f93dd..1d00523): 1d005239 2024-07-15 István Soós Allow alert classnames in HTML sanitization. (dart-lang/dartdoc#3820) http (https://github.com/dart-lang/http/compare/edbb5a9..757438e): 757438e 2024-07-16 Kevin Moore Bump pkg:web dependency (dart-lang/http#1272) a6d9f72 2024-07-16 Kevin Moore web_socket: allow latest pkg:web (dart-lang/http#1269) web_socket_channel (https://github.com/dart-lang/web_socket_channel/compare/8e95ea7..0e1d6e2): 0e1d6e2 2024-07-16 Kevin Moore Support latest pkg:web, prepare release (dart-lang/web_socket_channel#377) Change-Id: I748eb0ac16e5dda2f0b84f44838ed01871b1f4c8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/376027 Commit-Queue: Devon Carew <devoncarew@google.com> Reviewed-by: Kevin Moore <kevmoo@google.com>
#3819