From 7f5a33de0f5414dfec5333d60f9b3957998c9b18 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 10:47:18 -0500 Subject: [PATCH] feat: CHANGELOG for May 27, 2024 (#87) * feat: CHANGELOG for May 27, 2024 * description and formatting * spell check refactor * dictonary splitting * missed one --------- Co-authored-by: vgvbot Co-authored-by: Tom Arra --- .github/.cspell/dart_dictionary.txt | 14 ++++ .github/.cspell/dev_dictionary.txt | 16 ++++ .github/.cspell/people_usernames.txt | 88 +++++++++++++++++++++ .github/.cspell/words_dictionary.txt | 3 + .github/cspell.json | 36 +++++++++ .github/workflows/validate_pr.yaml | 2 +- .vscode/cspell.json | 112 --------------------------- 2024/27-05-24.md | 60 ++++++++++++++ 8 files changed, 218 insertions(+), 113 deletions(-) create mode 100644 .github/.cspell/dart_dictionary.txt create mode 100644 .github/.cspell/dev_dictionary.txt create mode 100644 .github/.cspell/people_usernames.txt create mode 100644 .github/.cspell/words_dictionary.txt create mode 100644 .github/cspell.json delete mode 100644 .vscode/cspell.json create mode 100644 2024/27-05-24.md diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt new file mode 100644 index 0000000..37d9b7f --- /dev/null +++ b/.github/.cspell/dart_dictionary.txt @@ -0,0 +1,14 @@ +# keywords/terms specific to the Dart/Flutter ecosystem +brickignore # Ignore file used by Mason bricks +canonicalize # From path.canonicalize +canvaskit # CLI option that improves rendering on web https://docs.flutter.dev/platform-integration/web/renderers#command-line-options +cupertino # Flutter module containing iOS-style widgets +dartanalyzer +dartdoc # documentation tool for dart +dartdocs # plural of dartdoc +dartfmt +endtemplate # Use @endtemplate to close a @template block in dartdoc +pubspec # dependency and configuration file of every Dart project +typedefs # plural of typedef +intelli # JetBrain's IDE +writeln # StringBuffer.writeln \ No newline at end of file diff --git a/.github/.cspell/dev_dictionary.txt b/.github/.cspell/dev_dictionary.txt new file mode 100644 index 0000000..220ef9e --- /dev/null +++ b/.github/.cspell/dev_dictionary.txt @@ -0,0 +1,16 @@ +# other phrases that are not words but are getting flagged. Typically contained in localization files or urls +brickhub +codeowner +depandabot +devserver +firestore +Fluttercon +formz +gradlew +mockingjay +mocktail +pana +pubignore +pubspec +talkstream +verygoodopensource \ No newline at end of file diff --git a/.github/.cspell/people_usernames.txt b/.github/.cspell/people_usernames.txt new file mode 100644 index 0000000..d8d6c0c --- /dev/null +++ b/.github/.cspell/people_usernames.txt @@ -0,0 +1,88 @@ +# specific people's names and/or usernames +agacemi +AhmedLSayed9 +alestiago +andyhorn +Arnooodles +AyadLaouissi +b-nugent +bbariskilic +cgutierr-zgz +chanan +davidmartos96 +dezsocsete +DiRuffy +easazade +egyleader +erickzanardo +feduke-nukem +felangel +femalemonkeyman +gabrielrozendo +gonzalogauto +HenriqueNas +ianmaciel +isAlmogK +jackgllghr +JakeHadley +jamesblasco +jaumard +jdebecka +jneschisi +jorgecoca +jsgalarraga +jxstxn1 +karokojnr +kelvinwieth +Kirpal +kmartins +lesanpi +lesnitsky +lsaudon +luiscib3r +luisredondo +macoshita +mafreud +maheini +marcellocamara +matiasleyba +mattiapispisa +mia-recki +mrgnhnt96 +mrverdant13 +MrSagarShah +mtwichel +Muhammed-Ayad +mxknt +ndelanou +NurRozikin +pablojimpas +pattobrien +PiotrFLEURY +Renan's +renancaraujo +rubenferreira97 +ryzizub +SAGARSURI +SaiZayarHtet7 +samanthaobrien +scarletteliza +Shakle +stact +SuhwanCha +superiorsd10 +TahaTesser +Tienisto +Toavina23 +tomarra +tomassasovsky +unger1984 +verygoodstefan +willhlas +wolfenrain +yaksh1 +ycchuang305 +yczar +YousefSalahKassem +yuruyuri16 +zoocityboy \ No newline at end of file diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt new file mode 100644 index 0000000..ae55453 --- /dev/null +++ b/.github/.cspell/words_dictionary.txt @@ -0,0 +1,3 @@ +# actual english words (or common abbreviations) missing from CSpell +Photobooth +todos \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json new file mode 100644 index 0000000..a61f209 --- /dev/null +++ b/.github/cspell.json @@ -0,0 +1,36 @@ +{ + "version": "0.2", + "enabled": true, + "language": "en", + "dictionaries": [ + "en_US", + "softwareTerms", + "dart_dictionary", + "dev_dictionary", + "people_usernames", + "words_dictionary" + ], + "dictionaryDefinitions": [ + { + "name": "dart_dictionary", + "path": "./.cspell/dart_dictionary.txt", + "addWords": true + }, + { + "name": "dev_dictionary", + "path": "./.cspell/dev_dictionary.txt", + "addWords": true + }, + { + "name": "people_usernames", + "path": "./.cspell/people_usernames.txt", + "addWords": true + }, + { + "name": "words_dictionary", + "path": "./.cspell/words_dictionary.txt", + "addWords": true + } + ], + "ignorePaths": [] +} diff --git a/.github/workflows/validate_pr.yaml b/.github/workflows/validate_pr.yaml index c1d1915..d9ada67 100644 --- a/.github/workflows/validate_pr.yaml +++ b/.github/workflows/validate_pr.yaml @@ -41,6 +41,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} files: "**" - config: .vscode/cspell.json + config: .github/cspell.json incremental_files_only: false verbose: true diff --git a/.vscode/cspell.json b/.vscode/cspell.json deleted file mode 100644 index b5024a2..0000000 --- a/.vscode/cspell.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "version": "0.2", - "enabled": true, - "language": "en", - "words": [ - "agacemi", - "alestiago", - "Almog", - "andyhorn", - "Arnooodles", - "AyadLaouissi", - "b-nugent", - "bbariskilic", - "brickhub", - "cgutierr", - "chanan", - "codeowner", - "davidmartos", - "depandabot", - "devserver", - "dezsocsete", - "easazade", - "egyleader", - "erickzanardo", - "feduke", - "felangel", - "femalemonkeyman", - "firestore", - "Fluttercon", - "formz", - "gabrielrozendo", - "gonzalogauto", - "gradlew", - "Hadley", - "Henrique", - "ianmaciel", - "jackgllghr", - "jamesblasco", - "jaumard", - "jdebecka", - "jneschisi", - "jorgecoca", - "jsgalarraga", - "jxstxn", - "karokojnr", - "kelvinwieth", - "Kirpal", - "kmartins", - "Laouissi", - "lesanpi", - "lesnitsky", - "lsaudon", - "luiscib", - "luisredondo", - "macoshita", - "maheini", - "marcellocamara", - "mattiapispisa", - "mockingjay", - "mocktail", - "mrgnhnt", - "mrverdant", - "mtwichel", - "Muhammed-Ayad", - "mxknt", - "ndelanou", - "nukem", - "pablojimpas", - "pana", - "pattobrien", - "Photobooth", - "Piotr", - "pubignore", - "pubspec", - "recki", - "Renan's", - "renancaraujo", - "Rozikin", - "rubenferreira", - "Ruffy", - "ryzizub", - "Sagar", - "SAGARSURI", - "SaiZayarHtet7", - "samanthaobrien", - "Sayed", - "scarletteliza", - "Shakle", - "stact", - "Suhwan", - "superiorsd", - "TahaTesser", - "talkstream", - "Tienisto", - "Toavina", - "todos", - "tomarra", - "tomassasovsky", - "unger", - "verygoodopensource", - "verygoodstefan", - "willhlas", - "wolfenrain", - "yaksh", - "ycchuang", - "yczar", - "YousefSalahKassem", - "yuruyuri", - "zoocityboy" - ], - "ignorePaths": [] -} diff --git a/2024/27-05-24.md b/2024/27-05-24.md new file mode 100644 index 0000000..3207af9 --- /dev/null +++ b/2024/27-05-24.md @@ -0,0 +1,60 @@ +# Very Good Changelog (05-27-2024) + +Starting to get up to speed with Flutter 3.22 and Dart 3.4 + +## dart_frog + +- chore: update create_dart_frog brick pubspec.yaml ([@mafreud](https://github.com/mafreud)) + - https://github.com/VeryGoodOpenSource/dart_frog/pull/1372 + +## very_good_cli + +- ci: update workflows to use Flutter 3.22 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_cli/pull/1046 + +## very_good_templates + +- chore(very_good_flutter_plugin): v0.8.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/116 +- chore(very_good_wear_app): v0.5.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/115 +- chore(very_good_flutter_package): v0.6.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/114 +- chore(very_good_flame_game): v0.7.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/113 +- chore(very_good_dart_package): v0.6.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/112 +- chore(very_good_dart_cli): v0.7.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/111 +- chore(very_good_core): v0.7.0 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/110 +- feat(very_good_flutter_plugin)!: ensure template uses Flutter 3.22 with Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/105 +- feat(very_good_core)!: ensure template uses Flutter 3.22 with Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/97 +- feat(very_good_dart_cli)!: ensure template uses Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/99 +- feat(very_good_flame_game)!: ensure template uses Flutter 3.22 with Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/102 +- feat(very_good_dart_package)!: ensure template uses Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/100 +- feat(very_good_flutter_package)!: ensure template uses Flutter 3.22 with Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/101 +- feat(very_good_wear_app)!: ensure template uses Flutter 3.22 with Dart 3.4 ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/104 +- chore(very_good_flame_game): update index.html to support latest convention ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/107 +- chore(very_good_core): update index.html to support latest convention ([@alestiago](https://github.com/alestiago)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/106 +- feat: update android plugin template with latest flutter changes ([@tomarra](https://github.com/tomarra)) + - https://github.com/VeryGoodOpenSource/very_good_templates/pull/95 + +## very_good_workflows + +- fix: use `secrets` for credential information ([@wolfenrain](https://github.com/wolfenrain)) + - https://github.com/VeryGoodOpenSource/very_good_workflows/pull/182 + +## mockingjay + +- chore: sync min dark sdk with min flutter sdk ([@matiasleyba](https://github.com/matiasleyba)) + - https://github.com/VeryGoodOpenSource/mockingjay/pull/70