Skip to content

Commit 8051027

Browse files
Merge pull request #1790 from analogjs/beta
chore: release 1.19.0
2 parents 0350fcf + 51a601a commit 8051027

File tree

28 files changed

+702
-581
lines changed

28 files changed

+702
-581
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
# [1.19.0-beta.5](https://github.com/analogjs/analog/compare/v1.19.0-beta.4...v1.19.0-beta.5) (2025-06-26)
2+
3+
### Bug Fixes
4+
5+
- **nx-plugin:** add caret to platform-server package for preset ([a97ad4b](https://github.com/analogjs/analog/commit/a97ad4bae8e8adfc54440321291794c4245b284b))
6+
7+
# [1.19.0-beta.4](https://github.com/analogjs/analog/compare/v1.19.0-beta.3...v1.19.0-beta.4) (2025-06-26)
8+
9+
### Bug Fixes
10+
11+
- **create-analog:** remove extra comma from minimal template ([906998d](https://github.com/analogjs/analog/commit/906998d4f8ed2a5196b0baa563312c8b23252888))
12+
13+
# [1.19.0-beta.3](https://github.com/analogjs/analog/compare/v1.19.0-beta.2...v1.19.0-beta.3) (2025-06-26)
14+
15+
### Bug Fixes
16+
17+
- **create-analog:** update template package.json deps ([#1789](https://github.com/analogjs/analog/issues/1789)) ([abb9900](https://github.com/analogjs/analog/commit/abb990046486bf08880813bed2a5caa5954d4976))
18+
19+
# [1.19.0-beta.2](https://github.com/analogjs/analog/compare/v1.19.0-beta.1...v1.19.0-beta.2) (2025-06-25)
20+
21+
### Bug Fixes
22+
23+
- **create-analog:** add overrides for Vite 7 to templates ([07f0a88](https://github.com/analogjs/analog/commit/07f0a88b9bdb789d96c0823025bb6dee12d008b4))
24+
25+
# [1.19.0-beta.1](https://github.com/analogjs/analog/compare/v1.18.1-beta.2...v1.19.0-beta.1) (2025-06-25)
26+
27+
### Features
28+
29+
- add support for Vite 7.0 ([#1787](https://github.com/analogjs/analog/issues/1787)) ([5c1ec4a](https://github.com/analogjs/analog/commit/5c1ec4a5fccd39ef13501f64945fded7f4138a5c))
30+
31+
## [1.18.1-beta.2](https://github.com/analogjs/analog/compare/v1.18.1-beta.1...v1.18.1-beta.2) (2025-06-25)
32+
33+
### Bug Fixes
34+
35+
- **vite-plugin-nitro:** fix page handler URLs ([#1788](https://github.com/analogjs/analog/issues/1788)) ([5fdcf7f](https://github.com/analogjs/analog/commit/5fdcf7f4dadaaa48acd722983b1f9afb1273679f))
36+
37+
## [1.18.1-beta.1](https://github.com/analogjs/analog/compare/v1.18.0...v1.18.1-beta.1) (2025-06-21)
38+
39+
### Bug Fixes
40+
41+
- **nx-plugin:** support migration for Angular v20 app component ([#1785](https://github.com/analogjs/analog/issues/1785)) ([7f2a240](https://github.com/analogjs/analog/commit/7f2a240195faf89da7063df1feb1371fd229407a))
42+
143
# [1.18.0](https://github.com/analogjs/analog/compare/v1.17.1...v1.18.0) (2025-06-20)
244

345
### Bug Fixes

apps/analog-app/vite.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ export default defineConfig(({ mode, isSsrBuild }) => {
6868
}),
6969
nxViteTsPaths(),
7070
visualizer() as Plugin,
71-
!isSsrBuild &&
72-
inspect({
73-
build: true,
74-
outputDir: '../../.vite-inspect/analog-app',
75-
}),
71+
// !isSsrBuild &&
72+
// inspect({
73+
// build: true,
74+
// outputDir: '../../.vite-inspect/analog-app',
75+
// }),
7676
],
7777
test: {
7878
reporters: ['default'],

apps/docs-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@docusaurus/core": "3.5.2",
1515
"@docusaurus/preset-classic": "3.5.2",
16-
"@mdx-js/react": "^3.0.1",
16+
"@mdx-js/react": "^3.1.0",
1717
"clsx": "^2.1.1",
1818
"prism-react-renderer": "^2.4.0",
1919
"react": "^18.3.1",
@@ -38,6 +38,6 @@
3838
]
3939
},
4040
"engines": {
41-
"node": ">=18.0"
41+
"node": ">=20.0"
4242
}
4343
}

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "analogjs-platform",
3-
"version": "1.18.0",
3+
"version": "1.19.0-beta.5",
44
"license": "MIT",
55
"type": "module",
66
"scripts": {
@@ -56,9 +56,9 @@
5656
"@angular/router": "^20.0.0",
5757
"@angular/ssr": "~20.0.0",
5858
"@astrojs/mdx": "^3.0.1",
59-
"@astrojs/react": "^3.0.0",
59+
"@astrojs/react": "^4.3.0",
6060
"@babel/core": "^7.21.8",
61-
"@mdx-js/react": "3.0.1",
61+
"@mdx-js/react": "3.1.0",
6262
"@nx/angular": "21.2.1",
6363
"@nx/devkit": "21.2.1",
6464
"@trpc/client": "^10.25.0",
@@ -116,7 +116,7 @@
116116
"@semantic-release/exec": "^6.0.3",
117117
"@semantic-release/git": "^10.0.1",
118118
"@storybook/angular": "9.0.9",
119-
"@storybook/builder-vite": "^8.6.12",
119+
"@storybook/builder-vite": "9.0.9",
120120
"@swc-node/register": "1.9.2",
121121
"@swc/cli": "0.6.0",
122122
"@swc/core": "1.5.7",
@@ -125,7 +125,7 @@
125125
"@types/hast": "^3.0.3",
126126
"@types/jest": "29.5.14",
127127
"@types/marked": "^5.0.0",
128-
"@types/node": "18.19.15",
128+
"@types/node": "22.14.0",
129129
"@types/prismjs": "^1.26.0",
130130
"@types/react": "^18.0.21",
131131
"@types/react-dom": "^18.0.6",
@@ -191,9 +191,9 @@
191191
"ts-node": "10.9.1",
192192
"typescript": "~5.8.0",
193193
"vfile": "^6.0.3",
194-
"vite": "6.3.5",
194+
"vite": "7.0.0",
195195
"vite-plugin-eslint": "^1.8.1",
196-
"vite-plugin-inspect": "~0.8",
196+
"vite-plugin-inspect": "11.2.0",
197197
"vite-tsconfig-paths": "4.2.0",
198198
"vitefu": "^1.0.0",
199199
"vitest": "^3.2.0",

packages/astro-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/astro-angular",
3-
"version": "1.18.0",
3+
"version": "1.19.0-beta.5",
44
"description": "Use Angular components within Astro",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/sponsors/brandonroberts"
3333
},
3434
"dependencies": {
35-
"@analogjs/vite-plugin-angular": "^1.18.0"
35+
"@analogjs/vite-plugin-angular": "^1.19.0-beta.5"
3636
},
3737
"peerDependencies": {
3838
"@angular-devkit/build-angular": ">=16.0.0",

packages/content/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/content",
3-
"version": "1.18.0",
3+
"version": "1.19.0-beta.5",
44
"description": "Content Rendering for Analog",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",

packages/create-analog/index.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,6 @@ async function init() {
135135
})),
136136
initial: 1,
137137
},
138-
{
139-
type: useAnalogSFC === undefined ? 'confirm' : null,
140-
name: 'analogSFC',
141-
message: 'Would you like to use Analog SFCs?',
142-
},
143138
{
144139
type: skipTailwind === undefined ? 'confirm' : null,
145140
name: 'tailwind',

packages/create-analog/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-analog",
3-
"version": "1.18.0",
3+
"version": "1.19.0-beta.5",
44
"type": "module",
55
"license": "MIT",
66
"author": "Brandon Roberts",
@@ -21,7 +21,7 @@
2121
],
2222
"main": "index.js",
2323
"engines": {
24-
"node": "^18.13.0 || ^20.0.0"
24+
"node": ">=20.0.0"
2525
},
2626
"repository": {
2727
"type": "git",

packages/create-analog/template-angular-v16/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"test": "ng test"
1616
},
1717
"dependencies": {
18-
"@analogjs/content": "^1.18.0",
19-
"@analogjs/router": "^1.18.0",
18+
"@analogjs/content": "^1.19.0-beta.5",
19+
"@analogjs/router": "^1.19.0-beta.5",
2020
"@angular/animations": "^16.2.0",
2121
"@angular/common": "^16.2.0",
2222
"@angular/compiler": "^16.2.0",
@@ -38,9 +38,9 @@
3838
"zone.js": "~0.13.0"
3939
},
4040
"devDependencies": {
41-
"@analogjs/platform": "^1.18.0",
42-
"@analogjs/vite-plugin-angular": "^1.18.0",
43-
"@analogjs/vitest-angular": "^1.18.0",
41+
"@analogjs/platform": "^1.19.0-beta.5",
42+
"@analogjs/vite-plugin-angular": "^1.19.0-beta.5",
43+
"@analogjs/vitest-angular": "^1.19.0-beta.5",
4444
"@angular-devkit/build-angular": "^16.2.0",
4545
"@angular/cli": "^16.2.0",
4646
"@angular/compiler-cli": "^16.2.0",

packages/create-analog/template-angular-v17/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"test": "ng test"
1616
},
1717
"dependencies": {
18-
"@analogjs/content": "^1.18.0",
19-
"@analogjs/router": "^1.18.0",
18+
"@analogjs/content": "^1.19.0-beta.5",
19+
"@analogjs/router": "^1.19.0-beta.5",
2020
"@angular/animations": "^17.2.0",
2121
"@angular/common": "^17.2.0",
2222
"@angular/compiler": "^17.2.0",
@@ -38,9 +38,9 @@
3838
"zone.js": "~0.14.0"
3939
},
4040
"devDependencies": {
41-
"@analogjs/platform": "^1.18.0",
42-
"@analogjs/vite-plugin-angular": "^1.18.0",
43-
"@analogjs/vitest-angular": "^1.18.0",
41+
"@analogjs/platform": "^1.19.0-beta.5",
42+
"@analogjs/vite-plugin-angular": "^1.19.0-beta.5",
43+
"@analogjs/vitest-angular": "^1.19.0-beta.5",
4444
"@angular-devkit/build-angular": "^17.2.0",
4545
"@angular/cli": "^17.2.0",
4646
"@angular/compiler-cli": "^17.2.0",

0 commit comments

Comments
 (0)