Skip to content

Commit

Permalink
chore: release 1.10.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Dec 3, 2024
1 parent 999397d commit b5f8645
Show file tree
Hide file tree
Showing 15 changed files with 59 additions and 38 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# [1.10.0](https://github.com/analogjs/analog/compare/v1.9.4...v1.10.0) (2024-12-03)

### Bug Fixes

- **platform:** exclude Nx Module Federation package from optimization ([#1460](https://github.com/analogjs/analog/issues/1460)) ([b767a79](https://github.com/analogjs/analog/commit/b767a79efac843f9d657933eccf8cc63a82fe775))
- **router:** make withExtraRoutes function public ([#1446](https://github.com/analogjs/analog/issues/1446)) ([2008bd8](https://github.com/analogjs/analog/commit/2008bd8059be1f5d1e177078591a17e37f681b33))
- **router:** support transfer state/prerendering for static assets ([#1453](https://github.com/analogjs/analog/issues/1453)) ([3ad2dec](https://github.com/analogjs/analog/commit/3ad2dec2267d8c644737e2ea11580cbcd21dcab9))

### Features

- **create-analog:** update template for latest to Angular v19 ([#1447](https://github.com/analogjs/analog/issues/1447)) ([72b8dc7](https://github.com/analogjs/analog/commit/72b8dc79b2cd28ad66c3a297d1725a4e51974693))
- **nx-plugin:** add template for Angular v19 ([#1451](https://github.com/analogjs/analog/issues/1451)) ([cdff236](https://github.com/analogjs/analog/commit/cdff23662c9b88b342b00c34faa74d285a7be200))
- **router:** add support for visualizing routes for debugging ([#1464](https://github.com/analogjs/analog/issues/1464)) ([e204a71](https://github.com/analogjs/analog/commit/e204a7153e47a311b1a0c8abbb4ec21bd21ebbba))
- **router:** expose form action directive to support server forms ([#1462](https://github.com/analogjs/analog/issues/1462)) ([db4829f](https://github.com/analogjs/analog/commit/db4829f38e71b26493594e18724f8844a74cff23))
- **vite-plugin-nitro:** update Nitro to 2.10.x and add default compatibility date ([#1450](https://github.com/analogjs/analog/issues/1450)) ([5e75b50](https://github.com/analogjs/analog/commit/5e75b507e51364ef1d3619eb5ef74db955bca3ed))
- **vitest-angular:** introduce application bundle-based Vitest builder ([#1443](https://github.com/analogjs/analog/issues/1443)) ([0bbefa0](https://github.com/analogjs/analog/commit/0bbefa0a06c558c37bef30335233f5805a681acd))

### Performance Improvements

- **vite-plugin-angular:** speed up tests by reusing compiler ([#1444](https://github.com/analogjs/analog/issues/1444)) ([a7f4587](https://github.com/analogjs/analog/commit/a7f4587ef2047ce7c623046b650037a77465f9e2))

# [1.10.0-beta.9](https://github.com/analogjs/analog/compare/v1.10.0-beta.8...v1.10.0-beta.9) (2024-12-03)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "analogjs-platform",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/astro-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/astro-angular",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "Use Angular components within Astro",
"type": "module",
"author": "Brandon Roberts <[email protected]>",
Expand Down Expand Up @@ -32,7 +32,7 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"dependencies": {
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9"
"@analogjs/vite-plugin-angular": "^1.10.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=16.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/content/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/content",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "Content Rendering for Analog",
"type": "module",
"author": "Brandon Roberts <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-analog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-analog",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"type": "module",
"license": "MIT",
"author": "Brandon Roberts",
Expand Down
10 changes: 5 additions & 5 deletions packages/create-analog/template-angular-v16/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"test": "ng test"
},
"dependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/router": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@analogjs/router": "^1.10.0",
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
Expand All @@ -38,9 +38,9 @@
"zone.js": "~0.13.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vitest-angular": "^1.10.0-beta.9",
"@analogjs/platform": "^1.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vitest-angular": "^1.10.0",
"@angular-devkit/build-angular": "^16.2.0",
"@angular/cli": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/create-analog/template-angular-v17/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"test": "ng test"
},
"dependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/router": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@analogjs/router": "^1.10.0",
"@angular/animations": "^17.2.0",
"@angular/common": "^17.2.0",
"@angular/compiler": "^17.2.0",
Expand All @@ -38,9 +38,9 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vitest-angular": "^1.10.0-beta.9",
"@analogjs/platform": "^1.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vitest-angular": "^1.10.0",
"@angular-devkit/build-angular": "^17.2.0",
"@angular/cli": "^17.2.0",
"@angular/compiler-cli": "^17.2.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/create-analog/template-blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"private": true,
"dependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/router": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@analogjs/router": "^1.10.0",
"@angular/animations": "^19.0.0",
"@angular/build": "^19.0.0",
"@angular/common": "^19.0.0",
Expand All @@ -37,9 +37,9 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vitest-angular": "^1.10.0-beta.9",
"@analogjs/platform": "^1.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vitest-angular": "^1.10.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"jsdom": "^22.0.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/create-analog/template-latest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"private": true,
"dependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/router": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@analogjs/router": "^1.10.0",
"@angular/animations": "^19.0.0",
"@angular/build": "^19.0.0",
"@angular/common": "^19.0.0",
Expand All @@ -38,9 +38,9 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vitest-angular": "^1.10.0-beta.9",
"@analogjs/platform": "^1.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vitest-angular": "^1.10.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"jsdom": "^22.0.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/create-analog/template-minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"private": true,
"dependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/router": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@analogjs/router": "^1.10.0",
"@angular/animations": "^19.0.0",
"@angular/build": "^19.0.0",
"@angular/common": "^19.0.0",
Expand All @@ -38,9 +38,9 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vitest-angular": "^1.10.0-beta.9",
"@analogjs/platform": "^1.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vitest-angular": "^1.10.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"jsdom": "^22.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/platform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/platform",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "The fullstack meta-framework for Angular",
"type": "module",
"author": "Brandon Roberts <[email protected]>",
Expand Down Expand Up @@ -29,8 +29,8 @@
},
"dependencies": {
"nitropack": "^2.10.0",
"@analogjs/vite-plugin-angular": "^1.10.0-beta.9",
"@analogjs/vite-plugin-nitro": "^1.10.0-beta.9",
"@analogjs/vite-plugin-angular": "^1.10.0",
"@analogjs/vite-plugin-nitro": "^1.10.0",
"vitefu": "^0.2.5"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/router",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "Filesystem-based routing for Angular",
"type": "module",
"author": "Brandon Roberts <[email protected]>",
Expand All @@ -24,7 +24,7 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"peerDependencies": {
"@analogjs/content": "^1.10.0-beta.9",
"@analogjs/content": "^1.10.0",
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/router": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vite-plugin-angular",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "Vite Plugin for Angular",
"type": "module",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-nitro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vite-plugin-nitro",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "A Vite plugin for adding a nitro API server",
"type": "module",
"author": "Brandon Roberts <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@analogjs/vitest-angular",
"version": "1.10.0-beta.9",
"version": "1.10.0",
"description": "Vitest Builder for Angular",
"type": "commonjs",
"author": "Brandon Roberts <[email protected]>",
Expand Down

0 comments on commit b5f8645

Please sign in to comment.