Skip to content

Commit df8e8d4

Browse files
committed
chore(release): 19.0.0-next.0
1 parent 4620484 commit df8e8d4

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [19.0.0-next.0](https://github.com/kyubisation/angular-server-side-configuration/compare/v18.2.0...v19.0.0-next.0) (2024-11-22)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* The minified and 32bit binaries are removed.
11+
12+
* remove unused binaries ([#110](https://github.com/kyubisation/angular-server-side-configuration/issues/110)) ([4620484](https://github.com/kyubisation/angular-server-side-configuration/commit/4620484d71b281239f57ce42b7f2d303e1997a2c))
13+
14+
15+
### Features
16+
17+
* update to Angular 19 ([#108](https://github.com/kyubisation/angular-server-side-configuration/issues/108)) ([6d3d153](https://github.com/kyubisation/angular-server-side-configuration/commit/6d3d1533414e9e8a3492f3e40215c07f6a4b9312))
18+
519
## [18.2.0](https://github.com/kyubisation/angular-server-side-configuration/compare/v18.1.0...v18.2.0) (2024-08-30)
620

721
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Dockerfile
254254
FROM nginx:alpine
255255

256256
# Install ngssc binary
257-
ADD https://github.com/kyubisation/angular-server-side-configuration/releases/download/v18.2.0/ngssc_64bit /usr/sbin/ngssc
257+
ADD https://github.com/kyubisation/angular-server-side-configuration/releases/download/v19.0.0-next.0/ngssc_64bit /usr/sbin/ngssc
258258
RUN chmod +x /usr/sbin/ngssc
259259

260260
# Add ngssc init script

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-server-side-configuration",
3-
"version": "18.2.0",
3+
"version": "19.0.0-next.0",
44
"description": "Configure an angular application on the server",
55
"scripts": {
66
"build:lib": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-lib.mts",

projects/angular-server-side-configuration/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-server-side-configuration",
3-
"version": "18.2.0",
3+
"version": "19.0.0-next.0",
44
"description": "Configure an angular application on the server",
55
"repository": {
66
"type": "git",
@@ -27,9 +27,9 @@
2727
"migrations": "./schematics/migration.json"
2828
},
2929
"peerDependencies": {
30-
"@angular/core": "^18.0.0"
30+
"@angular/core": "^19.0.0"
3131
},
3232
"dependencies": {
3333
"glob": "^10.0.0"
3434
}
35-
}
35+
}

projects/angular-server-side-configuration/schematics/migration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"factory": "./ng-update/index#updateToV17"
1313
},
1414
"dockerfile": {
15-
"version": "18.2.0",
15+
"version": "19.0.0-next.0",
1616
"description": "Updates the download url for ngssc",
1717
"factory": "./ng-update/index#dockerfile"
1818
}
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)