Skip to content

Commit 665969c

Browse files
chore: release 1.4.0 [skip ci]
1 parent bc106c5 commit 665969c

File tree

13 files changed

+44
-25
lines changed

13 files changed

+44
-25
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# [1.4.0](https://github.com/analogjs/analog/compare/v1.3.1...v1.4.0) (2024-05-27)
2+
3+
### Bug Fixes
4+
5+
- adjust peer dependency ranges ([1bc4e59](https://github.com/analogjs/analog/commit/1bc4e59e3cc850a4cf6bf8956ebd38ff70265e4b))
6+
- **content:** getContentFile stream should be finished ([#1110](https://github.com/analogjs/analog/issues/1110)) ([e0ce74f](https://github.com/analogjs/analog/commit/e0ce74fd0513122ba416ac4be74bd4e55d3d572d))
7+
- **create-analog:** add fixes for v18 template ([#1095](https://github.com/analogjs/analog/issues/1095)) ([759a341](https://github.com/analogjs/analog/commit/759a341d84e3d0c2cf4b9f4c6d27e6a4ea91445b))
8+
- **nx-plugin:** update typescript dependency ([#1109](https://github.com/analogjs/analog/issues/1109)) ([4b9a51e](https://github.com/analogjs/analog/commit/4b9a51e8eaf450e5c91020bb93b37c104a54bf68))
9+
- **platform:** add Nx deps as peerDependencies ([#1117](https://github.com/analogjs/analog/issues/1117)) ([b255370](https://github.com/analogjs/analog/commit/b255370182e8ff8bc1792113c8583a824c42ad8b))
10+
- **vite-plugin-angular:** add @analogjs/router to vitest inline deps ([#1098](https://github.com/analogjs/analog/issues/1098)) ([69f4efa](https://github.com/analogjs/analog/commit/69f4efa0f6785d51518d1c087c515f9220a69ca6))
11+
- **vitest-angular:** rename testing setup file and add to build ([#1106](https://github.com/analogjs/analog/issues/1106)) ([9ef4f3b](https://github.com/analogjs/analog/commit/9ef4f3b5bb224b600e6ddc8cc7ef689f676cff12))
12+
- **vitest-angular:** update peerDependencies for @angular-devkit/architect version pattern range ([#1113](https://github.com/analogjs/analog/issues/1113)) ([1765d48](https://github.com/analogjs/analog/commit/1765d481bceb7815665bd4461109607d52551100))
13+
14+
### Features
15+
16+
- **create-analog:** simplify prompts add template for upcoming Angular v18 release ([#1094](https://github.com/analogjs/analog/issues/1094)) ([29c42a1](https://github.com/analogjs/analog/commit/29c42a133a0602667b3282620ef7ad1365262476))
17+
- introduce vitest-angular package ([#1105](https://github.com/analogjs/analog/issues/1105)) ([4d73542](https://github.com/analogjs/analog/commit/4d735423a7cffb523fca2d5866c08cb4d1594bdb))
18+
- update deps and apps to Angular v18 release ([#1101](https://github.com/analogjs/analog/issues/1101)) ([ef9bbee](https://github.com/analogjs/analog/commit/ef9bbeee6aeb73edcb66d94569fffd5443273ca5))
19+
120
# [1.4.0-beta.11](https://github.com/analogjs/analog/compare/v1.4.0-beta.10...v1.4.0-beta.11) (2024-05-27)
221

322
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "analogjs-platform",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"license": "MIT",
55
"type": "module",
66
"scripts": {

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.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "Use Angular components within Astro",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -28,7 +28,7 @@
2828
"url": "https://github.com/analogjs/analog.git"
2929
},
3030
"dependencies": {
31-
"@analogjs/vite-plugin-angular": "^1.4.0-beta.11"
31+
"@analogjs/vite-plugin-angular": "^1.4.0"
3232
},
3333
"peerDependencies": {
3434
"@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.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "Content Rendering for Analog",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",

packages/create-analog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-analog",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"type": "module",
55
"license": "MIT",
66
"author": "Brandon Roberts",

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

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

packages/create-analog/template-blog/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"test": "ng test"
1616
},
1717
"dependencies": {
18-
"@analogjs/content": "^1.4.0-beta.11",
19-
"@analogjs/router": "^1.4.0-beta.11",
18+
"@analogjs/content": "^1.4.0",
19+
"@analogjs/router": "^1.4.0",
2020
"@angular/animations": "^18.0.0",
2121
"@angular/common": "^18.0.0",
2222
"@angular/compiler": "^18.0.0",
@@ -37,8 +37,8 @@
3737
"zone.js": "~0.14.0"
3838
},
3939
"devDependencies": {
40-
"@analogjs/platform": "^1.4.0-beta.11",
41-
"@analogjs/vite-plugin-angular": "^1.4.0-beta.11",
40+
"@analogjs/platform": "^1.4.0",
41+
"@analogjs/vite-plugin-angular": "^1.4.0",
4242
"@angular-devkit/build-angular": "^18.0.0",
4343
"@angular/cli": "^18.0.0",
4444
"@angular/compiler-cli": "^18.0.0",

packages/create-analog/template-latest/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
},
1616
"private": true,
1717
"dependencies": {
18-
"@analogjs/content": "^1.4.0-beta.11",
19-
"@analogjs/router": "^1.4.0-beta.11",
18+
"@analogjs/content": "^1.4.0",
19+
"@analogjs/router": "^1.4.0",
2020
"@angular/animations": "^18.0.0",
2121
"@angular/common": "^18.0.0",
2222
"@angular/compiler": "^18.0.0",
@@ -37,8 +37,8 @@
3737
"zone.js": "~0.14.3"
3838
},
3939
"devDependencies": {
40-
"@analogjs/platform": "^1.4.0-beta.11",
41-
"@analogjs/vite-plugin-angular": "^1.4.0-beta.11",
40+
"@analogjs/platform": "^1.4.0",
41+
"@analogjs/vite-plugin-angular": "^1.4.0",
4242
"@angular-devkit/build-angular": "^18.0.0",
4343
"@angular/cli": "^18.0.0",
4444
"@angular/compiler-cli": "^18.0.0",

packages/platform/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/platform",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "The fullstack meta-framework for Angular",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -25,8 +25,8 @@
2525
},
2626
"dependencies": {
2727
"nitropack": "^2.9.0",
28-
"@analogjs/vite-plugin-angular": "^1.4.0-beta.11",
29-
"@analogjs/vite-plugin-nitro": "^1.4.0-beta.11"
28+
"@analogjs/vite-plugin-angular": "^1.4.0",
29+
"@analogjs/vite-plugin-nitro": "^1.4.0"
3030
},
3131
"peerDependencies": {
3232
"@nx/angular": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",

packages/router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/router",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "Filesystem-based routing for Angular",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -24,7 +24,7 @@
2424
"@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
2525
},
2626
"optionalDependencies": {
27-
"@analogjs/content": "^1.4.0-beta.11"
27+
"@analogjs/content": "^1.4.0"
2828
},
2929
"dependencies": {
3030
"tslib": "^2.0.0"

packages/vite-plugin-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/vite-plugin-angular",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "Vite Plugin for Angular",
55
"type": "module",
66
"keywords": [

packages/vite-plugin-nitro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/vite-plugin-nitro",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "A Vite plugin for adding a nitro API server",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",

packages/vitest-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@analogjs/vitest-angular",
3-
"version": "1.4.0-beta.11",
3+
"version": "1.4.0",
44
"description": "Vitest Builder for Angular",
55
"type": "module",
66
"author": "Brandon Roberts <robertsbt@gmail.com>",

0 commit comments

Comments
 (0)