From fbeac60cdde6f6504900e9c403fa4e79528ca067 Mon Sep 17 00:00:00 2001 From: Sean Perkins <13732623+sean-perkins@users.noreply.github.com> Date: Thu, 23 May 2024 16:19:03 -0400 Subject: [PATCH 1/3] chore(deps): upgrade to superagent v9 (#5091) --- packages/@ionic/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@ionic/cli/package.json b/packages/@ionic/cli/package.json index 01f76d6a1..4f62812d2 100644 --- a/packages/@ionic/cli/package.json +++ b/packages/@ionic/cli/package.json @@ -63,7 +63,7 @@ "split2": "^3.0.0", "ssh-config": "^1.1.1", "stream-combiner2": "^1.1.1", - "superagent": "^8.0.9", + "superagent": "^9.0.2", "tar": "^6.0.1", "tslib": "^2.0.1" }, From cea5728c8b228ab336a98bee5655364e720336a4 Mon Sep 17 00:00:00 2001 From: Brandy Smith Date: Tue, 18 Mar 2025 11:20:58 -0400 Subject: [PATCH 2/3] fix(angular): change default project type to Standalone (#5104) Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> --- packages/@ionic/cli/src/commands/start.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/@ionic/cli/src/commands/start.ts b/packages/@ionic/cli/src/commands/start.ts index 8328e3efc..2beb5db70 100644 --- a/packages/@ionic/cli/src/commands/start.ts +++ b/packages/@ionic/cli/src/commands/start.ts @@ -512,17 +512,17 @@ Use the ${input( const angularMode = await this.env.prompt({ type: 'list', name: 'standalone', - message: 'Would you like to build your app with NgModules or Standalone Components? \n Standalone components are a new way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.io/guide/standalone-components\n\n', + message: 'Would you like to build your app with Standalone Components or NgModules? \n Standalone components are the default way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.dev/guide/components\n\n', choices: () => [ - { - name: 'NgModules', - short: 'NgModules', - value: 'ngModules', - }, { name: 'Standalone', short: 'Standalone', value: 'standalone', + }, + { + name: 'NgModules', + short: 'NgModules', + value: 'ngModules', } ], }); From 54a76b5acccce994946c1cba6603d70918f1513d Mon Sep 17 00:00:00 2001 From: Ionitron Date: Tue, 18 Mar 2025 15:26:55 +0000 Subject: [PATCH 3/3] chore(release): publish [skip ci] - @ionic/cli@7.2.1 - cli-scripts@2.1.75 --- packages/@ionic/cli/CHANGELOG.md | 11 +++++++++++ packages/@ionic/cli/package.json | 2 +- packages/cli-scripts/CHANGELOG.md | 8 ++++++++ packages/cli-scripts/package.json | 4 ++-- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/packages/@ionic/cli/CHANGELOG.md b/packages/@ionic/cli/CHANGELOG.md index d1c440d90..26f61eb5f 100644 --- a/packages/@ionic/cli/CHANGELOG.md +++ b/packages/@ionic/cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.2.1](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli@7.2.0...@ionic/cli@7.2.1) (2025-03-18) + + +### Bug Fixes + +* **angular:** change default project type to Standalone ([#5104](https://github.com/ionic-team/ionic-cli/issues/5104)) ([cea5728](https://github.com/ionic-team/ionic-cli/commit/cea5728c8b228ab336a98bee5655364e720336a4)) + + + + + # [7.2.0](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli@7.1.6...@ionic/cli@7.2.0) (2024-01-02) diff --git a/packages/@ionic/cli/package.json b/packages/@ionic/cli/package.json index 4f62812d2..d6fa27f6e 100644 --- a/packages/@ionic/cli/package.json +++ b/packages/@ionic/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/cli", - "version": "7.2.0", + "version": "7.2.1", "description": "A tool for creating and developing Ionic Framework mobile apps.", "homepage": "https://ionicframework.com", "author": "Ionic Team (https://ionicframework.com) ", diff --git a/packages/cli-scripts/CHANGELOG.md b/packages/cli-scripts/CHANGELOG.md index 0357684a5..f6611e9e2 100644 --- a/packages/cli-scripts/CHANGELOG.md +++ b/packages/cli-scripts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.75](https://github.com/ionic-team/ionic-cli/compare/cli-scripts@2.1.74...cli-scripts@2.1.75) (2025-03-18) + +**Note:** Version bump only for package cli-scripts + + + + + ## [2.1.74](https://github.com/ionic-team/ionic-cli/compare/cli-scripts@2.1.73...cli-scripts@2.1.74) (2024-01-02) **Note:** Version bump only for package cli-scripts diff --git a/packages/cli-scripts/package.json b/packages/cli-scripts/package.json index 828df7e4f..c472ef2ba 100644 --- a/packages/cli-scripts/package.json +++ b/packages/cli-scripts/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "cli-scripts", - "version": "2.1.74", + "version": "2.1.75", "bin": { "ionic-cli-scripts": "./bin/ionic-cli-scripts" }, @@ -16,7 +16,7 @@ "main": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { - "@ionic/cli": "7.2.0", + "@ionic/cli": "7.2.1", "@ionic/cli-framework": "6.0.1", "@ionic/utils-fs": "3.1.7", "ansi-styles": "^4.0.0",