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
2 changes: 1 addition & 1 deletion build/steps-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ steps:
condition: always()
artifact: $(ArtifactName)

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
condition: always()
2 changes: 1 addition & 1 deletion build/steps-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ steps:
condition: always()
artifact: $(ArtifactName)

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
condition: always()
2 changes: 1 addition & 1 deletion build/steps-build-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ steps:
- powershell: New-Item -Path '$(ArtifactName)' -ItemType Directory
displayName: Create ReleaseNotes folder

- task: nventiveReleaseNotesCompiler@5
- task: nventiveReleaseNotesCompiler@6
displayName: 'Compile Release Notes'
inputs:
EnvironmentName: $(ApplicationEnvironment)
Expand Down
2 changes: 1 addition & 1 deletion build/steps-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ steps:
condition: always()
artifact: $(ArtifactName)

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build cleanup: Cleanup files to keep build server clean!'
condition: always()
2 changes: 1 addition & 1 deletion build/steps-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ steps:
condition: always()
artifact: $(ArtifactName)

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
condition: always()
4 changes: 2 additions & 2 deletions build/templates/gitversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
default: '$(Build.SourcesDirectory)/build/gitversion-config.yml'

steps:
- task: gitversion/setup@0
- task: gitversion/setup@3
retryCountOnTaskFailure: 3
inputs:
versionSpec: '5.12.0'
displayName: 'Install GitVersion'

- task: gitversion/execute@0
- task: gitversion/execute@3
inputs:
useConfigFile: true
configFilePath: ${{ parameters.configFilePath }}
Expand Down
2 changes: 1 addition & 1 deletion build/templates/mobsf-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ steps:
ArtifactName: ${{parameters.artifactName}}_Security_Reports
publishLocation: 'Container'

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
condition: always()
2 changes: 1 addition & 1 deletion src/cli/.azuredevops/stage-publish-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
projectDirectory: '${{ parameters.pathToSrc }}/cli'
condition: failed()

- task: PostBuildCleanup@3
- task: PostBuildCleanup@4
displayName: 'Post-Build cleanup : Cleanup files to keep build server clean!'
condition: always()
1 change: 1 addition & 0 deletions src/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Prefix your items with `(Template)` if the change is about the template and not

## 0.24.2
- General improvements, including sample documentation (see `src/cli/example/README.md`).
- Update versions of CI/CD tasks.

## 0.24.1
- Add `getFromStream` to have ViewModel properties that automatically update based on `Stream` sources.
Expand Down
2 changes: 1 addition & 1 deletion src/cli/example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The `flutter_application_generator` source code includes a complete working example in the `src/app/` folder. It's a simple joke browser app that uses the Reddit API to display jokes posted to the `r/dadjokes` subreddit and allows you to manage favorites (add / remove). It also includes an authentication example.

Before running the example, it's neccessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following:
Before running the example, it's necessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following:

```bash
dart run build_runner build --delete-conflicting-outputs
Expand Down