Skip to content

Commit ae01c01

Browse files
chore: release 1.16.0 [skip ci]
1 parent 3994d99 commit ae01c01

File tree

19 files changed

+77
-54
lines changed

19 files changed

+77
-54
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [1.16.0](https://github.com/analogjs/analog/compare/v1.15.1...v1.16.0) (2025-04-29)
2+
3+
### Bug Fixes
4+
5+
- **nx-plugin:** add middleware include to app templates, update docs ([#1701](https://github.com/analogjs/analog/issues/1701)) ([1ff4ebb](https://github.com/analogjs/analog/commit/1ff4ebb1f0dee0857ee5f4f86a0c18962f731b57))
6+
- **platform:** align logic for determining client only rendering ([#1695](https://github.com/analogjs/analog/issues/1695)) ([1f7f560](https://github.com/analogjs/analog/commit/1f7f5601f43e4a9dd99c4783a20eaeb2b55b83a3))
7+
- **platform:** allow marked extensions to add new renderers ([#1708](https://github.com/analogjs/analog/issues/1708)) ([a0bfb70](https://github.com/analogjs/analog/commit/a0bfb705c097f12bfd13f46f8da516c1eff0033c))
8+
- **storybook-angular:** adjust peer deps versions ([0042da6](https://github.com/analogjs/analog/commit/0042da6955e170f6f9e2ee6865e0b72525318366))
9+
- **storybook-angular:** adjust vite peer dep ([17e23d5](https://github.com/analogjs/analog/commit/17e23d5bd75d56e6f5957ff7509c649ad807a226))
10+
- **storybook-angular:** move storybook to peer deps ([dc91f4b](https://github.com/analogjs/analog/commit/dc91f4be0af0dcccef4b0380b0861399e3cf185d))
11+
- **storybook-angular:** only include explicit deps in package.json ([#1703](https://github.com/analogjs/analog/issues/1703)) ([63ef9fe](https://github.com/analogjs/analog/commit/63ef9fec6a9b66637192ec0cf4e30820e0258e43))
12+
- **vite-plugin-angular:** allow the plugin to be imported with commonjs/require ([#1710](https://github.com/analogjs/analog/issues/1710)) ([84cb758](https://github.com/analogjs/analog/commit/84cb758f6bb256fa5c9875a6bdf5564bcbc80ca5))
13+
- **vite-plugin-angular:** check for compiler when using JiT and HMR ([#1693](https://github.com/analogjs/analog/issues/1693)) ([0173944](https://github.com/analogjs/analog/commit/01739448589da6100a3b9cfd4274174db3f1050e))
14+
- **vite-plugin-nitro:** fix behavior when opting out of prerendering ([#1688](https://github.com/analogjs/analog/issues/1688)) ([aa7f02a](https://github.com/analogjs/analog/commit/aa7f02abc457d2d8d7a2af97b4fb1847ebb0ae19))
15+
- **vite-plugin-nitro:** remove compressed index files for SSR-only rendering ([#1700](https://github.com/analogjs/analog/issues/1700)) ([06419c1](https://github.com/analogjs/analog/commit/06419c108f7753a50990e85ee28995c50affc079))
16+
17+
### Features
18+
19+
- **content:** add ability to pass extensions to marked instance ([#1707](https://github.com/analogjs/analog/issues/1707)) ([47d1598](https://github.com/analogjs/analog/commit/47d15989fdcfa3a9dfa072ebe5925381b6812cbb))
20+
- introduce @analogjs/storybook-angular package ([#1699](https://github.com/analogjs/analog/issues/1699)) ([f0c5760](https://github.com/analogjs/analog/commit/f0c5760226fe6c80b63e6c521d2ecaacdb2f3b86))
21+
- **nx-plugin:** update templates to use Tailwind version 4.x ([#1692](https://github.com/analogjs/analog/issues/1692)) ([2e561ed](https://github.com/analogjs/analog/commit/2e561ed41e2be22893115455a2f57f6082856a58))
22+
- **vite-plugin-nitro:** make source root configurable/optional ([#1681](https://github.com/analogjs/analog/issues/1681)) ([6477173](https://github.com/analogjs/analog/commit/6477173e7b4ab3759421b96bbd4c6df1aea25b05))
23+
124
# [1.16.0-beta.15](https://github.com/analogjs/analog/compare/v1.16.0-beta.14...v1.16.0-beta.15) (2025-04-28)
225

326
### 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.16.0-beta.15",
3+
"version": "1.16.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.16.0-beta.15",
3+
"version": "1.16.0",
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.16.0-beta.15"
35+
"@analogjs/vite-plugin-angular": "^1.16.0"
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.16.0-beta.15",
3+
"version": "1.16.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.16.0-beta.15",
3+
"version": "1.16.0",
44
"type": "module",
55
"license": "MIT",
66
"author": "Brandon Roberts",

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.16.0-beta.15",
19-
"@analogjs/router": "^1.16.0-beta.15",
18+
"@analogjs/content": "^1.16.0",
19+
"@analogjs/router": "^1.16.0",
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.16.0-beta.15",
42-
"@analogjs/vite-plugin-angular": "^1.16.0-beta.15",
43-
"@analogjs/vitest-angular": "^1.16.0-beta.15",
41+
"@analogjs/platform": "^1.16.0",
42+
"@analogjs/vite-plugin-angular": "^1.16.0",
43+
"@analogjs/vitest-angular": "^1.16.0",
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.16.0-beta.15",
19-
"@analogjs/router": "^1.16.0-beta.15",
18+
"@analogjs/content": "^1.16.0",
19+
"@analogjs/router": "^1.16.0",
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.16.0-beta.15",
42-
"@analogjs/vite-plugin-angular": "^1.16.0-beta.15",
43-
"@analogjs/vitest-angular": "^1.16.0-beta.15",
41+
"@analogjs/platform": "^1.16.0",
42+
"@analogjs/vite-plugin-angular": "^1.16.0",
43+
"@analogjs/vitest-angular": "^1.16.0",
4444
"@angular-devkit/build-angular": "^17.2.0",
4545
"@angular/cli": "^17.2.0",
4646
"@angular/compiler-cli": "^17.2.0",

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

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
},
1616
"private": true,
1717
"dependencies": {
18-
"@analogjs/content": "^1.16.0-beta.15",
19-
"@analogjs/router": "^1.16.0-beta.15",
18+
"@analogjs/content": "^1.16.0",
19+
"@analogjs/router": "^1.16.0",
2020
"@angular/animations": "^19.0.0",
2121
"@angular/common": "^19.0.0",
2222
"@angular/compiler": "^19.0.0",
@@ -36,9 +36,9 @@
3636
"zone.js": "~0.15.0"
3737
},
3838
"devDependencies": {
39-
"@analogjs/platform": "^1.16.0-beta.15",
40-
"@analogjs/vite-plugin-angular": "^1.16.0-beta.15",
41-
"@analogjs/vitest-angular": "^1.16.0-beta.15",
39+
"@analogjs/platform": "^1.16.0",
40+
"@analogjs/vite-plugin-angular": "^1.16.0",
41+
"@analogjs/vitest-angular": "^1.16.0",
4242
"@angular-devkit/build-angular": "^19.0.0",
4343
"@angular/build": "^19.0.0",
4444
"@angular/cli": "^19.0.0",

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

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

0 commit comments

Comments
 (0)