From dfc0b9e8fb76f0fcdf02ae3b022df1a9fa71c687 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 19 Oct 2025 01:21:54 +0000 Subject: [PATCH 01/43] [CRON] Sunday Oct 19, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 37 +++++++++++++++++-- .../tutorial/part-1/reusable-components.md | 4 +- guides/release/tutorial/part-2/ember-data.md | 14 ++++--- 3 files changed, 43 insertions(+), 12 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 38d57f455f..6f9d23359b 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -25,7 +25,7 @@ To verify that your installation was successful, run: ```shell $ ember --version ember-cli: 6.8.0 -node: 18.20.8 +node: 20.19.5 os: linux x64 ``` @@ -61,6 +61,7 @@ Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-renta create app/models/.gitkeep create app/router.js create app/routes/.gitkeep + create app/services/.gitkeep create app/styles/app.css create /home/runner/work/super-rentals-tutorial/super-rentals-tutorial/dist/code/super-rentals/app/templates/application.gjs create config/ember-cli-update.json @@ -122,6 +123,8 @@ super-rentals │ │ └── .gitkeep │ ├── routes │ │ └── .gitkeep +│ ├── services +│ │ └── .gitkeep │ ├── styles │ │ └── app.css │ ├── templates @@ -134,6 +137,29 @@ super-rentals │ ├── environment.js │ ├── optional-features.json │ └── targets.js +├── dist +│ ├── @embroider +│ │ └── virtual +│ │ ├── app.css +│ │ ├── test-support.css +│ │ ├── test-support.js +│ │ ├── vendor.css +│ │ └── vendor.js +│ ├── assets +│ │ ├── app-BsLReVUA.css +│ │ ├── app-pzWalck4.js +│ │ ├── main-CdDm1GLL.js +│ │ ├── modules-4-12-DZBwh_jw.js +│ │ ├── tests-DP3uERZX.js +│ │ └── tests-DuyDhxzu.css +│ ├── ember-welcome-page +│ │ └── images +│ │ └── construction.png +│ ├── tests +│ │ └── index.html +│ ├── index.html +│ ├── robots.txt +│ └── testem.js ├── public │ └── robots.txt ├── tests @@ -145,6 +171,9 @@ super-rentals │ │ └── .gitkeep │ ├── index.html │ └── test-helper.js +├── tmp +│ └── compat-prebuild +│ └── .stage2-output ├── .editorconfig ├── .ember-cli ├── .env.development @@ -165,7 +194,7 @@ super-rentals ├── testem.cjs └── vite.config.mjs -27 directories, 56 files +28 directories, 58 files ``` We'll learn about the purposes of these files and folders as we go. For now, just know that we'll spend most of our time working within the `app` folder. @@ -191,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 436ms +Babel: @embroider/macros (1) | 394ms - VITE v6.3.6 ready in 4143 ms + VITE v7.1.10 ready in 3824 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index d36e09f57b..2d8f6039f7 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 423ms +Babel: @embroider/macros (1) | 393ms - VITE v6.3.6 ready in 4119 ms + VITE v7.1.10 ready in 3790 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-2/ember-data.md b/guides/release/tutorial/part-2/ember-data.md index 5de3f7dcbe..a0557f4966 100644 --- a/guides/release/tutorial/part-2/ember-data.md +++ b/guides/release/tutorial/part-2/ember-data.md @@ -334,18 +334,14 @@ Let's start customizing the things that didn't work for us by default. Specifica The first thing we want to do is have our builder respect a configurable default host and/or namespace. Adding a namespace prefix happens to be pretty common across Ember apps, so EmberData provides a global config mechanism for host and namespace. Typically you will want to do this either in your store file or app file. -```js { data-filename="app/app.js" data-diff="+7,+8,+9,+10,+11" } +```js { data-filename="app/app.js" data-diff="+21,+22,+23,+24,+25" } import Application from '@ember/application'; import compatModules from '@embroider/virtual/compat-modules'; import Resolver from 'ember-resolver'; import loadInitializers from 'ember-load-initializers'; import config from 'super-rentals/config/environment'; import { importSync, isDevelopingApp, macroCondition } from '@embroider/macros'; -import { setBuildURLConfig } from '@ember-data/request-utils'; - -setBuildURLConfig({ - namespace: 'api', -}); +import setupInspector from '@embroider/legacy-inspector-support/ember-source-4.12'; if (macroCondition(isDevelopingApp())) { importSync('./deprecation-workflow'); @@ -355,9 +351,15 @@ export default class App extends Application { modulePrefix = config.modulePrefix; podModulePrefix = config.podModulePrefix; Resolver = Resolver.withModules(compatModules); + inspector = setupInspector(this); } loadInitializers(App, config.modulePrefix, compatModules); +import { setBuildURLConfig } from '@ember-data/request-utils'; + +setBuildURLConfig({ + namespace: 'api', +}); ``` Adding the `.json` extension is a bit less common, and doesn't have a declarative configuration API of its own. We could just modify request options directly in place of use, but that would be a bit messy. Instead, let's create a handler to do this for us. From a542873a5a12dfce8ae3ee715efb445ae8faf8bb Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 20 Oct 2025 01:19:16 +0000 Subject: [PATCH 02/43] [CRON] Monday Oct 20, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 6f9d23359b..54f5604761 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 394ms +Babel: @embroider/macros (1) | 393ms - VITE v7.1.10 ready in 3824 ms + VITE v7.1.10 ready in 3749 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 2d8f6039f7..f54afba375 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 393ms +Babel: @embroider/macros (1) | 392ms - VITE v7.1.10 ready in 3790 ms + VITE v7.1.10 ready in 3758 ms ➜ Local: http://localhost:4200/ ``` From b94f8539cf2522e1592ae7bde542e97ac9bf0c95 Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 21 Oct 2025 01:19:06 +0000 Subject: [PATCH 03/43] [CRON] Tuesday Oct 21, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 54f5604761..55d74df9f0 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 393ms +Babel: @embroider/macros (1) | 405ms - VITE v7.1.10 ready in 3749 ms + VITE v7.1.11 ready in 3859 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index f54afba375..1417eb7e81 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 392ms +Babel: @embroider/macros (1) | 415ms - VITE v7.1.10 ready in 3758 ms + VITE v7.1.11 ready in 3844 ms ➜ Local: http://localhost:4200/ ``` From 2959e82a5f793c956c7dade1cbc243b0bc8a40ab Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 22 Oct 2025 01:18:16 +0000 Subject: [PATCH 04/43] [CRON] Wednesday Oct 22, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 55d74df9f0..6bb9fa774c 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 405ms +Babel: @embroider/macros (1) | 392ms - VITE v7.1.11 ready in 3859 ms + VITE v7.1.11 ready in 3802 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 1417eb7e81..923c1686f2 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 415ms +Babel: @embroider/macros (1) | 398ms - VITE v7.1.11 ready in 3844 ms + VITE v7.1.11 ready in 3785 ms ➜ Local: http://localhost:4200/ ``` From 50dbceb52e46d0ac7f40b1bc893dd3d2d54775d0 Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 23 Oct 2025 01:16:22 +0000 Subject: [PATCH 05/43] [CRON] Thursday Oct 23, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 8 ++++---- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 6bb9fa774c..25cefa3d4c 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -150,8 +150,8 @@ super-rentals │ │ ├── app-pzWalck4.js │ │ ├── main-CdDm1GLL.js │ │ ├── modules-4-12-DZBwh_jw.js -│ │ ├── tests-DP3uERZX.js -│ │ └── tests-DuyDhxzu.css +│ │ ├── tests-DuyDhxzu.css +│ │ └── tests-dtaPar7N.js │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 392ms +Babel: @embroider/macros (1) | 404ms - VITE v7.1.11 ready in 3802 ms + VITE v7.1.11 ready in 3870 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 923c1686f2..bd73b76cce 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 415ms - VITE v7.1.11 ready in 3785 ms + VITE v7.1.11 ready in 3839 ms ➜ Local: http://localhost:4200/ ``` From 6ca9e01556573a97a6fb433ce4f6fe1d0258cfe4 Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 24 Oct 2025 01:13:31 +0000 Subject: [PATCH 06/43] [CRON] Friday Oct 24, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 8 ++++---- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 25cefa3d4c..c5d6fefe8e 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -150,8 +150,8 @@ super-rentals │ │ ├── app-pzWalck4.js │ │ ├── main-CdDm1GLL.js │ │ ├── modules-4-12-DZBwh_jw.js -│ │ ├── tests-DuyDhxzu.css -│ │ └── tests-dtaPar7N.js +│ │ ├── tests-CUcWsgII.js +│ │ └── tests-DuyDhxzu.css │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 404ms +Babel: @embroider/macros (1) | 391ms - VITE v7.1.11 ready in 3870 ms + VITE v7.1.12 ready in 3779 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index bd73b76cce..c634d4452d 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 415ms +Babel: @embroider/macros (1) | 404ms - VITE v7.1.11 ready in 3839 ms + VITE v7.1.12 ready in 3789 ms ➜ Local: http://localhost:4200/ ``` From 015cca62942084ab3b2ffc4fa944c766410bc1c2 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 26 Oct 2025 01:20:47 +0000 Subject: [PATCH 07/43] [CRON] Sunday Oct 26, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index c5d6fefe8e..732402bd57 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 391ms +Babel: @embroider/macros (1) | 398ms - VITE v7.1.12 ready in 3779 ms + VITE v7.1.12 ready in 3829 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index c634d4452d..ad31ede4bf 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 404ms +Babel: @embroider/macros (1) | 398ms - VITE v7.1.12 ready in 3789 ms + VITE v7.1.12 ready in 3822 ms ➜ Local: http://localhost:4200/ ``` From 170b483c6330f8f3b96817533dbd38637da3fe3b Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 27 Oct 2025 01:21:34 +0000 Subject: [PATCH 08/43] [CRON] Monday Oct 27, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 732402bd57..b086876e7f 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 399ms - VITE v7.1.12 ready in 3829 ms + VITE v7.1.12 ready in 3793 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index ad31ede4bf..7a6cdf2008 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 391ms - VITE v7.1.12 ready in 3822 ms + VITE v7.1.12 ready in 3770 ms ➜ Local: http://localhost:4200/ ``` From 0abf16ba078904cce475043fc32ec554f70add66 Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 28 Oct 2025 01:15:34 +0000 Subject: [PATCH 09/43] [CRON] Tuesday Oct 28, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 5 +++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index b086876e7f..d608226f39 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,12 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 399ms +Babel: @embroider/macros (1) | 361ms +Babel: ember-tracked-storage-polyfill (1) | 23ms - VITE v7.1.12 ready in 3793 ms + VITE v7.1.12 ready in 3335 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 7a6cdf2008..d53b332f04 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 391ms +Babel: @embroider/macros (1) | 378ms - VITE v7.1.12 ready in 3770 ms + VITE v7.1.12 ready in 3397 ms ➜ Local: http://localhost:4200/ ``` From dda0a1ea9c96cf0de2db8ae931cd6eaceada70c0 Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 29 Oct 2025 01:20:01 +0000 Subject: [PATCH 10/43] [CRON] Wednesday Oct 29, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 5 ++--- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index d608226f39..cac9c09925 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,12 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 361ms -Babel: ember-tracked-storage-polyfill (1) | 23ms +Babel: @embroider/macros (1) | 389ms - VITE v7.1.12 ready in 3335 ms + VITE v7.1.12 ready in 3786 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index d53b332f04..c1a195d420 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 378ms +Babel: @embroider/macros (1) | 395ms - VITE v7.1.12 ready in 3397 ms + VITE v7.1.12 ready in 3778 ms ➜ Local: http://localhost:4200/ ``` From 0cbc730a7c1ead862c09c843d6148b2de0a749d9 Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 30 Oct 2025 01:20:24 +0000 Subject: [PATCH 11/43] [CRON] Thursday Oct 30, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index cac9c09925..9dc53fcbda 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 389ms +Babel: @embroider/macros (1) | 402ms - VITE v7.1.12 ready in 3786 ms + VITE v7.1.12 ready in 3810 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index c1a195d420..21d0700e00 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 395ms +Babel: @embroider/macros (1) | 418ms - VITE v7.1.12 ready in 3778 ms + VITE v7.1.12 ready in 3994 ms ➜ Local: http://localhost:4200/ ``` From 46a8339583dd3834dc701e21305a2943dab857f1 Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 31 Oct 2025 01:16:29 +0000 Subject: [PATCH 12/43] [CRON] Friday Oct 31, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 12 ++++++------ .../release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 9dc53fcbda..dd69aae4b3 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -146,11 +146,11 @@ super-rentals │ │ ├── vendor.css │ │ └── vendor.js │ ├── assets +│ │ ├── app-BOleBDkl.js │ │ ├── app-BsLReVUA.css -│ │ ├── app-pzWalck4.js -│ │ ├── main-CdDm1GLL.js -│ │ ├── modules-4-12-DZBwh_jw.js -│ │ ├── tests-CUcWsgII.js +│ │ ├── main-B23G6Kgj.js +│ │ ├── modules-4-12-CusihsH3.js +│ │ ├── tests-BK_7UHOX.js │ │ └── tests-DuyDhxzu.css │ ├── ember-welcome-page │ │ └── images @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 402ms +Babel: @embroider/macros (1) | 407ms - VITE v7.1.12 ready in 3810 ms + VITE v7.1.12 ready in 3902 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 21d0700e00..2da9661b17 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 418ms +Babel: @embroider/macros (1) | 390ms - VITE v7.1.12 ready in 3994 ms + VITE v7.1.12 ready in 3816 ms ➜ Local: http://localhost:4200/ ``` From 750f2e6d88e945cb24570a1270077477cc096404 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 2 Nov 2025 01:19:55 +0000 Subject: [PATCH 13/43] [CRON] Sunday Nov 02, 2025 --- Commit: ember-learn/super-rentals-tutorial@0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/0bb1d5e3f7ff2012f630a0d047a440e2d2e907b2/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index dd69aae4b3..48c021827c 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 407ms +Babel: @embroider/macros (1) | 406ms - VITE v7.1.12 ready in 3902 ms + VITE v7.1.12 ready in 3849 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 2da9661b17..6e73e1032b 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 390ms +Babel: @embroider/macros (1) | 397ms - VITE v7.1.12 ready in 3816 ms + VITE v7.1.12 ready in 3786 ms ➜ Local: http://localhost:4200/ ``` From 6a9980315495ea2cc3ac423a846b0ef95197532e Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 2 Nov 2025 17:39:57 +0000 Subject: [PATCH 14/43] Updates tutorials file extensions from .hbs to .gjs --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 5 +++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- guides/release/tutorial/part-1/working-with-data.md | 2 +- guides/release/tutorial/part-2/provider-components.md | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 48c021827c..bbfd622e36 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,12 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 406ms +Babel: @embroider/macros (1) | 398ms +Babel: ember-tracked-storage-polyfill (1) | 25ms - VITE v7.1.12 ready in 3849 ms + VITE v7.1.12 ready in 3923 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 6e73e1032b..dbba31ea2b 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 397ms +Babel: @embroider/macros (1) | 423ms - VITE v7.1.12 ready in 3786 ms + VITE v7.1.12 ready in 3850 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/working-with-data.md b/guides/release/tutorial/part-1/working-with-data.md index c556af96a7..bfc9c4772d 100644 --- a/guides/release/tutorial/part-1/working-with-data.md +++ b/guides/release/tutorial/part-1/working-with-data.md @@ -418,7 +418,7 @@ Awesome! Now we're in business. ## Loops and Local Variables in Templates with `{{#each}}` -The last change we'll need to make is to our `index.hbs` route template, where we invoke our `` components. Previously, we were passing in `@rental` as `@model` to our components. However, `@model` is no longer a single object, but rather, an array! So, we'll need to change this template to account for that. +The last change we'll need to make is to our `index.gjs` route template, where we invoke our `` components. Previously, we were passing in `@rental` as `@model` to our components. However, `@model` is no longer a single object, but rather, an array! So, we'll need to change this template to account for that. Let's see how. diff --git a/guides/release/tutorial/part-2/provider-components.md b/guides/release/tutorial/part-2/provider-components.md index a0d816bdda..88ad2960b9 100644 --- a/guides/release/tutorial/part-2/provider-components.md +++ b/guides/release/tutorial/part-2/provider-components.md @@ -1,6 +1,6 @@ -In this chapter, we'll work on adding a new search feature, and refactor our `index.hbs` template into a new component along the way. We'll learn about a new pattern for passing data around between components, too! Once we're done, our page will look like this: +In this chapter, we'll work on adding a new search feature, and refactor our `index.gjs` template into a new component along the way. We'll learn about a new pattern for passing data around between components, too! Once we're done, our page will look like this: @@ -58,7 +58,7 @@ Awesome, one step done. Now, this input looks great, but it doesn't actually _do In order to make our search box actually work, we are going to need to retain and store the text that the user types in when they use the search box. This text is the search query, and it is a piece of _[state](../../../components/component-state-and-actions/)_ that is going to change whenever the user types something into the search box. -But where are we going to put this newly-introduced piece of state? In order to wire up the search box, we need a place to store the search query. At the moment, our search box lives on the `index.hbs` route template, which doesn't have a good place to store this search query state. Darn, this would be so much easier to do if we had a component, because we could just store the state directly on the component! +But where are we going to put this newly-introduced piece of state? In order to wire up the search box, we need a place to store the search query. At the moment, our search box lives on the `index.gjs` route template, which doesn't have a good place to store this search query state. Darn, this would be so much easier to do if we had a component, because we could just store the state directly on the component! Wait...why don't we just refactor the search box into a component? Once we do that, this will all be a bit easier—hooray! From 0146d0b7c6a5dca4916fde78110afa7a660e0737 Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 3 Nov 2025 01:18:06 +0000 Subject: [PATCH 15/43] [CRON] Monday Nov 03, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 3 +-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index bbfd622e36..e6f25d9ca8 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -221,11 +221,10 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- Babel: @embroider/macros (1) | 398ms -Babel: ember-tracked-storage-polyfill (1) | 25ms - VITE v7.1.12 ready in 3923 ms + VITE v7.1.12 ready in 3306 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index dbba31ea2b..228b1f45cb 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 423ms +Babel: @embroider/macros (1) | 354ms - VITE v7.1.12 ready in 3850 ms + VITE v7.1.12 ready in 3202 ms ➜ Local: http://localhost:4200/ ``` From 2e8a0361d51f70daa4744f6d2eebd19650814c92 Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 5 Nov 2025 01:20:15 +0000 Subject: [PATCH 16/43] [CRON] Wednesday Nov 05, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 5 +++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index e6f25d9ca8..3f8ffb6467 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,12 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 392ms +Babel: ember-tracked-storage-polyfill (1) | 30ms - VITE v7.1.12 ready in 3306 ms + VITE v7.1.12 ready in 3755 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 228b1f45cb..2a53260d95 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 354ms +Babel: @embroider/macros (1) | 379ms - VITE v7.1.12 ready in 3202 ms + VITE v7.1.12 ready in 3715 ms ➜ Local: http://localhost:4200/ ``` From c498a07d08932ce2bb4257d22670b7a175a19e1e Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 6 Nov 2025 01:19:01 +0000 Subject: [PATCH 17/43] [CRON] Thursday Nov 06, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 9 ++++----- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 3f8ffb6467..f0a6e131ca 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -150,8 +150,8 @@ super-rentals │ │ ├── app-BsLReVUA.css │ │ ├── main-B23G6Kgj.js │ │ ├── modules-4-12-CusihsH3.js -│ │ ├── tests-BK_7UHOX.js -│ │ └── tests-DuyDhxzu.css +│ │ ├── tests-C-PRrhBK.js +│ │ └── tests-CZyZLpGa.css │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -220,12 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 392ms -Babel: ember-tracked-storage-polyfill (1) | 30ms +Babel: @embroider/macros (1) | 395ms - VITE v7.1.12 ready in 3755 ms + VITE v7.2.0 ready in 3824 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 2a53260d95..a8b1d5c4f8 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 379ms +Babel: @embroider/macros (1) | 387ms - VITE v7.1.12 ready in 3715 ms + VITE v7.2.0 ready in 3767 ms ➜ Local: http://localhost:4200/ ``` From aa028551f5bfd6061b7a730e446dc00cad3762eb Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 7 Nov 2025 01:18:12 +0000 Subject: [PATCH 18/43] [CRON] Friday Nov 07, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index f0a6e131ca..decb1af547 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 395ms +Babel: @embroider/macros (1) | 399ms - VITE v7.2.0 ready in 3824 ms + VITE v7.2.1 ready in 3820 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index a8b1d5c4f8..b1b8186778 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 387ms +Babel: @embroider/macros (1) | 409ms - VITE v7.2.0 ready in 3767 ms + VITE v7.2.1 ready in 3909 ms ➜ Local: http://localhost:4200/ ``` From bb6a63a220c54bde7ef1277a28b96cc8813b58d8 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sat, 8 Nov 2025 01:14:15 +0000 Subject: [PATCH 19/43] [CRON] Saturday Nov 08, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 14 +++++++------- .../release/tutorial/part-1/reusable-components.md | 5 +++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index decb1af547..2bf629661c 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -146,12 +146,12 @@ super-rentals │ │ ├── vendor.css │ │ └── vendor.js │ ├── assets -│ │ ├── app-BOleBDkl.js │ │ ├── app-BsLReVUA.css -│ │ ├── main-B23G6Kgj.js -│ │ ├── modules-4-12-CusihsH3.js -│ │ ├── tests-C-PRrhBK.js -│ │ └── tests-CZyZLpGa.css +│ │ ├── app-mqHfZKCr.js +│ │ ├── main-BlBNkrge.js +│ │ ├── modules-4-12-wK0x31go.js +│ │ ├── tests-CZyZLpGa.css +│ │ └── tests-De-CNwh-.js │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 399ms +Babel: @embroider/macros (1) | 388ms - VITE v7.2.1 ready in 3820 ms + VITE v7.2.2 ready in 3795 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index b1b8186778..a311d4a11e 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,12 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 409ms +Babel: @embroider/macros (1) | 387ms +Babel: ember-tracked-storage-polyfill (1) | 24ms - VITE v7.2.1 ready in 3909 ms + VITE v7.2.2 ready in 3804 ms ➜ Local: http://localhost:4200/ ``` From dc49b0cc52197a481b259eb2c5e39cba8c5e9f3a Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 9 Nov 2025 01:22:45 +0000 Subject: [PATCH 20/43] [CRON] Sunday Nov 09, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 2bf629661c..14db110c93 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 388ms +Babel: @embroider/macros (1) | 411ms - VITE v7.2.2 ready in 3795 ms + VITE v7.2.2 ready in 3916 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index a311d4a11e..cb66988970 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,12 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 387ms -Babel: ember-tracked-storage-polyfill (1) | 24ms +Babel: @embroider/macros (1) | 400ms - VITE v7.2.2 ready in 3804 ms + VITE v7.2.2 ready in 3903 ms ➜ Local: http://localhost:4200/ ``` From 9caa494edfeb94016fbb9fbf04ff4abac5de6b1b Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 10 Nov 2025 14:04:43 +0000 Subject: [PATCH 21/43] [CRON] Monday Nov 10, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 14db110c93..ecdc30a805 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 411ms +Babel: @embroider/macros (1) | 395ms - VITE v7.2.2 ready in 3916 ms + VITE v7.2.2 ready in 3819 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index cb66988970..dfe6a85a52 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 400ms +Babel: @embroider/macros (1) | 398ms - VITE v7.2.2 ready in 3903 ms + VITE v7.2.2 ready in 3790 ms ➜ Local: http://localhost:4200/ ``` From b879a401eb20e550eabf89be28e80d7119d53045 Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 11 Nov 2025 01:18:41 +0000 Subject: [PATCH 22/43] [CRON] Tuesday Nov 11, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index ecdc30a805..a9f7d09cf4 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -220,11 +220,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 395ms +Babel: @embroider/macros (1) | 386ms - VITE v7.2.2 ready in 3819 ms + VITE v7.2.2 ready in 3814 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index dfe6a85a52..1b1bd5a9dd 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -101,11 +101,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 397ms - VITE v7.2.2 ready in 3790 ms + VITE v7.2.2 ready in 3890 ms ➜ Local: http://localhost:4200/ ``` From 22982e1deacd3937555bb3c4ddd50dd54dd496d5 Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 13 Nov 2025 01:18:46 +0000 Subject: [PATCH 23/43] [CRON] Thursday Nov 13, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 20 ++++++++++++++++-- .../tutorial/part-1/reusable-components.md | 21 +++++++++++++++++-- 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index a9f7d09cf4..19f14b7a10 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -213,6 +213,12 @@ Building Environment: development +Building + +Environment: development + +building... + building... @@ -220,11 +226,21 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 386ms +Babel: @embroider/macros (1) | 613ms + + + + +Build successful (9761ms) + + +Slowest Nodes (totalTime >= 5%) | Total (avg) +-+- +Babel: @embroider/macros (1) | 641ms - VITE v7.2.2 ready in 3814 ms + VITE v7.2.2 ready in 4219 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 1b1bd5a9dd..89183e34da 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -94,18 +94,35 @@ Building Environment: development +Building + +Environment: development + building... +building... + + +Build successful (13286ms) + + +Slowest Nodes (totalTime >= 5%) | Total (avg) +-+- +Babel: @embroider/macros (1) | 615ms + + + Build successful (13286ms) + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 397ms +Babel: @embroider/macros (1) | 626ms - VITE v7.2.2 ready in 3890 ms + VITE v7.2.2 ready in 4226 ms ➜ Local: http://localhost:4200/ ``` From 5d5310653476b0a0401226e8585c2a04cb55810b Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 14 Nov 2025 01:17:58 +0000 Subject: [PATCH 24/43] [CRON] Friday Nov 14, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 7 ++++--- guides/release/tutorial/part-1/reusable-components.md | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 19f14b7a10..2de2ebbac5 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -224,9 +224,10 @@ building... Build successful (9761ms) + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 613ms +Babel: @embroider/macros (1) | 647ms @@ -236,11 +237,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 641ms +Babel: @embroider/macros (1) | 626ms - VITE v7.2.2 ready in 4219 ms + VITE v7.2.2 ready in 4419 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 89183e34da..fefcec3225 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,8 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 615ms - +Babel: @embroider/macros (1) | 619ms @@ -118,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 626ms +Babel: @embroider/macros (1) | 648ms - VITE v7.2.2 ready in 4226 ms + VITE v7.2.2 ready in 4323 ms ➜ Local: http://localhost:4200/ ``` From 10a9801d4e15d210e18b9a4164b5d92157376410 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sat, 15 Nov 2025 01:16:21 +0000 Subject: [PATCH 25/43] [CRON] Saturday Nov 15, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 9 ++++----- guides/release/tutorial/part-1/reusable-components.md | 6 +++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 2de2ebbac5..f9065f302d 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -151,7 +151,7 @@ super-rentals │ │ ├── main-BlBNkrge.js │ │ ├── modules-4-12-wK0x31go.js │ │ ├── tests-CZyZLpGa.css -│ │ └── tests-De-CNwh-.js +│ │ └── tests-DAmyfYpG.js │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -227,8 +227,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 647ms - +Babel: @embroider/macros (1) | 632ms @@ -237,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 626ms +Babel: @embroider/macros (1) | 614ms - VITE v7.2.2 ready in 4419 ms + VITE v7.2.2 ready in 4238 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index fefcec3225..273ddf7cd5 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,7 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 619ms +Babel: @embroider/macros (1) | 633ms @@ -117,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 648ms +Babel: @embroider/macros (1) | 640ms - VITE v7.2.2 ready in 4323 ms + VITE v7.2.2 ready in 4236 ms ➜ Local: http://localhost:4200/ ``` From 1fd2ee20c8ddb93dade038322994c342bdf7d9e5 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 16 Nov 2025 01:21:44 +0000 Subject: [PATCH 26/43] [CRON] Sunday Nov 16, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 6 +++--- guides/release/tutorial/part-1/reusable-components.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index f9065f302d..143d4d810d 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -227,7 +227,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 632ms +Babel: @embroider/macros (1) | 633ms @@ -236,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 614ms +Babel: @embroider/macros (1) | 645ms - VITE v7.2.2 ready in 4238 ms + VITE v7.2.2 ready in 4316 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 273ddf7cd5..b06157fd27 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,7 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 633ms +Babel: @embroider/macros (1) | 609ms @@ -117,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 640ms +Babel: @embroider/macros (1) | 639ms - VITE v7.2.2 ready in 4236 ms + VITE v7.2.2 ready in 4257 ms ➜ Local: http://localhost:4200/ ``` From b18ddd0d7beb2e648561a4be6e7e9978621150d7 Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 20 Nov 2025 01:16:37 +0000 Subject: [PATCH 27/43] [CRON] Thursday Nov 20, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 16 ++++++++-------- .../tutorial/part-1/reusable-components.md | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 143d4d810d..aef40d04a5 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -147,11 +147,11 @@ super-rentals │ │ └── vendor.js │ ├── assets │ │ ├── app-BsLReVUA.css -│ │ ├── app-mqHfZKCr.js -│ │ ├── main-BlBNkrge.js -│ │ ├── modules-4-12-wK0x31go.js -│ │ ├── tests-CZyZLpGa.css -│ │ └── tests-DAmyfYpG.js +│ │ ├── app-myYcjx1Q.js +│ │ ├── main-BeA5_w8X.js +│ │ ├── modules-4-12-CcvGdp1a.js +│ │ ├── tests-BA0c5HIe.js +│ │ └── tests-CZyZLpGa.css │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -227,7 +227,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 633ms +Babel: @embroider/macros (1) | 570ms @@ -236,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 645ms +Babel: @embroider/macros (1) | 579ms - VITE v7.2.2 ready in 4316 ms + VITE v7.2.2 ready in 3668 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index b06157fd27..82ddffd8b1 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,7 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 609ms +Babel: @embroider/macros (1) | 576ms @@ -117,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 639ms +Babel: @embroider/macros (1) | 583ms - VITE v7.2.2 ready in 4257 ms + VITE v7.2.2 ready in 3694 ms ➜ Local: http://localhost:4200/ ``` From a3a3deaf0fdc3d47fe306a6e4a264f12739b7544 Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 21 Nov 2025 01:17:24 +0000 Subject: [PATCH 28/43] [CRON] Friday Nov 21, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 7 ++++--- guides/release/tutorial/part-1/reusable-components.md | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index aef40d04a5..399dcf62c2 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -227,7 +227,8 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 570ms +Babel: @embroider/macros (1) | 610ms +Babel: ember-tracked-storage-polyfill (1) | 37ms @@ -236,11 +237,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 579ms +Babel: @embroider/macros (1) | 633ms - VITE v7.2.2 ready in 3668 ms + VITE v7.2.4 ready in 4292 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 82ddffd8b1..03cfd8ddab 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -91,7 +91,6 @@ $ npm start > vite Building - Environment: development Building @@ -108,7 +107,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 576ms +Babel: @embroider/macros (1) | 602ms @@ -117,11 +116,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 583ms +Babel: @embroider/macros (1) | 623ms - VITE v7.2.2 ready in 3694 ms + VITE v7.2.4 ready in 4232 ms ➜ Local: http://localhost:4200/ ``` From 9a11874031c487c318013c29ffb249208d78fcde Mon Sep 17 00:00:00 2001 From: Tomster Date: Sat, 22 Nov 2025 01:15:21 +0000 Subject: [PATCH 29/43] [CRON] Saturday Nov 22, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 8 ++++---- guides/release/tutorial/part-1/reusable-components.md | 8 +++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 399dcf62c2..7679c484dd 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -227,8 +227,8 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 610ms -Babel: ember-tracked-storage-polyfill (1) | 37ms +Babel: @embroider/macros (1) | 606ms + @@ -237,11 +237,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 633ms +Babel: @embroider/macros (1) | 622ms - VITE v7.2.4 ready in 4292 ms + VITE v7.2.4 ready in 3845 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 03cfd8ddab..bf6c78b954 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -91,6 +91,7 @@ $ npm start > vite Building + Environment: development Building @@ -107,7 +108,8 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 602ms +Babel: @embroider/macros (1) | 597ms + @@ -116,11 +118,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 623ms +Babel: @embroider/macros (1) | 619ms - VITE v7.2.4 ready in 4232 ms + VITE v7.2.4 ready in 3824 ms ➜ Local: http://localhost:4200/ ``` From 5d14c4f2182f2d0cecbfeb0bbee3e2d85c38a8fa Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 24 Nov 2025 01:21:40 +0000 Subject: [PATCH 30/43] [CRON] Monday Nov 24, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 13 ++++++------- .../release/tutorial/part-1/reusable-components.md | 7 +++---- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 7679c484dd..b528f96313 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -225,23 +225,22 @@ building... Build successful (9761ms) -Slowest Nodes (totalTime >= 5%) | Total (avg) --+- -Babel: @embroider/macros (1) | 606ms - +Build successful (9761ms) +Slowest Nodes (totalTime >= 5%) | Total (avg) +-+- +Babel: @embroider/macros (1) | 652ms -Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 622ms +Babel: @embroider/macros (1) | 645ms - VITE v7.2.4 ready in 3845 ms + VITE v7.2.4 ready in 4356 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index bf6c78b954..725a29bfa3 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,8 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 597ms - +Babel: @embroider/macros (1) | 608ms @@ -118,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 619ms +Babel: @embroider/macros (1) | 635ms - VITE v7.2.4 ready in 3824 ms + VITE v7.2.4 ready in 4354 ms ➜ Local: http://localhost:4200/ ``` From 07b414eaddad855cab63bdeb547d5a577a0c626b Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 25 Nov 2025 01:17:42 +0000 Subject: [PATCH 31/43] [CRON] Tuesday Nov 25, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 12 ++++++------ .../tutorial/part-1/reusable-components.md | 15 +++++++-------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index b528f96313..1289562178 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -225,22 +225,22 @@ building... Build successful (9761ms) -Build successful (9761ms) - - Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 652ms +Babel: @embroider/macros (1) | 627ms +Build successful (9761ms) + + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 645ms +Babel: @embroider/macros (1) | 627ms - VITE v7.2.4 ready in 4356 ms + VITE v7.2.4 ready in 4232 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 725a29bfa3..59704b29b7 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -92,12 +92,12 @@ $ npm start Building -Environment: development - Building Environment: development +Environment: development + building... building... @@ -106,22 +106,21 @@ building... Build successful (13286ms) +Build successful (13286ms) + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 608ms - +Babel: @embroider/macros (1) | 636ms -Build successful (13286ms) - Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 635ms +Babel: @embroider/macros (1) | 630ms - VITE v7.2.4 ready in 4354 ms + VITE v7.2.4 ready in 4237 ms ➜ Local: http://localhost:4200/ ``` From 515323ce9f5dd126103bd56def6e23d961223d6c Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 26 Nov 2025 01:17:54 +0000 Subject: [PATCH 32/43] [CRON] Wednesday Nov 26, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 15 ++++++++------- .../tutorial/part-1/reusable-components.md | 12 ++++++------ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 1289562178..b040efec52 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -146,12 +146,12 @@ super-rentals │ │ ├── vendor.css │ │ └── vendor.js │ ├── assets +│ │ ├── app-BLYFtP0M.js │ │ ├── app-BsLReVUA.css -│ │ ├── app-myYcjx1Q.js -│ │ ├── main-BeA5_w8X.js -│ │ ├── modules-4-12-CcvGdp1a.js -│ │ ├── tests-BA0c5HIe.js -│ │ └── tests-CZyZLpGa.css +│ │ ├── main-DzdGV7ET.js +│ │ ├── modules-4-12-nY7iKrEk.js +│ │ ├── tests-CZyZLpGa.css +│ │ └── tests-CcPkBSo7.js │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -222,12 +222,13 @@ building... building... + Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 627ms +Babel: @embroider/macros (1) | 632ms @@ -240,7 +241,7 @@ Babel: @embroider/macros (1) | 627ms - VITE v7.2.4 ready in 4232 ms + VITE v7.2.4 ready in 4401 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 59704b29b7..f676834a94 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -93,7 +93,6 @@ $ npm start Building Building - Environment: development Environment: development @@ -106,21 +105,22 @@ building... Build successful (13286ms) -Build successful (13286ms) - Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 636ms +Babel: @embroider/macros (1) | 623ms +Build successful (13286ms) + + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 630ms +Babel: @embroider/macros (1) | 648ms - VITE v7.2.4 ready in 4237 ms + VITE v7.2.4 ready in 4313 ms ➜ Local: http://localhost:4200/ ``` From 6e810b2b6f91726ca4195394c01896d82f8fedcd Mon Sep 17 00:00:00 2001 From: Tomster Date: Thu, 27 Nov 2025 01:16:37 +0000 Subject: [PATCH 33/43] [CRON] Thursday Nov 27, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 11 +++++------ guides/release/tutorial/part-1/reusable-components.md | 8 +++++--- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index b040efec52..e89de5348c 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -211,9 +211,8 @@ $ npm start Building -Environment: development - Building +Environment: development Environment: development @@ -222,13 +221,13 @@ building... building... - Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 632ms +Babel: @embroider/macros (1) | 619ms + @@ -237,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 627ms +Babel: @embroider/macros (1) | 632ms - VITE v7.2.4 ready in 4401 ms + VITE v7.2.4 ready in 4275 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index f676834a94..f460a9454e 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -93,6 +93,7 @@ $ npm start Building Building + Environment: development Environment: development @@ -107,7 +108,8 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 623ms +Babel: @embroider/macros (1) | 624ms + @@ -116,11 +118,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 648ms +Babel: @embroider/macros (1) | 638ms - VITE v7.2.4 ready in 4313 ms + VITE v7.2.4 ready in 4286 ms ➜ Local: http://localhost:4200/ ``` From ee4e5ff9ad14f29417109882c47481c994ac91ca Mon Sep 17 00:00:00 2001 From: Tomster Date: Fri, 28 Nov 2025 01:15:56 +0000 Subject: [PATCH 34/43] [CRON] Friday Nov 28, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 10 +++++----- guides/release/tutorial/part-1/reusable-components.md | 9 ++++----- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index e89de5348c..3008bdd97b 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -211,9 +211,10 @@ $ npm start Building -Building Environment: development +Building + Environment: development building... @@ -226,8 +227,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 619ms - +Babel: @embroider/macros (1) | 620ms @@ -236,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 632ms +Babel: @embroider/macros (1) | 649ms - VITE v7.2.4 ready in 4275 ms + VITE v7.2.4 ready in 4302 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index f460a9454e..9a6b1007b7 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -91,13 +91,12 @@ $ npm start > vite Building +Environment: development Building Environment: development -Environment: development - building... building... @@ -108,7 +107,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 624ms +Babel: @embroider/macros (1) | 629ms @@ -118,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 638ms +Babel: @embroider/macros (1) | 630ms - VITE v7.2.4 ready in 4286 ms + VITE v7.2.4 ready in 4225 ms ➜ Local: http://localhost:4200/ ``` From 1ee8b5b0a6bb9f8a9a0eb3e34aa7a33ada0cbf9f Mon Sep 17 00:00:00 2001 From: Tomster Date: Sat, 29 Nov 2025 01:17:26 +0000 Subject: [PATCH 35/43] [CRON] Saturday Nov 29, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 7 +++---- guides/release/tutorial/part-1/reusable-components.md | 9 ++++----- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 3008bdd97b..a5ba5f9b69 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -210,7 +210,6 @@ $ npm start > vite Building - Environment: development Building @@ -227,7 +226,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 620ms +Babel: @embroider/macros (1) | 645ms @@ -236,11 +235,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 649ms +Babel: @embroider/macros (1) | 666ms - VITE v7.2.4 ready in 4302 ms + VITE v7.2.4 ready in 4430 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 9a6b1007b7..b785e576fc 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -91,10 +91,10 @@ $ npm start > vite Building + Environment: development Building - Environment: development building... @@ -107,8 +107,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 629ms - +Babel: @embroider/macros (1) | 656ms @@ -117,11 +116,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 630ms +Babel: @embroider/macros (1) | 646ms - VITE v7.2.4 ready in 4225 ms + VITE v7.2.4 ready in 4509 ms ➜ Local: http://localhost:4200/ ``` From acf05ed92b0e22d663cfbd5bfd87b1ec5504b422 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 30 Nov 2025 01:25:07 +0000 Subject: [PATCH 36/43] [CRON] Sunday Nov 30, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 9 +++++---- guides/release/tutorial/part-1/reusable-components.md | 10 ++++++---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index a5ba5f9b69..9e13a00a33 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -210,12 +210,13 @@ $ npm start > vite Building -Environment: development Building Environment: development +Environment: development + building... building... @@ -226,7 +227,7 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 645ms +Babel: @embroider/macros (1) | 626ms @@ -235,11 +236,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 666ms +Babel: @embroider/macros (1) | 631ms - VITE v7.2.4 ready in 4430 ms + VITE v7.2.4 ready in 4367 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index b785e576fc..1e8b680d45 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -92,9 +92,10 @@ $ npm start Building +Building + Environment: development -Building Environment: development building... @@ -107,7 +108,8 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 656ms +Babel: @embroider/macros (1) | 636ms + @@ -116,11 +118,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 646ms +Babel: @embroider/macros (1) | 630ms - VITE v7.2.4 ready in 4509 ms + VITE v7.2.4 ready in 4279 ms ➜ Local: http://localhost:4200/ ``` From 367c13221b6901e7ef56600f8301916c6b17b4d0 Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 1 Dec 2025 01:29:33 +0000 Subject: [PATCH 37/43] [CRON] Monday Dec 01, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 16 ++++++++-------- .../tutorial/part-1/reusable-components.md | 11 +++++------ 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 9e13a00a33..7c9f56e7c8 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -150,8 +150,8 @@ super-rentals │ │ ├── app-BsLReVUA.css │ │ ├── main-DzdGV7ET.js │ │ ├── modules-4-12-nY7iKrEk.js -│ │ ├── tests-CZyZLpGa.css -│ │ └── tests-CcPkBSo7.js +│ │ ├── tests-COIbazLv.js +│ │ └── tests-DwNWl6nq.css │ ├── ember-welcome-page │ │ └── images │ │ └── construction.png @@ -225,22 +225,22 @@ building... Build successful (9761ms) -Slowest Nodes (totalTime >= 5%) | Total (avg) --+- -Babel: @embroider/macros (1) | 626ms +Build successful (9761ms) +Slowest Nodes (totalTime >= 5%) | Total (avg) +-+- +Babel: @embroider/macros (1) | 596ms -Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 631ms +Babel: @embroider/macros (1) | 594ms - VITE v7.2.4 ready in 4367 ms + VITE v7.2.4 ready in 3714 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 1e8b680d45..ee228720a0 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -92,10 +92,10 @@ $ npm start Building -Building - Environment: development +Building + Environment: development building... @@ -108,8 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 636ms - +Babel: @embroider/macros (1) | 561ms @@ -118,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 630ms +Babel: @embroider/macros (1) | 586ms - VITE v7.2.4 ready in 4279 ms + VITE v7.2.4 ready in 3668 ms ➜ Local: http://localhost:4200/ ``` From 8071994c5bc8901f1bcf8913d68d3fa97a224162 Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 2 Dec 2025 01:18:52 +0000 Subject: [PATCH 38/43] [CRON] Tuesday Dec 02, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 12 ++++++------ .../release/tutorial/part-1/reusable-components.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 7c9f56e7c8..6eadead69f 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -225,22 +225,22 @@ building... Build successful (9761ms) -Build successful (9761ms) - - Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 596ms +Babel: @embroider/macros (1) | 631ms +Build successful (9761ms) + + Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 594ms +Babel: @embroider/macros (1) | 639ms - VITE v7.2.4 ready in 3714 ms + VITE v7.2.6 ready in 4294 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index ee228720a0..62931172df 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -108,7 +108,7 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 561ms +Babel: @embroider/macros (1) | 618ms @@ -117,11 +117,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 586ms +Babel: @embroider/macros (1) | 628ms - VITE v7.2.4 ready in 3668 ms + VITE v7.2.6 ready in 4279 ms ➜ Local: http://localhost:4200/ ``` From 26ea7a6b9e587d2939d3394a5fe09d9542006db5 Mon Sep 17 00:00:00 2001 From: Tomster Date: Sat, 6 Dec 2025 01:16:42 +0000 Subject: [PATCH 39/43] [CRON] Saturday Dec 06, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 31 +++++-------------- .../tutorial/part-1/reusable-components.md | 19 ++---------- 2 files changed, 10 insertions(+), 40 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 6eadead69f..c2100035e4 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -24,8 +24,8 @@ To verify that your installation was successful, run: ```shell $ ember --version -ember-cli: 6.8.0 -node: 20.19.5 +ember-cli: 6.8.1 +node: 20.19.6 os: linux x64 ``` @@ -146,11 +146,11 @@ super-rentals │ │ ├── vendor.css │ │ └── vendor.js │ ├── assets -│ │ ├── app-BLYFtP0M.js │ │ ├── app-BsLReVUA.css -│ │ ├── main-DzdGV7ET.js -│ │ ├── modules-4-12-nY7iKrEk.js -│ │ ├── tests-COIbazLv.js +│ │ ├── app-Btcfrdj6.js +│ │ ├── main-CPNhydK_.js +│ │ ├── modules-4-12-DlFHOw37.js +│ │ ├── tests-B0yrp3vO.js │ │ └── tests-DwNWl6nq.css │ ├── ember-welcome-page │ │ └── images @@ -211,36 +211,21 @@ $ npm start Building -Building - -Environment: development - Environment: development building... -building... - - -Build successful (9761ms) - - -Slowest Nodes (totalTime >= 5%) | Total (avg) --+- -Babel: @embroider/macros (1) | 631ms - - Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 639ms +Babel: @embroider/macros (1) | 390ms - VITE v7.2.6 ready in 4294 ms + VITE v7.2.6 ready in 3761 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 62931172df..abc94652fa 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -94,34 +94,19 @@ Building Environment: development -Building - -Environment: development - building... -building... - - -Build successful (13286ms) - - -Slowest Nodes (totalTime >= 5%) | Total (avg) --+- -Babel: @embroider/macros (1) | 618ms - - Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 628ms +Babel: @embroider/macros (1) | 398ms - VITE v7.2.6 ready in 4279 ms + VITE v7.2.6 ready in 3869 ms ➜ Local: http://localhost:4200/ ``` From db7f883d1b2c0f3934bbbd1bebbcdb59a0048e3f Mon Sep 17 00:00:00 2001 From: Tomster Date: Sun, 7 Dec 2025 01:25:08 +0000 Subject: [PATCH 40/43] [CRON] Sunday Dec 07, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 5 +++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index c2100035e4..37898ae19e 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -221,11 +221,12 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 390ms +Babel: @embroider/macros (1) | 410ms +Babel: ember-tracked-storage-polyfill (1) | 26ms - VITE v7.2.6 ready in 3761 ms + VITE v7.2.6 ready in 4022 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index abc94652fa..03682fd2cb 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -102,11 +102,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 398ms +Babel: @embroider/macros (1) | 396ms - VITE v7.2.6 ready in 3869 ms + VITE v7.2.6 ready in 3836 ms ➜ Local: http://localhost:4200/ ``` From 864c1bf662e24576c390c27a7ee080902d6542d6 Mon Sep 17 00:00:00 2001 From: Tomster Date: Mon, 8 Dec 2025 01:19:44 +0000 Subject: [PATCH 41/43] [CRON] Monday Dec 08, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 5 ++--- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index 37898ae19e..c202918865 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -221,12 +221,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 410ms -Babel: ember-tracked-storage-polyfill (1) | 26ms +Babel: @embroider/macros (1) | 390ms - VITE v7.2.6 ready in 4022 ms + VITE v7.2.6 ready in 3788 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 03682fd2cb..c1c6c10810 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -102,11 +102,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 396ms +Babel: @embroider/macros (1) | 385ms - VITE v7.2.6 ready in 3836 ms + VITE v7.2.6 ready in 3758 ms ➜ Local: http://localhost:4200/ ``` From 2b917d692919a4ec3784b3451558a9cebf332908 Mon Sep 17 00:00:00 2001 From: Tomster Date: Tue, 9 Dec 2025 01:19:17 +0000 Subject: [PATCH 42/43] [CRON] Tuesday Dec 09, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index c202918865..cc1aa67d93 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -221,11 +221,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 390ms +Babel: @embroider/macros (1) | 399ms - VITE v7.2.6 ready in 3788 ms + VITE v7.2.7 ready in 3906 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index c1c6c10810..6ccba0f91b 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -102,11 +102,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 385ms +Babel: @embroider/macros (1) | 399ms - VITE v7.2.6 ready in 3758 ms + VITE v7.2.7 ready in 3872 ms ➜ Local: http://localhost:4200/ ``` From 9edecf2656852b2bbab16aa4a6012d0a429f93fc Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 10 Dec 2025 01:19:54 +0000 Subject: [PATCH 43/43] [CRON] Wednesday Dec 10, 2025 --- Commit: ember-learn/super-rentals-tutorial@ee2747508b0384f5bf4fa927e639b6c5ba4f96eb Script: https://github.com/ember-learn/super-rentals-tutorial/blob/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/ee2747508b0384f5bf4fa927e639b6c5ba4f96eb/checks --- guides/release/tutorial/part-1/orientation.md | 4 ++-- guides/release/tutorial/part-1/reusable-components.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index cc1aa67d93..6ccea3458f 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -221,11 +221,11 @@ Build successful (9761ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 399ms +Babel: @embroider/macros (1) | 365ms - VITE v7.2.7 ready in 3906 ms + VITE v7.2.7 ready in 3144 ms ➜ Local: http://localhost:4200/ ``` diff --git a/guides/release/tutorial/part-1/reusable-components.md b/guides/release/tutorial/part-1/reusable-components.md index 6ccba0f91b..726f20d157 100644 --- a/guides/release/tutorial/part-1/reusable-components.md +++ b/guides/release/tutorial/part-1/reusable-components.md @@ -102,11 +102,11 @@ Build successful (13286ms) Slowest Nodes (totalTime >= 5%) | Total (avg) -+- -Babel: @embroider/macros (1) | 399ms +Babel: @embroider/macros (1) | 363ms - VITE v7.2.7 ready in 3872 ms + VITE v7.2.7 ready in 3180 ms ➜ Local: http://localhost:4200/ ```