Skip to content
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
1 change: 1 addition & 0 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ scripts:
steps:
- melos exec --scope="stac_core" -- "dart run build_runner build --delete-conflicting-outputs"
- melos exec --scope="stac" -- "dart run build_runner build --delete-conflicting-outputs"
- melos exec --scope="stac_cli" -- "dart run build_runner build --delete-conflicting-outputs"
- melos exec --scope="counter_example" --scope="stac_gallery" --scope="stac_webview" -- "dart run build_runner build --delete-conflicting-outputs"
watch:
exec: dart run build_runner watch --delete-conflicting-outputs
Expand Down
28 changes: 28 additions & 0 deletions packages/stac_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## 1.6.0

- feat: Add console URL logging for successful deployments.
- fix: Remove snake case conversion.

## 1.5.1

- fix: Update workflow to fix missing required environment variable `STAC_BASE_API_URL`.
- fix: Re-enable stac_cli release workflow and update package and dependency versions.
- feat: Enable compile-time environment variable injection for CLI release builds.

## 1.5.0

- feat: Open-source Stac CLI.
- feat: Add stac_cli release workflow.
- feat: Add `DynamicDataProvider` and `TemplateBuilder`.
- feat: Migrate linting from `flutter_lints` to `lints/recommended`.
- refactor: Convert `stac_logger` to a pure Dart package.
- refactor: Improve code formatting and structure across multiple files.
- refactor: Pass `projectDir` as a parameter to `_processArtifacts` and `_convertCallableToJson`.
- refactor: Remove abbreviation for version option in upgrade command.
- fix: Update JSON output formatting to use `jsonEncode` for proper serialization.
- fix: Change return value from 1 to 0 when project selection fails.
- docs: Improve README with quick start guide and detailed features.

## 0.0.1

- Initial release with Dart-to-JSON conversion support.
2 changes: 1 addition & 1 deletion packages/stac_cli/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/stac_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stac_cli
description: A CLI tool for managing Stac SDUI (Server-Driven UI) projects and converting Dart to JSON.
version: 1.5.1
version: 1.6.0
repository: https://github.com/StacDev/stac
homepage: https://stac.dev/

Expand Down
Loading