Skip to content

Commit 6981fd5

Browse files
committed
Update to latest version of angular 18
1 parent 8cee969 commit 6981fd5

File tree

7 files changed

+5508
-2934
lines changed

7 files changed

+5508
-2934
lines changed

.github/workflows/firebaseui-angular.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
registry-url: 'https://registry.npmjs.org'
2424
- name: checkout
2525
uses: actions/[email protected]
26-
- run: npm ci
26+
- run: npm ci --legacy-peer-deps
2727
- run: npm run build-lib
2828
- run: npm publish ./dist/firebaseui-angular-library
2929
if: github.ref_type == 'tag'

CHANGELOG.MD

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
# 6.3.0
4+
- Add support for AngularFire 18 [#209](https://github.com/RaphaelJenni/FirebaseUI-Angular/issues/209)
5+
36
# 6.2.1
47
- Add support for AngularFire 17 [#206](https://github.com/RaphaelJenni/FirebaseUI-Angular/pull/206) (Thanks to @garri1105)
58

README.MD

+14-13
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@
88
## Compatibility
99

1010
| Angular | Firebase | AngularFire | FirebaseUI | FirebaseUI-Angular | Note |
11-
|---------|----------|-------------|------------|--------------------|---------------------------------------------------------------------------------------------|
12-
| 17.1.0 | ^10.7.2 | ^17.0.1 | ^6.1.0 | 6.2.0 | Dropping old Angular and Firbase versions |
13-
| 17.0.0 | ^9.23.0 | ^7.6.1 | ^6.1.0 | 6.1.5 | |
14-
| 16.0.0 | ^9.23.0 | ^7.6.1 | ^6.1.0 | 6.1.4 | |
15-
| 15.0.0 | ^9.14.0 | ^7.5.0 | ^6.0.2 | 6.1.3 | |
16-
| 14.0.2 | ^9.8.3 | ^7.4.1 | ^6.0.1 | 6.1.2 | |
17-
| 13.0.0 | ^9.3.0 | ^7.1.1 | ^6.0.0 | 6.1.0 | |
18-
| 12.1.0 | ^9.0.2 | ^7.0.4 | ^6.0.0 | 6.0.0 | |
19-
| 12.1.0 | ^8.6.8 | ^6.1.5 | ^4.8.0 | 5.1.3 | |
20-
| 11.0.2 | ^8.2.4 | ^6.1.1 | ^4.7.2 | 5.1.2 | *support for [auth emulator](https://firebase.google.com/docs/emulator-suite/connect_auth)* |
21-
| 11.0.2 | ^8.1.1 | ^6.1.1 | ^4.7.1 | 5.1.1 | |
22-
| 10.2.2 | ^8.0.1 | ^6.0.4 | ^4.7.1 | 5.1.0 | |
23-
| ~8.2.13 | ^7.23.0 | ~5.2.1 | ~4.7.1 | ~4.0.1 | |
11+
|---------|---------|-------------|------------|--------------------|---------------------------------------------------------------------------------------------|
12+
| 18.2.12 | ^11.0.2 | ^18.0.1 | ^6.1.0 | 6.3.0 | |
13+
| 17.1.0 | ^10.7.2 | ^17.0.1 | ^6.1.0 | 6.2.0 | Dropping old Angular and Firbase versions |
14+
| 17.0.0 | ^9.23.0 | ^7.6.1 | ^6.1.0 | 6.1.5 | |
15+
| 16.0.0 | ^9.23.0 | ^7.6.1 | ^6.1.0 | 6.1.4 | |
16+
| 15.0.0 | ^9.14.0 | ^7.5.0 | ^6.0.2 | 6.1.3 | |
17+
| 14.0.2 | ^9.8.3 | ^7.4.1 | ^6.0.1 | 6.1.2 | |
18+
| 13.0.0 | ^9.3.0 | ^7.1.1 | ^6.0.0 | 6.1.0 | |
19+
| 12.1.0 | ^9.0.2 | ^7.0.4 | ^6.0.0 | 6.0.0 | |
20+
| 12.1.0 | ^8.6.8 | ^6.1.5 | ^4.8.0 | 5.1.3 | |
21+
| 11.0.2 | ^8.2.4 | ^6.1.1 | ^4.7.2 | 5.1.2 | *support for [auth emulator](https://firebase.google.com/docs/emulator-suite/connect_auth)* |
22+
| 11.0.2 | ^8.1.1 | ^6.1.1 | ^4.7.1 | 5.1.1 | |
23+
| 10.2.2 | ^8.0.1 | ^6.0.4 | ^4.7.1 | 5.1.0 | |
24+
| ~8.2.13 | ^7.23.0 | ~5.2.1 | ~4.7.1 | ~4.0.1 | |
2425

2526
<sub>Version combinations not documented here __may__ work but are untested.</sub>
2627

angular.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,15 @@
3636
},
3737
"architect": {
3838
"build": {
39-
"builder": "@angular-devkit/build-angular:browser",
39+
"builder": "@angular-devkit/build-angular:application",
4040
"options": {
41-
"outputPath": "dist/firebaseui-angular",
41+
"outputPath": {
42+
"base": "dist/firebaseui-angular"
43+
},
4244
"index": "src/index.html",
43-
"main": "src/main.ts",
44-
"polyfills": "src/polyfills.ts",
45+
"polyfills": [
46+
"src/polyfills.ts"
47+
],
4548
"tsConfig": "src/tsconfig.app.json",
4649
"assets": [
4750
"src/favicon.ico",
@@ -52,12 +55,11 @@
5255
"node_modules/firebaseui/dist/firebaseui.css"
5356
],
5457
"scripts": [],
55-
"vendorChunk": true,
5658
"extractLicenses": false,
57-
"buildOptimizer": false,
5859
"sourceMap": true,
5960
"optimization": false,
60-
"namedChunks": true
61+
"namedChunks": true,
62+
"browser": "src/main.ts"
6163
},
6264
"configurations": {
6365
"production": {
@@ -77,9 +79,7 @@
7779
"outputHashing": "all",
7880
"sourceMap": false,
7981
"namedChunks": false,
80-
"extractLicenses": true,
81-
"vendorChunk": false,
82-
"buildOptimizer": true
82+
"extractLicenses": true
8383
}
8484
},
8585
"defaultConfiguration": ""

0 commit comments

Comments
 (0)