From 70a592802f9d986455426383f23a6bec2c1e836f Mon Sep 17 00:00:00 2001 From: Jochum van der Ploeg Date: Thu, 28 Sep 2023 18:38:47 +0200 Subject: [PATCH 1/4] chore: set vgvbot as author (#46) * chore: set vgvbot as author * chore: set vgvbot as author --- .github/CODEOWNERS | 2 +- .github/workflows/changelog.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5ddd02b..3d73849 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ # Every request must be reviewed and accepted by: -* @scarletteliza @renancaraujo @wolfenrain \ No newline at end of file +* @renancaraujo @wolfenrain \ No newline at end of file diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index 4ee8994..a6be027 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -41,4 +41,6 @@ jobs: branch: "feat/changelog-for-${{ steps.environment.outputs.date }}" title: "feat: CHANGELOG for ${{ steps.environment.outputs.readableDate }}" body: "Look mom, I generated a changelog!!!" + author: vgvbot commit-message: "feat: CHANGELOG for ${{ steps.environment.outputs.readableDate }}" + committer: vgvbot From 87c6b834e17aa5e37a2a00186e925b8befa87eb6 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Mon, 30 Oct 2023 08:57:10 -0500 Subject: [PATCH 2/4] fix: Use day instaed of month in the PR title (#53) --- .github/workflows/changelog.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index a6be027..940b5e2 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -19,7 +19,7 @@ jobs: run: | echo "year=$(date -u "+%Y")" >> $GITHUB_OUTPUT echo "date=$(date -u "+%d-%m-%y")" >> $GITHUB_OUTPUT - echo "readableDate=$(date -u "+%b %m, %Y")" >> $GITHUB_OUTPUT + echo "readableDate=$(date -u "+%b %d, %Y")" >> $GITHUB_OUTPUT - name: πŸ›« Setting up Deno uses: denoland/setup-deno@v1 @@ -28,7 +28,7 @@ jobs: - name: πŸ—“οΈ Creating directory for the year run: mkdir -p ${{ steps.environment.outputs.year }} - + - name: πŸ“œ Generating CHANGELOG run: | export CHANGELOG_GITHUB_TOKEN=${{ secrets.CHANGELOG_GITHUB_TOKEN}} From 13a8b931dded41a6d9a4fc75e76859c79dc57d4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 10:29:37 -0500 Subject: [PATCH 3/4] feat: CHANGELOG for Aug 14, 2023 (#38) * feat: CHANGELOG for Aug 08, 2023 * update note for this week and add prettier config * prettier config * Formatting * add validate PR flow --------- Co-authored-by: scarletteliza Co-authored-by: Tom Arra --- .github/workflows/changelog.yaml | 8 +- .github/workflows/validate_pr.yaml | 42 +++++ .prettierrc | 4 + 2023/01-05-23.md | 30 ++-- 2023/02-03-23.md | 38 +++-- 2023/03-02-23.md | 216 ++++++++++++------------ 2023/03-07-23.md | 19 ++- 2023/04-09-23.md | 48 +++--- 2023/05-06-23.md | 17 +- 2023/06-01-23.md | 33 ++-- 2023/07-04-23.md | 6 +- 2023/07-08-23.md | 108 ++++++------ 2023/10-02-23.md | 254 +++++++++++++++-------------- 2023/10-03-23.md | 76 +++++---- 2023/11-09-23.md | 57 ++++--- 2023/12-06-23.md | 45 ++--- 2023/14-04-23.md | 30 ++-- 2023/14-08-23.md | 43 +++++ 2023/15-05-23.md | 26 +-- 2023/17-01-23.md | 140 ++++++++-------- 2023/17-03-23.md | 53 +++--- 2023/17-07-23.md | 16 +- 2023/18-09-23.md | 140 +++++++++------- 2023/20-01-23.md | 174 ++++++++++---------- 2023/22-02-23.md | 33 ++-- 2023/22-05-23.md | 53 +++--- 2023/24-03-23.md | 80 +++++---- 2023/24-04-23.md | 14 +- 2023/24-07-23.md | 46 +++--- 2023/26-06-23.md | 23 +-- 2023/28-08-23.md | 44 ++--- 2023/29-05-23.md | 66 +++++--- 2023/31-03-23.md | 38 +++-- 2023/31-07-23.md | 47 +++--- 34 files changed, 1177 insertions(+), 890 deletions(-) create mode 100644 .github/workflows/validate_pr.yaml create mode 100644 .prettierrc create mode 100644 2023/14-08-23.md diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index 940b5e2..6de9fee 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -3,7 +3,7 @@ name: changelog on: schedule: # Runs "every Monday at midnight" (see https://crontab.guru) - - cron: '0 0 * * MON' + - cron: "0 0 * * MON" workflow_dispatch: jobs: @@ -34,6 +34,12 @@ jobs: export CHANGELOG_GITHUB_TOKEN=${{ secrets.CHANGELOG_GITHUB_TOKEN}} deno run --allow-net --allow-env generate-changelog.ts > ${{ steps.environment.outputs.year }}/${{ steps.environment.outputs.date }}.md + - name: Prettify/Format CHANGELOG + uses: creyD/prettier_action@v4.3 + with: + prettier_options: --write **/*.{md} + only_changed: True + - name: 🏁 Create Pull Request uses: peter-evans/create-pull-request@v5 with: diff --git a/.github/workflows/validate_pr.yaml b/.github/workflows/validate_pr.yaml new file mode 100644 index 0000000..240953f --- /dev/null +++ b/.github/workflows/validate_pr.yaml @@ -0,0 +1,42 @@ +name: "Validate PR" + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + valdiate_pr_title: + name: Validate PR Title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + types: | + fix + feat + docs + refactor + test + ci + chore + revert + requireScope: false + validate_spelling: + name: Validate Spelling + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - name: Check Spelling + uses: streetsidesoftware/cspell-action@v2 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + files: "**/*.{md}" + config: .vscode/cspell.json + incremental_files_only: false + verbose: true diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..3e922d6 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ +"tabWidth": 2, +"useTabs": false +} diff --git a/2023/01-05-23.md b/2023/01-05-23.md index cd05275..9055618 100644 --- a/2023/01-05-23.md +++ b/2023/01-05-23.md @@ -3,33 +3,37 @@ This week we fixed a bug in Dart Frog and added some new workflows to Very Good Workflows. ## dart_frog + - feat(dart_frog_gen)!: reland "add route configuration validation to gen" ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/630 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/630 - chore(dart_frog_gen): 0.3.4 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/629 -- fix(dart_frog_gen): revert add route configuration validation to gen ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/628 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/629 +- fix(dart_frog_gen): revert add route configuration validation to gen ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/628 - feat(dart_frog_cli): update server bundles ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/627 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/627 - refactor(dart_frog_cli): use server validation from `dart_frog_gen` ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/615 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/615 - chore(dart_frog_gen): 0.3.3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/622 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/622 - feat(dart_frog_gen): add route configuration validation to gen ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/614 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/614 ## very_good_cli + - refactor: move e2e tests to their own package ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/721 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/721 ## very_good_workflows + - feat: add mason publish workflow ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/112 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/112 - feat: add publish scripts ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/111 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/111 - feat: support excluding directories ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/110 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/110 ## very_good_dart_cli + - feat!: bump min Dart SDK to 2.19.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/96 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/96 diff --git a/2023/02-03-23.md b/2023/02-03-23.md index 7e9b89a..ca5785c 100644 --- a/2023/02-03-23.md +++ b/2023/02-03-23.md @@ -1,45 +1,53 @@ # Very Good Changelog (03-02-2023) ## very_good_flutter_plugin + - chore: v0.3.2 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/92 -- feat: update workflows, dependabot generation, add spellcheck ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/88 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/92 +- feat: update workflows, dependabot generation, add spellcheck ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/88 ## mockingjay + - docs: update readme example ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/mockingjay/pull/45 + - https://github.com/VeryGoodOpenSource/mockingjay/pull/45 - How is the Example supposed to work? I get a "type Null is not a subtype of type Future" error ([@maheini](https://github.com/maheini)) - - https://github.com/VeryGoodOpenSource/mockingjay/pull/30 + - https://github.com/VeryGoodOpenSource/mockingjay/pull/30 - feat: updates to flutter 3.3.1, use very_good_workflows and add dependabot ([@jamesblasco](https://github.com/jamesblasco)) - - https://github.com/VeryGoodOpenSource/mockingjay/pull/34 + - https://github.com/VeryGoodOpenSource/mockingjay/pull/34 ## cli_completion + - chore: v0.3.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/60 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/60 - chore: v0.3.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/59 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/59 ## very_good_analysis + - [QUESTION] GitHub Workflow Action ([@isAlmogK](https://github.com/isAlmogK)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/61 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/61 ## very_good_dart_cli + - chore: v0.3.2 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/86 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/86 ## very_good_flutter_package + - chore: v0.2.5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/48 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/48 - feat: update workflows, add spellcheck ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/46 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/46 ## very_good_dart_package + - chore: v0.2.4 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/45 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/45 - fix: unecessary issue/pr templates on template src ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/43 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/43 ## very_good_test_runner + - feat: update workflows, add spellcheck, update very_good_analysis ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_test_runner/pull/16 + - https://github.com/VeryGoodOpenSource/very_good_test_runner/pull/16 diff --git a/2023/03-02-23.md b/2023/03-02-23.md index 2d5b96f..7b9327d 100644 --- a/2023/03-02-23.md +++ b/2023/03-02-23.md @@ -1,160 +1,176 @@ # Very Good Changelog (02-03-2023) -​ + ## dart_frog -- build: (@SaiZayarHtet7) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/497 + +- build: (@SaiZayarHtet7) + - https://github.com/VeryGoodOpenSource/dart_frog/issues/497 - fix: At the end of the tutorial, I don't know how to check that the app is working (@wpl90) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/491 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/491 - fix: "no matches found: routes/[message].dart" error occurred. (@wpl90) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/490 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/490 - chore(dart_frog_cli): v0.3.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/495 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/495 - feat(dart_frog_cli): dart_frog create use Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/494 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/494 - chore: upgrade examples to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/493 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/493 - fix(mason_cli): update silently fails when the sdk is incompatible (@renancaraujo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/480 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/480 - chore(examples/todos): fix analyzer warnings in Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/492 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/492 - fix: Dependency Injection not working on Custom Server Entrypoint `run` (@rubenferreira97) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/481 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/481 - docs(routes): include nested dynamic routes (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/478 -- feat: Able to identify Dart on dart_frog projects using Android Studio (@marcellocamara) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/477 -​ + - https://github.com/VeryGoodOpenSource/dart_frog/pull/478 +- feat: Able to identify Dart on dart_frog projects using Android Studio (@marcellocamara) - https://github.com/VeryGoodOpenSource/dart_frog/issues/477 + ​ + ## very_good_flutter_package + - chore: v0.2.2 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/40 -- feat: upgrade to flutter 3.7.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/38 -​ + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/40 +- feat: upgrade to flutter 3.7.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/38 + ​ + ## very_good_dart_cli + - chore: v0.2.3 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/74 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/74 - ci: update generate template to trigger on changes to patches (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/72 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/72 - fix: update patch to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/71 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/71 - feat: upgrade to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/69 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/69 - chore: v0.2.2 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/68 -- fix: update silently fails when the sdk doesnt support most recent version (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/66 -​ + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/68 +- fix: update silently fails when the sdk doesnt support most recent version (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/66 + ​ + ## very_good_core + - feat: small updates to the android folder to match the latest flutter structure (@erickzanardo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/225 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/225 - chore: v0.1.11 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/224 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/224 - feat: upgrade to flutter 3.7.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/221 -- chore: flutter upgrade 3.7.0 (@Arnooodles) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/222 -​ + - https://github.com/VeryGoodOpenSource/very_good_core/pull/221 +- chore: flutter upgrade 3.7.0 (@Arnooodles) - https://github.com/VeryGoodOpenSource/very_good_core/pull/222 + ​ + ## very_good_cli -- feat: bump template bundles (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/637 + +- feat: bump template bundles (@renancaraujo) + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/637 - ci: add bump templates workflow (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/638 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/638 - fix: update silently fails when the sdk doesnt support most recent version (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/631 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/631 - fix: use dart format instead of flutter format (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/632 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/632 - fix: update silently fails when the sdk doesnt support most recent version (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/627 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/627 - very_good cli updates issues: cant update past 0.9.0 (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/626 -- Platform flags not working (@egyleader) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/467 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/626 +- Platform flags not working (@egyleader) + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/467 - feat: update sdk constraints (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/628 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/628 - fix: fix test report in case of multiline test name (@agacemi) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/535 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/535 - feat: change description of create sub commands (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/625 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/625 - fix: --org-name on docs site template is not what it means (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/615 -- fix(create): docs site template org validation (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/624 -​ + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/615 +- fix(create): docs site template org validation (@felangel) - https://github.com/VeryGoodOpenSource/very_good_cli/pull/624 + ​ + ## very_good_flame_game + - chore: v0.0.5 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/60 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/60 - fix: google fonts issue on test (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/57 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/57 - chore: v0.0.4 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/56 -- feat: upgrade to flutter 3.7.0 and flame 1.6.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/53 -​ + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/56 +- feat: upgrade to flutter 3.7.0 and flame 1.6.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/53 + ​ + ## very_good_dart_package + - chore: v0.2.2 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/37 -- feat: upgrade to dart 2.19 and fix dependabot file (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/35 -​ + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/37 +- feat: upgrade to dart 2.19 and fix dependabot file (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/35 + ​ + ## very_good_workflows + - chore: v1.12.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/96 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/96 - feat: replace flutter format with dart format (@erickzanardo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/95 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/95 - fix: flutter format is deprecated (@stact) - - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/92 -- feat: Use multiple workflow files for sub packages (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/36 -​ + - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/92 +- feat: Use multiple workflow files for sub packages (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/36 + ​ + ## very_good_analysis + - Invariant_booleans is a deprecated lint rule (@dezsocsete) - - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/66 -- Warning in analysis_option.yaml (@Shakle) - - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/64 -​ + - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/66 +- Warning in analysis_option.yaml (@Shakle) - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/64 + ​ + ## flame_behaviors + - chore: flame_behaviors-v0.2.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/37 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/37 - docs: fix coverage badge url (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/36 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/36 - docs: rework docs into its own directory (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/30 -- docs: enhance documentation based on feedback (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/issues/25 -​ + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/30 +- docs: enhance documentation based on feedback (@wolfenrain) - https://github.com/VeryGoodOpenSource/flame_behaviors/issues/25 + ​ + ## cli_completion -- feat: Restrict suggesitons for non multi-option options (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/issues/42 -​ + +- feat: Restrict suggesitons for non multi-option options (@renancaraujo) - https://github.com/VeryGoodOpenSource/cli_completion/issues/42 + ​ + ## very_good_docs_site -- chore: v0.0.1+4 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/60 -​ + +- chore: v0.0.1+4 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/60 + ​ + ## very_good_dictionaries -- chore: add firestore (@samanthaobrien2059) - - https://github.com/VeryGoodOpenSource/very_good_dictionaries/pull/3 -​ + +- chore: add firestore (@samanthaobrien2059) - https://github.com/VeryGoodOpenSource/very_good_dictionaries/pull/3 + ​ + ## very_good_flutter_plugin -- feat: upgrade to Flutter 3.7.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/78 -​ + +- feat: upgrade to Flutter 3.7.0 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/78 + ​ + ## pub_updater + - chore: v0.2.4 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/38 -- feat: add version constraints to update method (@renancaraujo) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/37 -​ -## _very_good_chores + - https://github.com/VeryGoodOpenSource/pub_updater/pull/38 +- feat: add version constraints to update method (@renancaraujo) - https://github.com/VeryGoodOpenSource/pub_updater/pull/37 + ​ + +## \_very_good_chores + - AWS Template (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/27 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/27 - Design Meeting - Potential Updates (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/36 -- Make Very good dependabot workflow (@renancaraujo) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/31 -​ + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/36 +- Make Very good dependabot workflow (@renancaraujo) - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/31 + ​ + ## very_good_bricks + - illustrate test output changes (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_bricks/pull/74 + - https://github.com/VeryGoodOpenSource/very_good_bricks/pull/74 - chore: tags change (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_bricks/pull/72 - \ No newline at end of file + - https://github.com/VeryGoodOpenSource/very_good_bricks/pull/72 diff --git a/2023/03-07-23.md b/2023/03-07-23.md index 4ed7958..a49f662 100644 --- a/2023/03-07-23.md +++ b/2023/03-07-23.md @@ -3,23 +3,26 @@ Work continues on Dart Frog with important features and fixes. ## dart_frog + - feat: adding bearer authentication example ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/738 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/738 - feat(dart_frog): provider support nullable values ([@felangel](https://github.com/felangel)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/736 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/736 - feat: allowing routes to be filtered and adding basic example ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/715 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/715 - refactor(dart_frog_cli): introduce dev server runner ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/729 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/729 - feat: update auth pkg docs ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/720 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/720 - fix: use custom docker file when building prod server ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/723 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/723 ## very_good_cli + - ci: removed flame game from ci tests ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/757 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/757 ## very_good_workflows + - feat: update docs ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/130 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/130 diff --git a/2023/04-09-23.md b/2023/04-09-23.md index 9825374..4711345 100644 --- a/2023/04-09-23.md +++ b/2023/04-09-23.md @@ -1,56 +1,62 @@ # Very Good Changelog (09-04-2023) -Some updates cooking on Dart Frog, new VG analysis. - +Some updates cooking on Dart Frog, new VG analysis. ## dart_frog + - ci: false negatives on tests ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/986 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/986 - chore(examples): bump very good analysis and dart constraint ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/982 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/982 - feat(vscode): provide Debug CodeLens on route handlers ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/973 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/973 - feat(vscode): provide Run CodeLens on route handlers ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/960 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/960 - docs: add links to docs on readmes ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/978 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/978 - feat(vscode): register startDebugDevServer command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/974 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/974 - feat: add route_config domain ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/965 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/965 - feat: add dart frog test ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/899 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/899 - refactor(vscode): included sort-import and no-unused-vars lint rules ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/962 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/962 ## very_good_analysis + - chore: v5.1.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/84 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/84 ## very_good_workflows + - docs: link to pana versions page ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/141 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/141 - docs: add github permissions section to semantic pull request workflow ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/138 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/138 - docs: fix link in dart_pub_publish.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/135 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/135 ## awesome_dart_frog + - Update README.md ([@YousefSalahKassem](https://github.com/YousefSalahKassem)) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/15 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/15 - docs: update with new article ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/14 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/14 ## very_good_hub + - feat: adding post creation in the app ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/15 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/15 - feat: adding post creation api ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/14 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/14 ## very_good_core + - refactor: Update `app` to Material 3 ([@TahaTesser](https://github.com/TahaTesser)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/284 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/284 ## flutter_web_preloader + - fix: Loads app even when there's no assets ([@cgutierr-zgz](https://github.com/cgutierr-zgz)) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/12 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/12 diff --git a/2023/05-06-23.md b/2023/05-06-23.md index 7d32fd2..11f1748 100644 --- a/2023/05-06-23.md +++ b/2023/05-06-23.md @@ -3,21 +3,24 @@ Dart Frog CLI v0.3.7 was released with a new command. We focused on a lot of updates to Dart Frog this week. ## dart_frog + - feat(dart_frog_cli): Add dart-vm-port option to dev command ([@easazade](https://github.com/easazade)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/599 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/599 - chore(dart_frog_cli): v0.3.7 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/672 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/672 - feat: adding dart version flag to build command ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/671 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/671 - feat: adding list command ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/669 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/669 - feat: adding option to customize the dart version on the build brick ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/670 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/670 ## very_good_workflows + - docs: Update README.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/117 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/117 ## cli_completion + - feat: avoid auto-installing when already installed ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/74 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/74 diff --git a/2023/06-01-23.md b/2023/06-01-23.md index 13f3d3d..9ea32d0 100644 --- a/2023/06-01-23.md +++ b/2023/06-01-23.md @@ -1,28 +1,29 @@ # Very Good Changelog (01-06-2023) -​ + ## dart_frog + - feat: minimalistic build result (@Tienisto) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/446 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/446 - chore(web_socket_counter): upgrade to dart_frog_web_socket ^0.1.0-dev.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/466 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/466 - fix: shelf_web_socket (@MattiaPispisa) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/463 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/463 - chore(dart_frog_web_socket): v0.1.0-dev.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/465 -- fix(dart_frog_web_socket): upgrade to shelf_web_socket ^1.0.3 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/464 -​ + - https://github.com/VeryGoodOpenSource/dart_frog/pull/465 +- fix(dart_frog_web_socket): upgrade to shelf_web_socket ^1.0.3 (@felangel) - https://github.com/VeryGoodOpenSource/dart_frog/pull/464 + ​ + ## very_good_cli + - feat: recreate flutter create with sub commands (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 - feat(create)! subcommand: Top Level Create Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 - feat(create)! subcommand: Very Good Core Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 - feat(create)!: use subcommands for different template types & Proxy (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 -- Remove Default Splash Screen (@NurRozikin) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 +- Remove Default Splash Screen (@NurRozikin) + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 - feat(test): add --reporter to output in JSON (@jackgllghr) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/473 - \ No newline at end of file + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/473 diff --git a/2023/07-04-23.md b/2023/07-04-23.md index bb452db..ba9e428 100644 --- a/2023/07-04-23.md +++ b/2023/07-04-23.md @@ -3,9 +3,11 @@ A lighter week on OSS changes with some PRs merged from the community. We're hard at work on updates to come soon. ## dart_frog + - fix: url in "custom_init_method" doc #595 (@gabrielrozendo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/595 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/595 ## awesome_dart_frog + - docs: add Dart Frog Authentication #8 (@karokojnr) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/8 \ No newline at end of file + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/8 diff --git a/2023/07-08-23.md b/2023/07-08-23.md index 74db554..8352fa7 100644 --- a/2023/07-08-23.md +++ b/2023/07-08-23.md @@ -3,109 +3,111 @@ We released Dart Frog 1.0! πŸŽ―πŸΈπŸš€ ## dart_frog + - docs: add link to authentication.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/891 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/891 - test(dart_frog_cli): mock stdin in the command run level ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/885 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/885 - docs: update versions on docs ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/883 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/883 - ci: add update_cli_bundles ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/881 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/881 - feat(dart_frog_gen): add `toJson` to `RouteConfig` ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/872 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/872 - fix: port read from env ([@lesnitsky](https://github.com/lesnitsky)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/874 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/874 - docs: Fix auth docs ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/873 -- fix(vscode): suggest again to install the Dart Frog CLI before running a command that requires of Dart Frog CLI if not installed ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/870 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/873 +- fix(vscode): suggest again to install the Dart Frog CLI before running a command that requires of Dart Frog CLI if not installed ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/870 - feat(dart_frig_cli): make daemon command visible ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/871 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/871 - chore: create release script ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/612 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/612 - docs: add uninstall instructions ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/812 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/812 - test(vscode): use stub.resolves over stub.returns with Promise ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/862 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/862 - fix(vscode): avoid recommending to upgrade when version is above constraints ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/864 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/864 - feat(dart_frog_cli): press R to reload ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/814 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/814 - docs: update cors.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/868 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/868 - docs: Adding docs about CORS ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/867 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/867 - docs(vscode): include references to VS Code extension ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/858 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/858 - docs(vscode): include extensions section ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/861 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/861 - refactor(vscode): use string over String ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/865 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/865 - docs: add daemon docs ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/837 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/837 - chore: update examples dependencies ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/853 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/853 - docs: roadmap update ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/839 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/839 - docs: update home with 1.0 ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/866 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/866 - chore(vscode): v0.1.1 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/863 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/863 - chore(dart_frog_cli): v1.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/854 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/854 - chore(dart_frog_web_socket): v1.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/851 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/851 - chore(dart_frog_auth): v1.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/849 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/849 - chore: update dart_frog_gen and update bricks ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/848 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/848 - chore(dart_frog): v1.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/841 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/841 - docs(vscode): update README links and style ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/857 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/857 - docs(authentication): fix typo ([@felangel](https://github.com/felangel)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/856 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/856 - chore(deps): bump `package:mocktail` and `very_good_analysis` ([@felangel](https://github.com/felangel)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/855 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/855 - docs(authentication): fix link to general http ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/859 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/859 - chore(vscode): v0.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/852 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/852 - chore(vscode): v0.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/850 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/850 - feat: bump dart_frog_gen on bricks ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/845 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/845 - ci: disable publish workflow ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/842 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/842 - chore(dart_frog_gen): v1.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/840 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/840 - refactor(dart_frog_cli_e2e): use line splitter on e2e ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/813 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/813 - feat(vscode): prompt middleware route path when activated from command palette ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/838 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/838 - feat(vscode): normalizing middleware parent as route path ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/835 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/835 - feat(vscode): improved path resolution algorithm from command palette ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/831 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/831 - fix(vscode): resolved typo in dialog label ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/834 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/834 - feat(vscode): add changelog button to warning message ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/822 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/822 - docs(vscode): include information regarding random test ordering ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/830 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/830 - feat: add uninstall command ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/811 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/811 - docs(vscode): use https URL over relative path in README.md ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/836 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/836 - docs(vscode): update README.md ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/828 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/828 - feat: add verify-only flag to update command ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/817 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/817 ## very_good_hub + - feat: adding sign up flow ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/7 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/7 - feat: making db client in api main private ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/6 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/6 - feat: adding sign in ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/5 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/5 diff --git a/2023/10-02-23.md b/2023/10-02-23.md index 95f4619..949ae22 100644 --- a/2023/10-02-23.md +++ b/2023/10-02-23.md @@ -1,206 +1,220 @@ # Very Good Changelog (02-10-2023) -​ + ## cli_completion + - chore(deps): bump very_good_analysis from 3.1.0 to 4.0.0+1 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/54 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/54 - feat: store completions in `$XDG_CONFIG_HOME` instead of `$HOME` (@mia-recki) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/50 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/50 - fix: `.../.dart-cli-completion/zsh-config.zsh:3: unknown condition: -f` error (@pattobrien) - - https://github.com/VeryGoodOpenSource/cli_completion/issues/52 + - https://github.com/VeryGoodOpenSource/cli_completion/issues/52 - fix: completion installation (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/53 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/53 - fix: Improper appending of `Completion` script causes errors reading `.zshrc` file (@pattobrien) - - https://github.com/VeryGoodOpenSource/cli_completion/issues/51 -- feat: Restrict suggesitons for non multi-option options (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/issues/42 -​ + - https://github.com/VeryGoodOpenSource/cli_completion/issues/51 +- feat: Restrict suggesitons for non multi-option options (@renancaraujo) - https://github.com/VeryGoodOpenSource/cli_completion/issues/42 + ​ + ## very_good_analysis + - chore: v4.0.0+1 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/68 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/68 - feat: v4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/67 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/67 - [QUESTION] GitHub Workflow Action (@isAlmogK) - - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/61 -- Invariant_booleans is a deprecated lint rule (@dezsocsete) - - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/66 -​ + - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/61 +- Invariant_booleans is a deprecated lint rule (@dezsocsete) - https://github.com/VeryGoodOpenSource/very_good_analysis/issues/66 + ​ + ## very_good_cli + - fix: This application's locale, pt, is not supported by all of its localization delegates. (@JakeHadley) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/635 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/635 - fix: use dart format instead of flutter format (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/632 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/632 - fix: update silently fails when the sdk doesnt support most recent version (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/631 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/631 - chore: v0.11.0+1 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/645 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/645 - chore: v0.11.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/644 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/644 - fix: bump_templates.yaml (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/642 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/642 - ci: fix update templates workflow (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/641 -- feat: bump template bundles (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/637 -- ci: add bump templates workflow (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/638 -​ + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/641 +- feat: bump template bundles (@renancaraujo) + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/637 +- ci: add bump templates workflow (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_cli/pull/638 + ​ + ## dart_frog + - fix: adjust InternetAddress to anyIPv6 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/528 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/528 - feat: Allow IPv6 bind/configuration (@rubenferreira97) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/479 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/479 - feat: allow IPv4 and IPv6 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/525 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/525 - docs(resources): minor copy update to fun fact blurb (@KyleFin) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/523 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/523 - refactor(dart_frog_dev): update to Dart 2.19 and Very Good Analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/522 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/522 - refactor(create_dart_frog): update to Dart 2.19 and Very Good Analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/521 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/521 - feat(dart_frog_cli): upgrade to Dart 2.19 and Very Good Analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/504 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/504 - feat(dart_frog_cli): add cli completion (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/503 -- build: (@SaiZayarHtet7) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/497 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/503 +- build: (@SaiZayarHtet7) + - https://github.com/VeryGoodOpenSource/dart_frog/issues/497 - fix: At the end of the tutorial, I don't know how to check that the app is working (@wpl90) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/491 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/491 - fix: "no matches found: routes/[message].dart" error occurred. (@wpl90) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/490 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/490 - chore(dart_frog_cli): v0.3.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/495 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/495 - feat(dart_frog_cli): dart_frog create use Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/494 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/494 - chore: upgrade examples to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/493 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/493 - fix(mason_cli): update silently fails when the sdk is incompatible (@renancaraujo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/480 -- chore(examples/todos): fix analyzer warnings in Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/492 -​ + - https://github.com/VeryGoodOpenSource/dart_frog/pull/480 +- chore(examples/todos): fix analyzer warnings in Dart 2.19 (@felangel) - https://github.com/VeryGoodOpenSource/dart_frog/pull/492 + ​ + ## very_good_workflows + - feat: add analyze directories option to flutter package (@erickzanardo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/100 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/100 - chore: v1.12.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/96 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/96 - feat: replace flutter format with dart format (@erickzanardo) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/95 -- fix: flutter format is deprecated (@stact) - - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/92 -​ + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/95 +- fix: flutter format is deprecated (@stact) - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/92 + ​ + ## formz -- feat: display error messages (@lesanpi) - - https://github.com/VeryGoodOpenSource/formz/pull/71 -​ + +- feat: display error messages (@lesanpi) - https://github.com/VeryGoodOpenSource/formz/pull/71 + ​ + ## very_good_core + - chore: remove explicit Flutter version constraint (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/239 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/239 - chore: v0.1.13 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/237 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/237 - feat: upgrade to very_good_analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/235 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/235 - chore: v0.1.12 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/230 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/230 - refactor: upgrade to bloc v8.1.1 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/228 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/228 - feat: small updates to the android folder to match the latest flutter structure (@erickzanardo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/225 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/225 - chore: v0.1.11 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/224 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/224 - feat: upgrade to flutter 3.7.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/221 -- chore: flutter upgrade 3.7.0 (@Arnooodles) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/222 -​ + - https://github.com/VeryGoodOpenSource/very_good_core/pull/221 +- chore: flutter upgrade 3.7.0 (@Arnooodles) - https://github.com/VeryGoodOpenSource/very_good_core/pull/222 + ​ + ## very_good_flutter_plugin + - chore: v0.3.1 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/84 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/84 - chore: upgrade to very_good_analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/82 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/82 - chore: v0.3.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/81 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/81 - feat: upgrade to flutter 3.7.1 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/77 -- feat: upgrade to Flutter 3.7.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/78 -​ + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/77 +- feat: upgrade to Flutter 3.7.0 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/78 + ​ + ## very_good_dart_cli + - Add cli completion to dart cli template (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/issues/65 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/issues/65 - fix: create command fail to create a new project (@SAGARSURI) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/issues/75 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/issues/75 - test: remove unused PubUpdater (@lsaudon) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/82 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/82 - chore: v0.3.1 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/81 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/81 - chore: upgrade to very_good_analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/79 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/79 - chore: v0.3.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/78 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/78 - feat: add completion (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/76 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/76 - chore: v0.2.3 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/74 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/74 - ci: update generate template to trigger on changes to patches (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/72 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/72 - fix: update patch to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/71 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/71 - feat: upgrade to Dart 2.19 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/69 -- chore: v0.2.2 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/68 -​ + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/69 +- chore: v0.2.2 (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/68 + ​ + ## very_good_docs_site -- chore: v0.0.1+4 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/60 -​ + +- chore: v0.0.1+4 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/60 + ​ + ## very_good_flutter_package + - chore: v0.2.3 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/43 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/43 - chore: upgrade to very_good_analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/41 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/41 - chore: v0.2.2 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/40 -- feat: upgrade to flutter 3.7.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/38 -​ + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/40 +- feat: upgrade to flutter 3.7.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/38 + ​ + ## very_good_flame_game + - chore: v0.1.1 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/71 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/71 - feat: update very_good_analysis (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/68 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/68 - chore: v0.1.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/69 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/69 - feat: update flutter (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/66 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/66 - chore: v0.0.5 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/60 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/60 - fix: google fonts issue on test (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/57 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/57 - chore: v0.0.4 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/56 -- feat: upgrade to flutter 3.7.0 and flame 1.6.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/53 -​ + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/56 +- feat: upgrade to flutter 3.7.0 and flame 1.6.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/53 + ​ + ## very_good_dart_package + - chore: v0.2.3 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/40 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/40 - chore: upgrade to very_good_analysis 4.0.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/38 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/38 - chore: v0.2.2 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/37 -- feat: upgrade to dart 2.19 and fix dependabot file (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/35 -​ + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/37 +- feat: upgrade to dart 2.19 and fix dependabot file (@renancaraujo) - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/35 + ​ + ## very_good_dictionaries -- chore: add firestore (@samanthaobrien2059) - - https://github.com/VeryGoodOpenSource/very_good_dictionaries/pull/3 -​ -## _very_good_chores + +- chore: add firestore (@samanthaobrien2059) - https://github.com/VeryGoodOpenSource/very_good_dictionaries/pull/3 + ​ + +## \_very_good_chores + - Spike: New analysis rules for VG Analysis (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/54 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/54 - core gradle issues (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/53 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/53 - AWS Template (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/27 - \ No newline at end of file + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/27 diff --git a/2023/10-03-23.md b/2023/10-03-23.md index 54de2cb..fd92f59 100644 --- a/2023/10-03-23.md +++ b/2023/10-03-23.md @@ -1,85 +1,95 @@ # Very Good Changelog (03-10-2023) ## very_good_cli -- feat(test): enhance logs and final test report in case of failing tests (@agacemi) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/563 + +- feat(test): enhance logs and final test report in case of failing tests (@agacemi) + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/563 - feat: add support for excluding packages (@willhlas) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/640 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/640 - fix(test_optimizer): mismatch of versions on hook (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/675 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/675 - chore: v0.12.2 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/677 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/677 - chore: v0.12.1 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/674 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/674 - fix(test_optimizer): set dart constraint to v2.18.0 (@wolfenrain) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/673 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/673 - chore: v0.12.0 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/670 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/670 - ci: fix optimizer workflow (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/666 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_cli/issues/666 ## dart_frog + - feat(dart_frog): add `Response.stream` (@felangel) - - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/562 + - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/562 - chore(dart_frog): v0.3.4 (@wolfenrain) - - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/561 + - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/561 - feat(dart_frog): multipart/form-data (@wolfenrain) - - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/551 + - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/551 - refactor(dart_frog_cli): remove duplicate `dart:io` import (@felangel) - - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/556 + - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/556 - docs: update various dependency references (@felangel) - - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/550 + - https://api.github.com/repos/VeryGoodOpenSource/dart_frog/issues/550 ## formz + - feat: add `isInProgressOrSuccess` to `FormzSubmissionStatusX` (@maRci002) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/83 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/83 - feat: add FormzInputErrorCacheMixin mixin (@maRci002) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/81 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/81 - chore: v0.5.0+1 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/80 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/80 - chore: v0.5.0 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/79 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/79 - docs: add caching example (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/78 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/78 - feat: lazily validate inputs (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/77 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/77 - feat: validate forms only once (#58) (@FeedMyCat54) - - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/75 + - https://api.github.com/repos/VeryGoodOpenSource/formz/issues/75 ## mockingjay + - docs: update readme example (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/mockingjay/issues/45 + - https://api.github.com/repos/VeryGoodOpenSource/mockingjay/issues/45 - feat: updates to flutter 3.3.1, use very_good_workflows and add dependabot (@jamesblasco) - - https://api.github.com/repos/VeryGoodOpenSource/mockingjay/issues/34 + - https://api.github.com/repos/VeryGoodOpenSource/mockingjay/issues/34 ## r13n + - refactor: decompose hooks into multiple files (@alestiago) - - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/43 + - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/43 - chore: update example with latest generation (@alestiago) - - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/42 + - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/42 ## very_good_workflows + - feat: lock very_good_cli version in workflow (@Kirpal) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_workflows/issues/101 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_workflows/issues/101 ## very_good_flutter_plugin + - chore: v0.3.2 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_flutter_plugin/issues/92 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_flutter_plugin/issues/92 ## very_good_infinite_list + - feat: update workflows and repository infra structure (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_infinite_list/issues/50 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_infinite_list/issues/50 ## very_good_flame_game + - chore: v0.1.2 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_flame_game/issues/76 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_flame_game/issues/76 - feat: update workflows, add spellcheck (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_flame_game/issues/74 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_flame_game/issues/74 ## very_good_core + - fix: rollback very_good_analysis to 3.1.0 (@alestiago) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/249 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/249 - feat(generator): filter out ignored files for local brick geenerations (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/248 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/248 - test: include e2e test (@alestiago) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/245 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/245 diff --git a/2023/11-09-23.md b/2023/11-09-23.md index 22714db..3f608ad 100644 --- a/2023/11-09-23.md +++ b/2023/11-09-23.md @@ -1,65 +1,72 @@ # Very Good Changelog (09-11-2023) -Maintenance updates across packages and templates. New dart frog version and development in the dart frog VS Code extension. +Maintenance updates across packages and templates. New dart frog version and development in the dart frog VS Code extension. ## dart_frog + - test: fix intermitent e2e test ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1008 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1008 - feat(vscode): include host member in DartFrogApplication ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1010 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1010 - feat(vscode): added stop to debug toolbar ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1001 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1001 - feat: add dart frog extension as recommended ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1009 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1009 - feat(vscode): strengthen when clauses with anyDartFrogProjectLoaded ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1002 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1002 - docs: add docs for route config domain ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/975 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/975 - chore(dart_frog_cli): 1.1.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1007 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1007 - chore(dart_frog_test): 0.1.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1006 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1006 - chore(dart_frog): v1.0.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1004 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1004 - chore: update dart_frog_gen on bricks ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1003 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1003 - chore(dart_frog_gen): 2.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/993 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/993 - docs: adding jwt authentication tutorial ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/980 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/980 - test: add e2e test for route config domain ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/977 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/977 - chore(packages): bump very good analysis ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/983 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/983 - docs: add daemon logging events section ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/987 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/987 - chore(bricks): bump very good analysis ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/984 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/984 - feat(vscode): add status bar items to start, stop and open server ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/988 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/988 ## very_good_core + - fix: add runner tests,update analysis and update ignored files ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/285 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/285 ## formz + - fix(example): update validation to report empty values ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/formz/pull/100 + - https://github.com/VeryGoodOpenSource/formz/pull/100 - ci: use flutter_package workflow ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/formz/pull/102 + - https://github.com/VeryGoodOpenSource/formz/pull/102 ## very_good_hub + - feat: adding post listing feature ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/16 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/16 ## very_good_infinite_list + - feat: centralize builders options ([@HenriqueNas](https://github.com/HenriqueNas)) - - https://github.com/VeryGoodOpenSource/very_good_infinite_list/pull/55 + - https://github.com/VeryGoodOpenSource/very_good_infinite_list/pull/55 ## pub_updater + - chore: update Very Good Analysis and fix format ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/53 + - https://github.com/VeryGoodOpenSource/pub_updater/pull/53 ## r13n + - chore: update dart, analysis and fix lint ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/r13n/pull/57 + - https://github.com/VeryGoodOpenSource/r13n/pull/57 diff --git a/2023/12-06-23.md b/2023/12-06-23.md index 8946aaa..52523a8 100644 --- a/2023/12-06-23.md +++ b/2023/12-06-23.md @@ -1,49 +1,52 @@ # Very Good Changelog (06-12-2023) -Lots of work on Dart Frog this week πŸ‘€ including new support for wildcard routes and docs for configuring environments. +Lots of work on Dart Frog this week πŸ‘€ including new support for wildcard routes and docs for configuring environments. ## dart_frog + - build: add bump bundles workflow ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/694 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/694 - feat: detect conflict between dynamic routes and non dynamic ones ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/687 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/687 - feat: add wildcard support on routes ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/676 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/676 - chore(dart_frog): v0.3.7 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/693 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/693 - chore(dart_frog_gen): v0.4.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/692 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/692 - feat: adding wildcard detection to dart frog gen ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/691 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/691 - refactor(dart_frog_web_socket): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/686 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/686 - refactor(dart_frog): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/685 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/685 - refactor(dart_frog_gen): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/681 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/681 - refactor(dart_frog_new): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/680 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/680 - refactor(dart_frog_dev_server): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/678 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/678 - docs: Update environments.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/684 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/684 - docs: update environment docs ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/682 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/682 - refactor(dart_frog_prod_server): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/679 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/679 - refactor(create_dart_frog): update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/677 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/677 - docs: adding information about environments ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/674 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/674 - chore: do not ingnore build ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/673 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/673 ## awesome_dart_frog + - feat: add Rive Live ([@jorgecoca](https://github.com/jorgecoca)) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/11 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/11 ## pub_updater + - refactor: update to Dart 3 and Very Good Analysis 5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/48 + - https://github.com/VeryGoodOpenSource/pub_updater/pull/48 - chore(deps): bump http version to 1.0.0 ([@ndelanou](https://github.com/ndelanou)) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/47 + - https://github.com/VeryGoodOpenSource/pub_updater/pull/47 diff --git a/2023/14-04-23.md b/2023/14-04-23.md index 0beb05e..8f5eb24 100644 --- a/2023/14-04-23.md +++ b/2023/14-04-23.md @@ -3,35 +3,39 @@ The Very Good CLI CONTRIBUTING.md got a major upgrade this week. Other tools had various fixes and updates. ## very_good_cli + - fix(test): failure when golden files have a space in the name #651 (@kirpal) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/651 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/651 - fix: support ignoring empty globs #704 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/704 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/704 - refactor: ensure temporary test directories are deleted #713 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/713 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/713 - docs: updated CONTRIBUTING.md #715 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/715 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/715 - chore: v0.13.1 #718 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/718 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/718 - docs(CONTRIBUTING): quick grammar change #723 (@scarletteliza) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/723 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/723 ## dart_frog + - fix: filter out error messages from killing the server process #592 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/592 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/592 - chore(dart_frog_cli): 0.3.5 #598 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/598 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/598 - fix(dart_frog): Response.json() overwrites content-type header #604 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/604 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/604 - fix(dart_frog): Pipeline does not maintain RequestContext #605 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/605 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/605 ## pub_updater + - fix!: avoid false negatives when the current version is a pre-release and there is a prior stable release on pub #42 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/42 + - https://github.com/VeryGoodOpenSource/pub_updater/pull/42 - chore: v0.3.0 #44 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/44 + - https://github.com/VeryGoodOpenSource/pub_updater/pull/44 ## awesome_dart_frog + - docs: add distributed tracing article #9 (@scarletteliza) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/9 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/9 diff --git a/2023/14-08-23.md b/2023/14-08-23.md new file mode 100644 index 0000000..659edc5 --- /dev/null +++ b/2023/14-08-23.md @@ -0,0 +1,43 @@ +# Very Good Changelog (08-14-2023) + +Work continues on Dart Frog 1.0 with features and fixes + +## dart_frog + +- chore: add topics ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/901 +- chore(dart_frog_gen): v1.1.0 ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/886 +- refactor(vscode): rename command prefix to "dart-frog" ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/895 +- feat: auth context api proposal ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/879 +- chore: change dependabot updates ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/897 + +## awesome_dart_frog + +- docs: update README.md ([@scarletteliza](https://github.com/scarletteliza)) + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/13 +- Add Dart Frog crash course video and update articles section ([@Muhammed-Ayad](https://github.com/Muhammed-Ayad)) + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/12 + +## very_good_cli + +- fix!: remove analytics ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/756 + +## very_good_hub + +- feat: auth area in the hub area. ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/8 + +## very_good_analysis + +- docs: update complete list of options's link to v5.0.0 ([@AhmedLSayed9](https://github.com/AhmedLSayed9)) + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/82 + +## pub_updater + +- fix(hosted-url): activation of package on self-hosted url ([@zoocityboy](https://github.com/zoocityboy)) + - https://github.com/VeryGoodOpenSource/pub_updater/pull/46 diff --git a/2023/15-05-23.md b/2023/15-05-23.md index c9274a0..b7bf45f 100644 --- a/2023/15-05-23.md +++ b/2023/15-05-23.md @@ -3,33 +3,39 @@ This week we worked on a new Dart Frog functionality, started to add uninstall to cli_completion and did some internal refactor work. Very Good CLI with full support for Dart 2.19 is out. ## dart_frog + - feat(dart_frog_cli): add dart_frog_new_brick for routes ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/623 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/623 - docs: remove double spacing ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/635 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/635 - chore: bump dart_frog_gen version on bricks ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/636 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/636 ## very_good_cli + - chore: v0.14.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/733 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/733 ## very_good_wear_app + - chore: update vg analysis on e2e and move e2e ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/23 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/23 ## flame_behaviors + - feat(flame_behaviors)!: migrate to flame v1.7.0 ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/43 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/43 - fix(flame_behaviors): make `PropagatingCollisionBehavior` more open ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/42 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/42 ## cli_completion + - refactor: added `ScriptConfigurationEntry` ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/69 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/69 - refactor: used enhanced enum for system shell name ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/67 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/67 ## very_good_core + - fix: use correct app label ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/266 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/266 diff --git a/2023/17-01-23.md b/2023/17-01-23.md index 837358b..3af6a1e 100644 --- a/2023/17-01-23.md +++ b/2023/17-01-23.md @@ -1,112 +1,120 @@ # Very Good Changelog (01-17-2023) -​ + ## very_good_cli + - chore: bump dependencies (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/622 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/622 - feat: support Flutter test's --platform flag (@mtwichel) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/620 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/620 - feat(create)! subcommand: Very Good Flame Game Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/589 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/589 - feat: create flame game new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/618 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/618 - feat(create)! subcommand: Very Good Flutter Plugin Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/587 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/587 - feat: create flutter plugin new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/617 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/617 - feat: create flutter package new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/616 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/616 - feat(create)! subcommand: Very Good Flutter Package Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/586 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/586 - feat: create docs site new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/614 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/614 - feat(create)! subcommand: Very Good Docs Site Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/588 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/588 - feat: create dart cli new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/612 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/612 - feat(create)! subcommand: Very Good Dart CLI Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/585 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/585 - feat: create dart package new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/611 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/611 - feat(create)! subcommand: Very Good Dart Package Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/584 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/584 - feat: recreate flutter create with sub commands (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 - feat(create)! subcommand: Top Level Create Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 - feat(create)! subcommand: Very Good Core Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 - feat(create)!: use subcommands for different template types & Proxy (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 -- Remove Default Splash Screen (@NurRozikin) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 -- feat(test): add --reporter to output in JSON (@jackgllghr) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/473 -​ + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 +- Remove Default Splash Screen (@NurRozikin) + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 +- feat(test): add --reporter to output in JSON (@jackgllghr) - https://github.com/VeryGoodOpenSource/very_good_cli/pull/473 + ​ + ## very_good_core + - fix: use the correct description variable in src/my_app/web/index.html (@ycchuang305) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/212 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/212 - chore: v0.1.10 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/219 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/219 - fix(brick): pre_gen.dart recase extension fix (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/218 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/218 - chore: v0.1.9 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/214 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/214 - feat: upgrade to Flutter 3.3.10 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/216 -- chore(brick): upgrade to mason v0.1.0-dev.40 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/215 -​ + - https://github.com/VeryGoodOpenSource/very_good_core/pull/216 +- chore(brick): upgrade to mason v0.1.0-dev.40 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_core/pull/215 + ​ + ## dart_frog + - feat: broadcast to only selected client (@Anas35) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/458 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/458 - chore(dart_frog): v0.3.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/471 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/471 - feat(dart_frog): cache body for Request and Response (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/470 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/470 - feat: be able to read body more than once on Request and Response (@jaumard) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/468 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/468 - feat: http method specification per handler (@tomassasovsky) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/57 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/57 - feat: minimalistic build result (@Tienisto) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/446 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/446 - chore(web_socket_counter): upgrade to dart_frog_web_socket ^0.1.0-dev.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/466 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/466 - fix: shelf_web_socket (@MattiaPispisa) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/463 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/463 - chore(dart_frog_web_socket): v0.1.0-dev.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/465 -- fix(dart_frog_web_socket): upgrade to shelf_web_socket ^1.0.3 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/464 -​ + - https://github.com/VeryGoodOpenSource/dart_frog/pull/465 +- fix(dart_frog_web_socket): upgrade to shelf_web_socket ^1.0.3 (@felangel) - https://github.com/VeryGoodOpenSource/dart_frog/pull/464 + ​ + ## cli_completion -- chore: v0.2.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/46 -​ + +- chore: v0.2.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/cli_completion/pull/46 + ​ + ## very_good_workflows -- fix: version mismatch error in github actions (@JakeHadley) - - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/93 -​ + +- fix: version mismatch error in github actions (@JakeHadley) - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/93 + ​ + ## very_good_performance + - docs: add archive warning to README (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_performance/pull/28 + - https://github.com/VeryGoodOpenSource/very_good_performance/pull/28 - docs: fix typo in README.md (@0xba1) - - https://github.com/VeryGoodOpenSource/very_good_performance/pull/24 -- Support additional metrics (@KyleFin) - - https://github.com/VeryGoodOpenSource/very_good_performance/issues/23 -​ + - https://github.com/VeryGoodOpenSource/very_good_performance/pull/24 +- Support additional metrics (@KyleFin) - https://github.com/VeryGoodOpenSource/very_good_performance/issues/23 + ​ + ## very_good_ranch -- docs: add archive disclaimer to README (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_ranch/pull/245 -​ + +- docs: add archive disclaimer to README (@felangel) - https://github.com/VeryGoodOpenSource/very_good_ranch/pull/245 + ​ + ## flame_behaviors -- fix!: update flame dependency to v1.6.0 (@BBarisKilic) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/35 -​ -## _very_good_chores + +- fix!: update flame dependency to v1.6.0 (@BBarisKilic) - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/35 + ​ + +## \_very_good_chores + - archive very_good_performance (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/47 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/47 - archive very_good_ranch (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/48 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/48 - WebSocket Example + Tutorial (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/39 - \ No newline at end of file + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/39 diff --git a/2023/17-03-23.md b/2023/17-03-23.md index 5153aa8..556fe40 100644 --- a/2023/17-03-23.md +++ b/2023/17-03-23.md @@ -3,65 +3,76 @@ A huge highlight from this week was publishing [Renan's blog about building Wear OS apps with Flutter](https://verygood.ventures/blog/building-wear-os-apps-with-flutter-a-very-good-guide). We also created very good Wear OS template with the goal of adding it to Very Good CLI. ## very_good_cli + - fix(test_optimizer): order files on pregen to guarantee consistency #681 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/681 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/681 - test: stop testing test path and identifier ordering #685 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/685 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/685 ## dart_frog + - feat(dart_frog): add SecurityContext named argument to serve method #563 (@unger1984) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/563 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/563 ## very_good_workflows17-0 + - chore: update examples #104 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/104 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/104 ## very_good_flutter_plugin + - chore: support dart sdk 2.18.0 #94 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/94 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/94 - fix: updated pana workflow regex matching #95 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/95 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/95 ## very_good_dart_package + - chore: support dart sdk 2.18.0 #46 (alestiago) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/46 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/46 - fix: patch version downgrade #49 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/49 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/49 ## very_good_flutter_package + - chore: support dart sdk 2.18.0 #49 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/49 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/49 ## very_good_flame_game + - chore: support dart sdk 2.18.0 #77 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/77 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/77 ## very_good_dart_cli + - chore: support dart sdk 2.18.0 #89 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/89 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/89 ## very_good_core + - feat: add template application base #252 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/252 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/252 - chore: support dart sdk 2.18.0 #253 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/253 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/253 ## very_good_wear_app + - chore: add brick #2 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/2 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/2 - feat: add template application base #3 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/3 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/3 - feat: add brick generator #4 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/4 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/4 - docs: add readmes and docs #5 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/5 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/5 ## very_good_coverage + - feat: include better error logging #235 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/235 + - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/235 - docs: update README.md inputs and FAQ #236 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/236 + - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/236 - fix: avoid reporting NaN coverage #237 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/237 + - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/237 - docs: included documentation about absolute path #238 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/238 + - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/238 diff --git a/2023/17-07-23.md b/2023/17-07-23.md index 347da1f..c2e52f2 100644 --- a/2023/17-07-23.md +++ b/2023/17-07-23.md @@ -3,19 +3,21 @@ Many more updates to Dart Frog incoming! ## dart_frog + - feat(vscode): add update-cli command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/751 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/751 - ci(vscode): add dependabot ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/754 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/754 - refactor(vscode): defined isDartFrogCliInstalled ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/748 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/748 - feat(vscode): add CLI version compatibility functions ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/747 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/747 - feat(vscode): ensure dart_frog_cli is installed when used ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/726 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/726 - feat(vscode): adds new-middleware command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/727 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/727 ## very_good_workflows + - feat: update get started button in nav ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/127 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/127 diff --git a/2023/18-09-23.md b/2023/18-09-23.md index 961835b..7e5edad 100644 --- a/2023/18-09-23.md +++ b/2023/18-09-23.md @@ -1,153 +1,167 @@ # Very Good Changelog (09-18-2023) -Updates on all Templates and Very good CLI. A new Dart Frog VSCode extension version is cooking. +Updates on all Templates and Very good CLI. A new Dart Frog VSCode extension version is cooking. ## very_good_flame_game + - chore: v0.4.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/117 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/117 - fix: text style tests for `CounterComponent` ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/112 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/112 - chore: update mason, add runner tests, gradlew, update metadata, ignored files, and depdendencies ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/111 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/111 - fix: Update flame and correct tests ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/109 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/109 ## dart_frog + - feat(vscode): implemented quickPickProject ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1025 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1025 - docs(vscode): add disclaimer to the extension ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1047 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1047 - chore(dart_frog_cli): v1.1.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1049 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1049 - fix(dart_frog_cli): prevent staggered devserver kills ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1048 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1048 - docs: add daemon request format warning ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1045 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1045 - fix(vscode): support CodeLens for very long route signatures ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1046 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1046 - fix(vscode): support async route handlers ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1041 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1041 - fix(vscode): detach from debug session on premature application exit ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1043 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1043 - chore(vscode): remove new-route-middleware.gif ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1039 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1039 - refactor(vscode): split Dart Frog project resolution into workspace and editor ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1018 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1018 - chore(vscode): 0.2.1 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1036 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1036 - docs: update Attach Debugger roadmap item ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1032 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1032 - chore(depandabot): avoid updating types/vscode ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1034 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1034 - chore(vscode): rollback engines.vscode version ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1035 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1035 - docs(vscode): update README.md ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1031 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1031 - chore(vscode): request code ownership on vscode ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1028 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1028 - chore(vscode): 0.2.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1029 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1029 - test(vscode): simplify start-dev-server tests ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1027 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1027 - feat(vscode): implemented nearestChildDartFrogProjects ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1015 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1015 - refactor(vscode): rename nearestDartFrogProject to nearestParentDartFrogProject ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/1014 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1014 ## mockingjay + - chore: update Very Good Analysis to 5.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/mockingjay/pull/57 + - https://github.com/VeryGoodOpenSource/mockingjay/pull/57 ## flutter_web_preloader + - chore: update mocktail to 1.0.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/18 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/18 - chore: include dependabot ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/17 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/17 - chore: update mason to 0.1.0-dev.50 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/15 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/15 - chore: update Very Good Analysis to 5.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/16 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/16 ## very_good_docs_site + - chore: v0.0.1+7 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/133 + - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/133 ## very_good_cli + - chore: finish updating Very Good Analysis to 5.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/792 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/792 - build: run e2e tests on latest version of flutter ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/783 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/783 - docs: update readme headline ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/786 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/786 - chore: update dependabot ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/784 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/784 - chore: update dependencies and SDK constraints on sub packages and fixtures ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/785 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/785 - chore: update dependencies and sdk constraints ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/782 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/782 - fix: pass `org_name` to the plugin template ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/777 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/777 - chore: update pubspec meta info ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/778 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/778 - chore: request codeowner to erickzanardo ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/779 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/779 ## formz + - chore(docs): wrong docs ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/formz/pull/106 + - https://github.com/VeryGoodOpenSource/formz/pull/106 - chore: update Very Good Analysis to 5.1.0 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/formz/pull/104 + - https://github.com/VeryGoodOpenSource/formz/pull/104 - chore: update Flutter version workflow to 3.13.3 ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/formz/pull/105 + - https://github.com/VeryGoodOpenSource/formz/pull/105 ## very_good_wear_app + - chore: v0.3.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/37 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/37 - docs: Update usage on README.md ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/36 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/36 - fix: project doesn't build due to kotlin gradle plugin incompatibility ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/32 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/32 - chore: update analysis, update ignored files, add gradlew, update mason ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/33 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/33 ## very_good_core + - chore: v0.4.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/291 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/291 - chore: bump mason ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/290 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/290 - chore: restore vscode ignored files ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/288 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/288 ## very_good_coverage + - chore: request code ownership ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/284 + - https://github.com/VeryGoodOpenSource/very_good_coverage/pull/284 ## very_good_dart_cli + - chore: v0.5.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/114 -- chore: update analysis, and mason ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/112 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/114 +- chore: update analysis, and mason ([@renancaraujo](https://github.com/renancaraujo)) + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/112 ## very_good_flutter_plugin + - chore: v0.6.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/136 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/136 - docs: integration tests ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/133 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/133 - docs: update readme redirecting usage to the cli website ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/132 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/132 - feat: update dependencies ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/130 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/130 - fix: flaky integrated tests ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/125 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/125 ## very_good_flutter_package + - chore: v0.4.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/69 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/69 - chore: update analysis, mason and readme ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/67 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/67 ## very_good_dart_package + - chore: v0.4.1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/69 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/69 - chore: update analysis, mason and readme ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/67 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/67 diff --git a/2023/20-01-23.md b/2023/20-01-23.md index 25df2a8..731693a 100644 --- a/2023/20-01-23.md +++ b/2023/20-01-23.md @@ -1,142 +1,152 @@ # Very Good Changelog (01-20-2023) -​ + ## very_good_cli + - feat: change description of create sub commands (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/625 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/625 - fix: --org-name on docs site template is not what it means (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/615 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/615 - fix(create): docs site template org validation (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/624 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/624 - Update Blog Posts and Documentation (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/581 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/581 - chore: v0.10.0 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/623 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/623 - docs: update "create" documentation (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/621 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/621 - chore: bump dependencies (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/622 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/622 - feat: support Flutter test's --platform flag (@mtwichel) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/620 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/620 - feat(create)! subcommand: Very Good Flame Game Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/589 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/589 - feat: create flame game new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/618 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/618 - feat(create)! subcommand: Very Good Flutter Plugin Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/587 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/587 - feat: create flutter plugin new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/617 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/617 - feat: create flutter package new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/616 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/616 - feat(create)! subcommand: Very Good Flutter Package Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/586 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/586 - feat: create docs site new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/614 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/614 - feat(create)! subcommand: Very Good Docs Site Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/588 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/588 - feat: create dart cli new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/612 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/612 - feat(create)! subcommand: Very Good Dart CLI Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/585 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/585 - feat: create dart package new usage (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/611 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/611 - feat(create)! subcommand: Very Good Dart Package Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/584 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/584 - feat: recreate flutter create with sub commands (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/607 - feat(create)! subcommand: Top Level Create Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/583 - feat(create)! subcommand: Very Good Core Usage (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/582 - feat(create)!: use subcommands for different template types & Proxy (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 -- Remove Default Splash Screen (@NurRozikin) - - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 -​ + - https://github.com/VeryGoodOpenSource/very_good_cli/issues/490 +- Remove Default Splash Screen (@NurRozikin) - https://github.com/VeryGoodOpenSource/very_good_cli/issues/486 + ​ + ## r13n + - chore(brick): v0.1.0-dev.7 (@felangel) - - https://github.com/VeryGoodOpenSource/r13n/pull/35 + - https://github.com/VeryGoodOpenSource/r13n/pull/35 - fix(brick): only format arb directory in post_gen hook (@felangel) - - https://github.com/VeryGoodOpenSource/r13n/pull/34 -- fix: Calling 'mason make r13n' fails when mason templates exist (@b-nugent) - - https://github.com/VeryGoodOpenSource/r13n/issues/33 -​ + - https://github.com/VeryGoodOpenSource/r13n/pull/34 +- fix: Calling 'mason make r13n' fails when mason templates exist (@b-nugent) - https://github.com/VeryGoodOpenSource/r13n/issues/33 + ​ + ## very_good_ranch -- docs: add archive disclaimer to README (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_ranch/pull/245 -​ + +- docs: add archive disclaimer to README (@felangel) - https://github.com/VeryGoodOpenSource/very_good_ranch/pull/245 + ​ + ## dart_frog + - docs(routes): include nested dynamic routes (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/478 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/478 - feat: Able to identify Dart on dart_frog projects using Android Studio (@marcellocamara) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/477 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/477 - feat: Dynamic nested routes (@chanan) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/476 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/476 - feat: Ability to read providers defined in previous middleware (@chanan) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/475 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/475 - feat: broadcast to only selected client (@Anas35) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/458 + - https://github.com/VeryGoodOpenSource/dart_frog/issues/458 - chore(dart_frog): v0.3.2 (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/471 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/471 - feat(dart_frog): cache body for Request and Response (@felangel) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/470 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/470 - feat: be able to read body more than once on Request and Response (@jaumard) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/468 -- feat: http method specification per handler (@tomassasovsky) - - https://github.com/VeryGoodOpenSource/dart_frog/issues/57 -​ + - https://github.com/VeryGoodOpenSource/dart_frog/issues/468 +- feat: http method specification per handler (@tomassasovsky) - https://github.com/VeryGoodOpenSource/dart_frog/issues/57 + ​ + ## very_good_core + - fix: use the correct description variable in src/my_app/web/index.html (@ycchuang305) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/212 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/212 - chore: v0.1.10 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/219 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/219 - fix(brick): pre_gen.dart recase extension fix (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/218 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/218 - chore: v0.1.9 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/214 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/214 - feat: upgrade to Flutter 3.3.10 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/216 -- chore(brick): upgrade to mason v0.1.0-dev.40 (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/215 -​ + - https://github.com/VeryGoodOpenSource/very_good_core/pull/216 +- chore(brick): upgrade to mason v0.1.0-dev.40 (@felangel) - https://github.com/VeryGoodOpenSource/very_good_core/pull/215 + ​ + ## cli_completion -- chore: v0.2.0 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/46 -​ + +- chore: v0.2.0 (@renancaraujo) - https://github.com/VeryGoodOpenSource/cli_completion/pull/46 + ​ + ## very_good_workflows -- fix: version mismatch error in github actions (@JakeHadley) - - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/93 -​ + +- fix: version mismatch error in github actions (@JakeHadley) - https://github.com/VeryGoodOpenSource/very_good_workflows/issues/93 + ​ + ## very_good_performance + - docs: add archive warning to README (@felangel) - - https://github.com/VeryGoodOpenSource/very_good_performance/pull/28 + - https://github.com/VeryGoodOpenSource/very_good_performance/pull/28 - docs: fix typo in README.md (@0xba1) - - https://github.com/VeryGoodOpenSource/very_good_performance/pull/24 -- Support additional metrics (@KyleFin) - - https://github.com/VeryGoodOpenSource/very_good_performance/issues/23 -​ + - https://github.com/VeryGoodOpenSource/very_good_performance/pull/24 +- Support additional metrics (@KyleFin) - https://github.com/VeryGoodOpenSource/very_good_performance/issues/23 + ​ + ## flame_behaviors + - docs: fix coverage badge url (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/36 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/36 - docs: rework docs into its own directory (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/30 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/30 - docs: enhance documentation based on feedback (@wolfenrain) - - https://github.com/VeryGoodOpenSource/flame_behaviors/issues/25 -- fix!: update flame dependency to v1.6.0 (@BBarisKilic) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/35 -​ + - https://github.com/VeryGoodOpenSource/flame_behaviors/issues/25 +- fix!: update flame dependency to v1.6.0 (@BBarisKilic) - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/35 + ​ + ## pub_updater -- feat: add version constraints to update method (@renancaraujo) - - https://github.com/VeryGoodOpenSource/pub_updater/pull/37 -​ -## _very_good_chores + +- feat: add version constraints to update method (@renancaraujo) - https://github.com/VeryGoodOpenSource/pub_updater/pull/37 + ​ + +## \_very_good_chores + - Code Review Photobooth V2 (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/46 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/46 - spike: Dart Frog Api Client Generation (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/20 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/20 - archive very_good_performance (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/47 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/47 - archive very_good_ranch (@BeatriceMitchell) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/48 + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/48 - WebSocket Example + Tutorial (@felangel) - - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/39 - \ No newline at end of file + - https://github.com/VeryGoodOpenSource/_very_good_chores/issues/39 diff --git a/2023/22-02-23.md b/2023/22-02-23.md index dcf18fc..d196dca 100644 --- a/2023/22-02-23.md +++ b/2023/22-02-23.md @@ -1,39 +1,46 @@ # Very Good Changelog (02-22-2023) ## very_good_core + - chore: v0.1.14 (@felangel) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/244 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/244 - fix: flutter version on github workflow (@ianmaciel) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/243 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/243 - feat: update workflows, add spellcheck (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/241 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_core/issues/241 + +## \_very_good_chores -## _very_good_chores - feat: dart firebase functions template - Add to CLI (@BeatriceMitchell) - - https://api.github.com/repos/VeryGoodOpenSource/_very_good_chores/issues/44 + - https://api.github.com/repos/VeryGoodOpenSource/_very_good_chores/issues/44 - feat: dart firebase functions template - Create Template (@felangel) - - https://api.github.com/repos/VeryGoodOpenSource/_very_good_chores/issues/43 + - https://api.github.com/repos/VeryGoodOpenSource/_very_good_chores/issues/43 ## very_good_flutter_package + - fix: flutter version on github workflow (@ianmaciel) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_flutter_package/issues/44 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_flutter_package/issues/44 ## very_good_dart_package + - feat: update workflows, add spellcheck (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_dart_package/issues/41 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_dart_package/issues/41 ## r13n + - feat: update very good analysis to 4.0.0 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/40 + - https://api.github.com/repos/VeryGoodOpenSource/r13n/issues/40 ## flame_steering_behaviors + - chore: repo maintenance (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/flame_steering_behaviors/issues/23 + - https://api.github.com/repos/VeryGoodOpenSource/flame_steering_behaviors/issues/23 ## very_good_bricks + - docs: feature api with resource client & add it to manson.yaml (@jdebecka) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/26 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/26 - feat: illustrate pr #564 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/76 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/76 - feat: illustrate pr #563 (@renancaraujo) - - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/75 + - https://api.github.com/repos/VeryGoodOpenSource/very_good_bricks/issues/75 diff --git a/2023/22-05-23.md b/2023/22-05-23.md index 54cb5e1..c67afbd 100644 --- a/2023/22-05-23.md +++ b/2023/22-05-23.md @@ -1,59 +1,66 @@ # Very Good Changelog (05-22-2023) -This week we released Very Good Analysis v5.0.0 which includes some new lint rules from Dart 3. We also shipped the "new" command to Dart Frog, allowing you to create a new route or new middleware. +This week we released Very Good Analysis v5.0.0 which includes some new lint rules from Dart 3. We also shipped the "new" command to Dart Frog, allowing you to create a new route or new middleware. ## very_good_workflows + - feat: add `format_line_length` input ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/114 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/114 - feat: Add `format_directories` option ([@pablojimpas](https://github.com/pablojimpas)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/113 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/113 - chore: v1.13.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/116 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/116 ## dart_frog + - docs: add `new` command reference ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/651 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/651 - chore(dart_frog_cli): v0.3.6 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/650 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/650 - chore: point bundle generation to the main branch ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/649 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/649 - chore: add e2e to the `new` command ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/641 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/641 - feat(dart_frog_cli): add new command to the cli ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/625 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/625 - feat(dart_frog_cli): add dart_frog_new_brick (middleware implementation) ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/624 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/624 ## very_good_analysis + - chore: v5.0.0+1 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/78 -- docs: update `README` for v5 ([@SuhwanCha](https://github.com/SuhwanCha)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/77 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/78 +- docs: update `README` for v5 ([@SuhwanCha](https://github.com/SuhwanCha)) + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/77 - chore: update changelog for v5 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/76 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/76 - feat: v5.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/73 + - https://github.com/VeryGoodOpenSource/very_good_analysis/pull/73 ## very_good_flutter_plugin + - chore: analyze the hook ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/117 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/117 ## cli_completion + - feat: include `UnistallCompletionFilesCommand` ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/72 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/72 - feat: include uninstallation logic ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/70 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/70 - feat: included `CompletionConfiguration` class ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/71 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/71 ## very_good_core + - feat!: Update to Flutter 3.10.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/270 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/270 - chore: move e2e ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/268 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/268 ## very_good_dart_cli + - feat: update very good analysis to v5 and fix patch ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/104 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/104 - chore: bump Dart SDK to >=3.0.0 <4.0.0 ([@lsaudon](https://github.com/lsaudon)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/101 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/101 diff --git a/2023/24-03-23.md b/2023/24-03-23.md index cd72985..b55c8ee 100644 --- a/2023/24-03-23.md +++ b/2023/24-03-23.md @@ -1,95 +1,109 @@ # Very Good Changelog (03-24-2023) -Lots of chores this week and quality of life updates to our repos. +Lots of chores this week and quality of life updates to our repos. ## very_good_cli + - test: validated test command running on the minimal dart SDK #679 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/679 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/679 - test: add flutter plugin e2e test #687 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/687 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/687 - test: increase flame_game_test e2e timeout #695 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/695 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/695 - docs(site): update commands docs #697 (@alestiago) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/697 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/697 - chore: v0.12.3 #698 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/698 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/698 - ci: fix dart e2e workflows #699 (renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/699 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/699 ## dart_frog + - chore(dart_frog): v0.3.5 #583 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/583 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/583 - chore: adding erick as codeowner #584 (@erickzanardo) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/584 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/584 ## formz + - feat: add purety check to FormzMixin #87 (@Toavina23) - - https://github.com/VeryGoodOpenSource/formz/pull/87 + - https://github.com/VeryGoodOpenSource/formz/pull/87 - chore: v0.6.0 #88 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/formz/pull/88 + - https://github.com/VeryGoodOpenSource/formz/pull/88 ## very_good_flutter_plugin + - chore: v0.3.3 #109 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/109 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/109 ## very_good_flame_game + - ci: run workflows on correct flutter version #82 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/82 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/82 - chore: v0.1.3 #83 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/83 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/83 ## very_good_dart_package + - ci: generate template workflow dispatch #51 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/51 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/51 - chore: v0.2.5 #52 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/52 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/52 ## very_good_flutter_package + - ci: run workflows on correct flutter version #53 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/53 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/53 - chore: v0.2.6 #54 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/54 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/54 ## very_good_dart_cli + - chore: v0.3.3 #92 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/92 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/92 ## very_good_wear_app + - chore: add e2e test #9 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/9 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/9 - chore: v0.0.1 #10 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/10 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/10 - chore: v0.0.1 #11 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/11 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/11 - chore: fix generator run #107 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/107 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/107 - ci: run workflows on correct flutter version #15 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/15 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/15 - docs: fixed VeryGoodCore typo #16 (alestiago) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/16 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/16 ## very_good_core + - test: included golden e2e test #247 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/247 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/247 - chore: downgrade workflow flutter runtime version #256 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/256 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/256 - chore: v0.1.15 #257 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/257 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/257 ## very_good_docs_site + - chore: v0.0.1+5 #80 (renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/80 + - https://github.com/VeryGoodOpenSource/very_good_docs_site/pull/80 ## flutter_web_preloader + - doc: adding readme content #3 (@erickzanardo) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/3 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/3 ## changelogs + - chore: Create 03-10-2023 #7 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/changelogs/pull/7 + - https://github.com/VeryGoodOpenSource/changelogs/pull/7 ## awesome_dart_frog + - docs: add talk stream to open source repos #6 (@yczar) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/6 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/6 - docs: add talkstream to open source repositories #7 (@yczar) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/7 \ No newline at end of file + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/7 diff --git a/2023/24-04-23.md b/2023/24-04-23.md index 23e51c7..18f98e3 100644 --- a/2023/24-04-23.md +++ b/2023/24-04-23.md @@ -3,19 +3,23 @@ This week we released v0.3.6 of Dart Frog, which includes some important bug fixes. ## dart_frog + - chore(dart_frog): 0.3.6 ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/609 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/609 - fix(dart_frog): `Response.json()` overwrites `content-type` header ([@easazade](https://github.com/easazade)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/596 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/596 ## very_good_cli + - docs(README): add wear os app command ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/716 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/716 ## very_good_workflows + - ci: add the check-ignore flag in dart coverage ([@kmartins](https://github.com/kmartins)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/107 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/107 ## cli_completion + - docs: update readme with a troubleshooting section ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/63 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/63 diff --git a/2023/24-07-23.md b/2023/24-07-23.md index 8979120..4f3fa4b 100644 --- a/2023/24-07-23.md +++ b/2023/24-07-23.md @@ -1,51 +1,55 @@ # Very Good Changelog (07-24-2023) -Dart Frog v0.3.8 was released as we gear up for exciting future releases. +Dart Frog v0.3.8 was released as we gear up for exciting future releases. ## very_good_core + - docs: translation generation in README.md ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/280 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/280 ## very_good_cli + - docs: standardize navbar styling ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/755 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/755 ## dart_frog + - chore: fix status badges of packages ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/793 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/793 - chore(dart_frog_cli): v0.3.9 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/792 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/792 - fix(dart_frog_cli): Remove multiple EOL when creating route or middleware ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/791 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/791 - fix: Remove multiple EOL when creating route or middleware ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/790 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/790 - feat: enable asserts when running dart_frog dev ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/766 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/766 - feat(dart_frog_cli): update prod server bundle ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/787 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/787 - ci: fix publish workflow ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/788 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/788 - chore(dart_frog): v0.3.8 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/786 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/786 - refactor(bearer_authentication): lint warnings on auth examples ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/785 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/785 - feat(dart_frog_cli): start daemon implementation ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/749 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/749 - feat(vscode): defined workspaceContains pubspec.yaml activation event ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/761 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/761 - feat: adds Response Moved Permanently ([@AyadLaouissi](https://github.com/AyadLaouissi)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/771 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/771 - feat(vscode): include create command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/767 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/767 - ci: add `publish` workflow ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/731 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/731 - feat(dart_frog_cli): add devserver lifecycle ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/730 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/730 - feat(vscode): suggest installing Dart Frog CLI instead of silently installing ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/755 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/755 - feat(vscode): ensure CLI version is compatible ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/752 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/752 ## very_good_workflows + - feat: add ssh key setup step ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/131 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/131 diff --git a/2023/26-06-23.md b/2023/26-06-23.md index 18a65c7..29e1487 100644 --- a/2023/26-06-23.md +++ b/2023/26-06-23.md @@ -3,25 +3,26 @@ Focused on features & fixes for Dart Frog. ## dart_frog + - docs: standardize styling to match other docs sites ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/719 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/719 - feat(dart_frog_cli): add `dart_frog daemon` command ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/712 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/712 - docs(vscode): include CONTRIBUTING.md ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/716 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/716 - feat(vscode): add new-route command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/714 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/714 - chore(vscode): include 80 line maximum lint rule ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/722 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/722 - ci(vscode): fix workflow typo ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/721 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/721 - ci(vscode): include workflow ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/718 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/718 - feat(vscode): includes extension testing setup ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/717 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/717 - feat(vscode): create Visual Studio Code extension project ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/713 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/713 - feat: adding dart_frog_auth package. ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/690 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/690 - chore(dart_frog_cli): v0.3.8 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/706 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/706 diff --git a/2023/28-08-23.md b/2023/28-08-23.md index e46c3f4..09edbcf 100644 --- a/2023/28-08-23.md +++ b/2023/28-08-23.md @@ -3,47 +3,49 @@ Lots of dart_frog work ## very_good_hub + - feat: adding post domain ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/13 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/13 - feat: adding JWT signing to auth tokens ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/12 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/12 - chore: bumping dart frog auth ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/11 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/11 - feat: refactoring for better common code sharing ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/very_good_hub/pull/10 + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/10 ## dart_frog + - feat(vscode): allow attaching development server to Dart debugger ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/955 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/955 - chore: update dart_frog_gen version ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/902 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/902 - refactor(vscode): allow quickPickApplication to be shared ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/956 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/956 - docs: dart frog auth context documentation ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/887 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/887 - feat(vscode): allow stopping development server ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/953 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/953 - fix(bricks): analyser warnings at dart-frog-new hooks ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/954 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/954 - ci: add release script for VS Code ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/880 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/880 - feat(dart_frog_cli): support lowercase r to reload ([@Yczar](https://github.com/Yczar)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/900 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/900 - feat(dart_frog): add optional shared parameter to serve function ([@femalemonkeyman](https://github.com/femalemonkeyman)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/908 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/908 - feat(vscode): allow starting development server ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/952 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/952 - chore(vscode): include license in packages.json ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/896 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/896 - docs(dart_frog): corrected serve function documentation typo ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/939 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/939 - fix: e2e tests and lint fixes ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/942 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/942 - feat(vscode): allow starting the daemon via command ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/943 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/943 - fix: auth topics ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/949 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/949 - chore(dart_frog_auth): 1.1.0 ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/948 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/948 - fix(dart_frog): comply with new analysis rules ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/940 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/940 diff --git a/2023/29-05-23.md b/2023/29-05-23.md index 96a566f..637f340 100644 --- a/2023/29-05-23.md +++ b/2023/29-05-23.md @@ -3,79 +3,91 @@ Dart Frog turned one year old this week! We also released Very Good CLI v0.15.0 with all templates upgraded to Dart 3. ## dart_frog + - docs: include `CONTRIBUTING.md` for dart_frog_cli ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/648 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/648 - chore(examples): Update to dart 3.0.0 and vg analysis to 5.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/655 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/655 - feat(dart_frog_cli): Update to dart 3.0.0 and vg analysis to 5.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/654 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/654 - refactor(dart_frog_cli): do not mock process result ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/652 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/652 ## very_good_core + - chore: v0.3.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/274 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/274 - feat: update bloc ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_core/pull/272 + - https://github.com/VeryGoodOpenSource/very_good_core/pull/272 ## very_good_flutter_plugin + - chore: v0.5.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/122 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/122 - chore: standardize flutter version ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/120 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/120 - feat: update to dart 3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/118 + - https://github.com/VeryGoodOpenSource/very_good_flutter_plugin/pull/118 ## very_good_cli + - chore: v0.15.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/745 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/745 - chore: add publish_to to test optimizer brick ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/665 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/665 - feat!: increase min sdk constraint to 3.0.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/744 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/744 - feat: remove deprecated legacy `create` syntax ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/693 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/693 - fix: dont crash on test compilation error ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/739 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/739 ## very_good_wear_app + - chore: v0.2.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/26 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/26 - feat!: update to dart 3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/24 + - https://github.com/VeryGoodOpenSource/very_good_wear_app/pull/24 ## very_good_flame_game + - docs: update create command snippet ([@ChristianEdwardPadilla](https://github.com/ChristianEdwardPadilla)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/102 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/102 - chore: v0.3.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/101 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/101 - feat!: update to dart 3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/99 + - https://github.com/VeryGoodOpenSource/very_good_flame_game/pull/99 ## cli_completion + - feat: avoid autoinstalling manually uninstalled commands ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/cli_completion/pull/73 + - https://github.com/VeryGoodOpenSource/cli_completion/pull/73 ## flame_behaviors + - chore(flame_behaviors): v0.3.0 ([@wolfenrain](https://github.com/wolfenrain)) - - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/45 + - https://github.com/VeryGoodOpenSource/flame_behaviors/pull/45 ## very_good_dart_package + - chore: v0.4.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/62 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/62 - feat!: update to dart 3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/60 + - https://github.com/VeryGoodOpenSource/very_good_dart_package/pull/60 ## awesome_dart_frog + - docs: Update README.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/10 + - https://github.com/VeryGoodOpenSource/awesome_dart_frog/pull/10 ## very_good_flutter_package + - chore: v0.4.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/62 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/62 - feat: update to dart 3 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/60 + - https://github.com/VeryGoodOpenSource/very_good_flutter_package/pull/60 ## very_good_dart_cli + - chore: v0.5.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/106 + - https://github.com/VeryGoodOpenSource/very_good_dart_cli/pull/106 diff --git a/2023/31-03-23.md b/2023/31-03-23.md index 37b9858..a70c818 100644 --- a/2023/31-03-23.md +++ b/2023/31-03-23.md @@ -3,41 +3,45 @@ This week we released Very Good CLI v0.13.0, which incorporates the very good Wear OS app template into the CLI. We also added custom init method support to Dart Frog. ## very_good_cli + - feat: add wear os template to the create command #694 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/694 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/694 - test: refactor e2e tests #700 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/700 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/700 - chore: v0.12.3+1 #701 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/701 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/701 - chore: v0.13.0 #709 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/709 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/709 - docs: wear os template #710 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/710 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/710 ## dart_frog + - feat(dart_frog_gen): detect custom init method #564 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/564 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/564 - chore(dart_frog_gen): 0.3.2 #586 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/586 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/586 - feat(dart_frog_cli): support custom init method #587 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/587 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/587 - chore(dart_frog_cli): 0.3.4 #588 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/588 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/588 - docs: add documentation about the init method #590 (@wolfenrain) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/590 - + - https://github.com/VeryGoodOpenSource/dart_frog/pull/590 + ## r13n + - test: e2e for r13n brick #45 (@alestiago) - - https://github.com/VeryGoodOpenSource/r13n/pull/45 + - https://github.com/VeryGoodOpenSource/r13n/pull/45 - chore: removed pubspec.lock #46 (@alestiago) - - https://github.com/VeryGoodOpenSource/r13n/pull/46 + - https://github.com/VeryGoodOpenSource/r13n/pull/46 ## flutter_web_preloader + - docs: fixed README.md typos #5 (@alestiago) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/5 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/5 - chore: v0.1.0 #6 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/6 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/6 - ci: add missing workflows #7 (@renancaraujo) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/7 + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/7 - docs: fix brick description #8 (@felangel) - - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/8 \ No newline at end of file + - https://github.com/VeryGoodOpenSource/flutter_web_preloader/pull/8 diff --git a/2023/31-07-23.md b/2023/31-07-23.md index 98d54c3..7f9381d 100644 --- a/2023/31-07-23.md +++ b/2023/31-07-23.md @@ -3,49 +3,52 @@ Lots of Dart Frog updates. Gearing up for something big this week πŸ‘€ ## dart_frog + - docs: update routes.md ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/825 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/825 - feat(vscode): show progress indicator on `new` commands ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/784 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/784 - fix(vscode): dart frog version parsing when update available ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/819 -- feat(vscode): new-route prompt asks for entire route path ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/782 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/819 +- feat(vscode): new-route prompt asks for entire route path ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/782 - fix(vscode): alter when command menu palette commands show ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/818 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/818 - feat: docs theming ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/810 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/810 - refactor(vscode): clear and improve logic for `new` commands ([@alestiago](https://github.com/alestiago)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/780 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/780 - docs: update dependencies in websocket counter example ([@jsgalarraga](https://github.com/jsgalarraga)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/808 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/808 - test(dart_frog_cli_e2e): add e2e tests for devserver domain ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/804 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/804 - feat: add devserver domain to daemon ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/802 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/802 - refactor(dart_frog_cli): abstract domain base ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/801 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/801 - docs: some theming updates ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/803 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/803 - feat(dart_frog_cli): daemon logger ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/783 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/783 - test(dart_frog_cli_e2e): improve process run output and fix intermittency ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/799 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/799 - docs: adding dart frog auth docs to the site ([@erickzanardo](https://github.com/erickzanardo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/772 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/772 - test(dart_frog_cli): add e2e infra for daemon ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/778 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/778 - chore(dart_frog_auth): v0.1.0 ([@renancaraujo](https://github.com/renancaraujo)) - - https://github.com/VeryGoodOpenSource/dart_frog/pull/794 + - https://github.com/VeryGoodOpenSource/dart_frog/pull/794 ## very_good_cli + - docs: update theming to match dart frog night mode ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/764 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/764 - docs: simplify footer ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_cli/pull/763 + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/763 ## very_good_workflows + - docs: update theming ([@scarletteliza](https://github.com/scarletteliza)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/137 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/137 - chore: delete `.DS_Store` ([@felangel](https://github.com/felangel)) - - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/136 + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/136 From 77d2305a7fa7bff03d9077aac697eb5ce6c4e468 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 10:40:00 -0500 Subject: [PATCH 4/4] feat: CHANGELOG for Aug 21, 2023 (#39) * feat: CHANGELOG for Aug 08, 2023 * add cspell config * notes and formatting * workflow update --------- Co-authored-by: scarletteliza Co-authored-by: Tom Arra --- .github/workflows/validate_pr.yaml | 2 +- .vscode/cspell.json | 7 ++++ 2023/21-08-23.md | 55 ++++++++++++++++++++++++++++++ 3 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 .vscode/cspell.json create mode 100644 2023/21-08-23.md diff --git a/.github/workflows/validate_pr.yaml b/.github/workflows/validate_pr.yaml index 240953f..e6a1c8a 100644 --- a/.github/workflows/validate_pr.yaml +++ b/.github/workflows/validate_pr.yaml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check Spelling uses: streetsidesoftware/cspell-action@v2 with: diff --git a/.vscode/cspell.json b/.vscode/cspell.json new file mode 100644 index 0000000..63c5c27 --- /dev/null +++ b/.vscode/cspell.json @@ -0,0 +1,7 @@ +{ + "version": "0.2", + "enabled": true, + "language": "en", + "words": ["felangel"], + "ignorePaths": [] +} diff --git a/2023/21-08-23.md b/2023/21-08-23.md new file mode 100644 index 0000000..cf3818c --- /dev/null +++ b/2023/21-08-23.md @@ -0,0 +1,55 @@ +# Very Good Changelog (08-21-2023) + +More Dart Frog Updates! + +## dart_frog + +- feat: change production brick to support external dependencies in the Dockerfile ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/926 +- feat(vscode): defined DartFrogApplicationRegistry ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/933 +- feat(vscode): allow daemon to send requests ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/930 +- chore: add .DS_Store to create_dart_frog gitignore ([@jxstxn1](https://github.com/jxstxn1)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/936 +- feat(vscode): defined DartFrogApplication ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/932 +- feat(vscode): defined dev_server domain ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/931 +- feat(vscode): implemented requestIdentifierGenerator for Dart Frog daemon ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/929 +- feat: removing external checking from code gen ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/928 +- feat: removing external dependencies checking from dev brick ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/927 +- feat: allow prod server brick to use external dependencies ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/910 +- feat(vscode): allow invoking Dart Frog daemon ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/925 +- feat(vscode): define "deamon" domain messages ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/918 +- feat(vscode): implement daemon protocol ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/915 +- feat(vscode): define singleton DartFrogDeamon ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/917 + +## very_good_core + +- docs: update l10n README documentation ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_core/pull/283 + +## very_good_hub + +- feat: persisting auth token ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/very_good_hub/pull/9 + +## mockingjay + +- feat: update sdk constraint to include dart 3 ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/mockingjay/pull/54 +- chore: bump to 0.4.0 and update changelog ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/mockingjay/pull/53 +- chore(deps): bump to `mocktail` v1.0.0 ([@felangel](https://github.com/felangel)) + - https://github.com/VeryGoodOpenSource/mockingjay/pull/47 +- feat: fixing for Flutter 3.13.0 ([@erickzanardo](https://github.com/erickzanardo)) + - https://github.com/VeryGoodOpenSource/mockingjay/pull/51