Skip to content

Commit 16b4a38

Browse files
committed
Merge branch 'master' of github.com:firebase/firebase-js-sdk
2 parents 62b914e + bc3b405 commit 16b4a38

File tree

44 files changed

+193
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+193
-89
lines changed

integration/compat-interop/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
},
1010
"dependencies": {
1111
"@firebase/app": "0.7.0",
12-
"@firebase/app-compat": "0.1.0",
12+
"@firebase/app-compat": "0.1.1",
1313
"@firebase/analytics": "0.7.0",
14-
"@firebase/analytics-compat": "0.1.0",
15-
"@firebase/auth": "0.17.0",
16-
"@firebase/auth-compat": "0.1.0",
14+
"@firebase/analytics-compat": "0.1.1",
15+
"@firebase/auth": "0.17.1",
16+
"@firebase/auth-compat": "0.1.1",
1717
"@firebase/functions": "0.7.0",
18-
"@firebase/functions-compat": "0.1.0",
18+
"@firebase/functions-compat": "0.1.1",
1919
"@firebase/messaging": "0.9.0",
2020
"@firebase/messaging-compat": "0.1.0",
2121
"@firebase/performance": "0.5.0",

integration/firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
88
},
99
"devDependencies": {
10-
"firebase": "9.0.0",
10+
"firebase": "9.0.1",
1111
"@types/chai": "4.2.14",
1212
"@types/mocha": "8.2.3",
1313
"chai": "4.3.4",

integration/firestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@firebase/app": "0.7.0",
18-
"@firebase/firestore-compat": "0.1.0",
18+
"@firebase/firestore-compat": "0.1.1",
1919
"@types/mocha": "8.2.3",
2020
"gulp": "4.0.2",
2121
"gulp-filter": "7.0.0",

integration/messaging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:manual": "mocha --exit"
1010
},
1111
"devDependencies": {
12-
"firebase": "9.0.0",
12+
"firebase": "9.0.1",
1313
"chai": "4.3.4",
1414
"chromedriver": "91.0.0",
1515
"express": "4.17.1",

packages/analytics-compat/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# @firebase/analytics-compat
22

3-
## 0.1.0
4-
### Minor Changes
3+
## 0.1.1
54

5+
### Patch Changes
66

7+
- [`cd15df0d1`](https://github.com/firebase/firebase-js-sdk/commit/cd15df0d1f51110f448e4284244b06be8d37f1c3) [#5400](https://github.com/firebase/firebase-js-sdk/pull/5400) (fixes [#2903](https://github.com/firebase/firebase-js-sdk/issues/2903)) - Fix cjs builds by removing the named export from app-compat
78

8-
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
9+
## 0.1.0
10+
11+
### Minor Changes
912

13+
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
1014

1115
### Patch Changes
1216

packages/analytics-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/analytics-compat",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -14,7 +14,7 @@
1414
"@firebase/app-compat": "0.x"
1515
},
1616
"devDependencies": {
17-
"@firebase/app-compat": "0.1.0",
17+
"@firebase/app-compat": "0.1.1",
1818
"rollup": "2.52.2",
1919
"@rollup/plugin-json": "4.1.0",
2020
"rollup-plugin-typescript2": "0.30.0",

packages/analytics-compat/src/service.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
import { expect, use } from 'chai';
1818
import { AnalyticsService } from './service';
19-
import { firebase, FirebaseApp } from '@firebase/app-compat';
19+
import firebase, { FirebaseApp } from '@firebase/app-compat';
2020
import * as analyticsExp from '@firebase/analytics';
2121
import { stub, match, SinonStub } from 'sinon';
2222
import * as sinonChai from 'sinon-chai';

packages/app-check-compat/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# @firebase/app-check-compat
22

3-
## 0.1.0
4-
### Minor Changes
3+
## 0.1.1
54

5+
### Patch Changes
66

7+
- [`cd15df0d1`](https://github.com/firebase/firebase-js-sdk/commit/cd15df0d1f51110f448e4284244b06be8d37f1c3) [#5400](https://github.com/firebase/firebase-js-sdk/pull/5400) (fixes [#2903](https://github.com/firebase/firebase-js-sdk/issues/2903)) - Fix cjs builds by removing the named export from app-compat
78

8-
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
9+
## 0.1.0
10+
11+
### Minor Changes
912

13+
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
1014

1115
### Patch Changes
1216

packages/app-check-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app-check-compat",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A compat App Check package for new firebase packages",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -33,7 +33,7 @@
3333
},
3434
"license": "Apache-2.0",
3535
"devDependencies": {
36-
"@firebase/app-compat": "0.1.0",
36+
"@firebase/app-compat": "0.1.1",
3737
"rollup": "2.52.2",
3838
"@rollup/plugin-commonjs": "17.1.0",
3939
"@rollup/plugin-json": "4.1.0",

packages/app-check-compat/src/service.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
import { expect, use } from 'chai';
1818
import { AppCheckService } from './service';
19-
import { firebase, FirebaseApp } from '@firebase/app-compat';
19+
import firebase, { FirebaseApp } from '@firebase/app-compat';
2020
import * as appCheckExp from '@firebase/app-check';
2121
import { stub, match, SinonStub } from 'sinon';
2222
import * as sinonChai from 'sinon-chai';
@@ -65,7 +65,7 @@ describe('Firebase App Check > Service', () => {
6565

6666
it(
6767
'activate("string") calls modular initializeAppCheck() with a ' +
68-
'ReCaptchaV3Provider',
68+
'ReCaptchaV3Provider',
6969
() => {
7070
const initializeAppCheckStub = stub(appCheckExp, 'initializeAppCheck');
7171
service = new AppCheckService(app);
@@ -80,7 +80,7 @@ describe('Firebase App Check > Service', () => {
8080

8181
it(
8282
'activate(CustomProvider) calls modular initializeAppCheck() with' +
83-
' a CustomProvider',
83+
' a CustomProvider',
8484
() => {
8585
const initializeAppCheckStub = stub(appCheckExp, 'initializeAppCheck');
8686
service = new AppCheckService(app);
@@ -167,7 +167,7 @@ describe('Firebase App Check > Service', () => {
167167

168168
it('onTokenChanged() throws if activate() has not been called', async () => {
169169
service = createTestService(app);
170-
expect(() => service.onTokenChanged(() => {})).to.throw(
170+
expect(() => service.onTokenChanged(() => { })).to.throw(
171171
AppCheckError.USE_BEFORE_ACTIVATION
172172
);
173173
});

packages/app-compat/CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# @firebase/app-compat
22

3-
## 0.1.0
4-
### Minor Changes
3+
## 0.1.1
54

5+
### Patch Changes
66

7+
- [`cd15df0d1`](https://github.com/firebase/firebase-js-sdk/commit/cd15df0d1f51110f448e4284244b06be8d37f1c3) [#5400](https://github.com/firebase/firebase-js-sdk/pull/5400) (fixes [#2903](https://github.com/firebase/firebase-js-sdk/issues/2903)) - Fix cjs builds by removing the named export from app-compat
78

8-
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
9+
* [`1b33fda40`](https://github.com/firebase/firebase-js-sdk/commit/1b33fda40ddc48e9ed28e94607bf100159f5b80e) [#5385](https://github.com/firebase/firebase-js-sdk/pull/5385) (fixes [#5382](https://github.com/firebase/firebase-js-sdk/issues/5382)) - Remove private types in app-compat
910

11+
## 0.1.0
12+
13+
### Minor Changes
14+
15+
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
1016

1117
### Patch Changes
1218

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": "../../config/api-extractor.json",
3+
// Point it to your entry point d.ts file.
4+
"mainEntryPointFilePath": "<projectFolder>/dist/src/index.d.ts",
5+
"dtsRollup": {
6+
"enabled": true,
7+
"untrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>.d.ts",
8+
"publicTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-public.d.ts"
9+
},
10+
"apiReport": {
11+
/**
12+
* only dts rollup is needed for app-compat
13+
*/
14+
"enabled": false
15+
}
16+
}

packages/app-compat/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app-compat",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "The primary entrypoint to the Firebase JS SDK",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -14,15 +14,17 @@
1414
"scripts": {
1515
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
1616
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
17-
"build": "rollup -c",
17+
"build": "rollup -c && yarn api-report",
1818
"build:deps": "lerna run --scope @firebase/app-compat --include-dependencies build",
1919
"dev": "rollup -c -w",
2020
"test": "run-p lint test:all",
2121
"test:all": "run-p test:browser test:node",
2222
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2323
"test:browser": "karma start --single-run",
2424
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
25-
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js"
25+
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js",
26+
"api-report": "api-extractor run --local --verbose",
27+
"typings:public": "node ../../scripts/exp/use_typings.js ./dist/app-compat-public.d.ts"
2628
},
2729
"license": "Apache-2.0",
2830
"dependencies": {

packages/app-compat/src/firebaseApp.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ export interface _FirebaseApp {
5959
/**
6060
* Global context object for a collection of services using
6161
* a shared authentication state.
62+
*
63+
* marked as internal because it references internal types exported from @firebase/app
64+
* @internal
6265
*/
6366
export class FirebaseAppImpl implements Compat<_FirebaseAppExp>, _FirebaseApp {
6467
private container: ComponentContainer;

packages/app-compat/src/index.lite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import { createFirebaseNamespaceLite } from './lite/firebaseNamespaceLite';
1919
import { registerCoreComponents } from './registerCoreComponents';
2020

21-
export const firebase = createFirebaseNamespaceLite();
21+
const firebase = createFirebaseNamespaceLite();
2222

2323
registerCoreComponents('lite');
2424

packages/app-compat/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if (isBrowser() && (self as any).firebase !== undefined) {
3939
}
4040
}
4141

42-
export const firebase = firebaseNamespace;
42+
const firebase = firebaseNamespace;
4343

4444
registerCoreComponents();
4545

packages/app-compat/src/public-types.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717
import { LogCallback, LogLevelString, LogOptions } from '@firebase/logger';
18-
import { FirebaseAppImpl, _FirebaseApp } from './firebaseApp';
18+
import { _FirebaseApp } from './firebaseApp';
1919

2020
export interface FirebaseOptions {
2121
apiKey?: string;
@@ -31,6 +31,10 @@ export interface FirebaseOptions {
3131
export interface FirebaseAppConfig {
3232
name?: string;
3333
automaticDataCollectionEnabled?: boolean;
34+
}
35+
36+
interface FirebaseAppContructor {
37+
new (): FirebaseApp;
3438
}
3539

3640
/**
@@ -81,7 +85,7 @@ export interface FirebaseNamespace {
8185
*
8286
* DO NOT call this constuctor directly (use firebase.app() instead).
8387
*/
84-
App: typeof FirebaseAppImpl;
88+
App: FirebaseAppContructor;
8589
};
8690

8791
/**

packages/auth-compat/CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# @firebase/auth-compat
22

3-
## 0.1.0
4-
### Minor Changes
3+
## 0.1.1
54

5+
### Patch Changes
66

7+
- Updated dependencies [[`66596f3f8`](https://github.com/firebase/firebase-js-sdk/commit/66596f3f8c747158bf30b62d8f579f7eecf97081)]:
8+
- @firebase/auth@0.17.1
79

8-
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
10+
## 0.1.0
11+
12+
### Minor Changes
913

14+
- [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
1015

1116
### Patch Changes
1217

packages/auth-compat/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/auth-compat",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "FirebaseAuth compatibility package that uses API style compatible with Firebase@8 and prior versions",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.node.cjs.js",
@@ -31,7 +31,7 @@
3131
"@firebase/app-compat": "0.x"
3232
},
3333
"dependencies": {
34-
"@firebase/auth": "0.17.0",
34+
"@firebase/auth": "0.17.1",
3535
"@firebase/auth-types": "0.11.0",
3636
"@firebase/component": "0.5.6",
3737
"@firebase/util": "1.3.0",
@@ -41,7 +41,7 @@
4141
},
4242
"license": "Apache-2.0",
4343
"devDependencies": {
44-
"@firebase/app-compat": "0.1.0",
44+
"@firebase/app-compat": "0.1.1",
4545
"@rollup/plugin-json": "4.1.0",
4646
"rollup": "2.52.2",
4747
"rollup-plugin-replace": "2.2.0",

packages/auth/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @firebase/auth
22

3+
## 0.17.1
4+
5+
### Patch Changes
6+
7+
- [`66596f3f8`](https://github.com/firebase/firebase-js-sdk/commit/66596f3f8c747158bf30b62d8f579f7eecf97081) [#5397](https://github.com/firebase/firebase-js-sdk/pull/5397) (fixes [#5392](https://github.com/firebase/firebase-js-sdk/issues/5392)) - Fix typings where the constructor of `OAuthProvider` was missing.
8+
39
## 0.17.0
410

511
### Minor Changes

packages/auth/cordova/demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
]
3737
},
3838
"dependencies": {
39-
"@firebase/app": "0.0.900",
40-
"@firebase/auth": "0.0.900",
39+
"@firebase/app": "0.7.0",
40+
"@firebase/auth": "0.17.0",
4141
"@firebase/logger": "0.2.6",
42-
"@firebase/util": "1.1.0",
42+
"@firebase/util": "1.3.0",
4343
"cordova-plugin-browsertab": "0.2.0",
4444
"cordova-plugin-buildinfo": "4.0.0",
4545
"cordova-plugin-compat": "1.2.0",

packages/auth/demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"dev": "rollup -c -w"
1717
},
1818
"dependencies": {
19-
"@firebase/app": "0.0.900",
20-
"@firebase/auth": "0.0.900",
19+
"@firebase/app": "0.7.0",
20+
"@firebase/auth": "0.17.0",
2121
"@firebase/logger": "0.2.6",
22-
"@firebase/util": "1.1.0",
22+
"@firebase/util": "1.3.0",
2323
"tslib": "^2.1.0"
2424
},
2525
"license": "Apache-2.0",

packages/auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/auth",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "The Firebase Authenticaton component of the Firebase JS SDK.",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/node/index.js",
@@ -41,7 +41,7 @@
4141
"test:node:integration": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --integration",
4242
"test:node:integration:local": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --integration --local",
4343
"test:webdriver": "rollup -c test/integration/webdriver/static/rollup.config.js && ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --webdriver",
44-
"api-report": "api-extractor run --local --verbose && ts-node-script ../../repo-scripts/prune-dts/prune-dts.ts --input dist/auth-public.d.ts --output dist/auth-public.d.ts",
44+
"api-report": "api-extractor run --local --verbose",
4545
"doc": "api-documenter markdown --input temp --output docs",
4646
"build:doc": "yarn build && yarn doc",
4747
"typings:public": "node ../../scripts/exp/use_typings.js ./dist/auth-public.d.ts"

0 commit comments

Comments
 (0)