Skip to content
Open
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
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .github/workflows/publish.yml
name: Publish to pub.dev

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v{{version}}'

# Publish using the reusable workflow from dart-lang.
jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
with:
working-directory: .
11 changes: 0 additions & 11 deletions .github/workflows/sast-scan.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/sca-scan.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/secrets-scan.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v1.1.1

Added support for fragment tag in jsonToHtml
___________________

## v1.1.0

Implemented SRTE functions: :tada:
Expand Down
2 changes: 2 additions & 0 deletions lib/src/model/Option.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ class Option {
return '<h6>' + inner_html + '</h6>';
case 'ol':
return '<ol>' + inner_html + '</ol>';
case 'fragment':
return '<fragment>' + inner_html + '</fragment>';
case 'ul':
return '<ul>' + inner_html + '</ul>';
case 'li':
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: contentstack_utils
description: Utils package for Contentstack-dart
version: 1.1.0
version: 1.1.1
homepage: https://www.contentstack.com

environment:
Expand Down