Skip to content

Commit 46cd129

Browse files
committed
fix: update dependencies
- update readme for v2.0.1 release
1 parent dcf411b commit 46cd129

File tree

8 files changed

+2735
-728
lines changed

8 files changed

+2735
-728
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,13 @@ To run and test the demo apps you need to replace the placeholder `__YOUR_DSN_HE
191191

192192
## Changelog
193193

194+
### 2.0.1 - (25.03.2021)
195+
196+
- fix issues with Angular
197+
- fix issues with user data on android
198+
199+
Thanks to [@jeremypele](https://github.com/jeremypele) and [@jerbob92](https://github.com/jerbob92)!
200+
194201
### 2.0.0-alpha.1 – (10.09.2020)
195202

196203
- update Android SDK

demo-ng/package-lock.json

Lines changed: 2468 additions & 550 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo-ng/package.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
{
22
"main": "main.js",
33
"dependencies": {
4-
"@angular/animations": "~10.1.0",
5-
"@angular/common": "~10.1.0",
6-
"@angular/compiler": "~10.1.0",
7-
"@angular/core": "~10.1.0",
8-
"@angular/forms": "~10.1.0",
9-
"@angular/platform-browser": "~10.1.0",
10-
"@angular/platform-browser-dynamic": "~10.1.0",
11-
"@angular/router": "~10.1.0",
12-
"@nativescript/angular": "~10.1.0",
13-
"@nativescript/core": "~7.0.0",
14-
"@nativescript/theme": "~2.3.0",
4+
"@angular/animations": "^10.1.6",
5+
"@angular/common": "^10.1.6",
6+
"@angular/compiler": "^10.1.6",
7+
"@angular/core": "^10.1.6",
8+
"@angular/forms": "^10.1.6",
9+
"@angular/platform-browser": "^10.1.6",
10+
"@angular/platform-browser-dynamic": "^10.1.6",
11+
"@angular/router": "^10.1.6",
12+
"@nativescript/angular": "^10.1.7",
13+
"@nativescript/core": "^7.0.13",
14+
"@nativescript/theme": "^2.3.4",
15+
"nativescript-sentry": "file:../src",
1516
"reflect-metadata": "~0.1.12",
16-
"rxjs": "^6.6.0",
17-
"zone.js": "~0.11.1",
18-
"nativescript-sentry": "file:../src"
17+
"rxjs": "^6.6.6",
18+
"zone.js": "^0.11.4"
1919
},
2020
"devDependencies": {
21-
"@angular/compiler-cli": "~10.1.0",
21+
"@angular/compiler-cli": "^10.1.6",
2222
"@nativescript/android": "7.0.0",
23-
"@nativescript/types": "~7.0.0",
24-
"@nativescript/webpack": "~3.0.0",
25-
"@ngtools/webpack": "~10.1.0",
23+
"@nativescript/ios": "7.2.0",
24+
"@nativescript/types": "^7.0.4",
25+
"@nativescript/webpack": "^3.0.9",
26+
"@ngtools/webpack": "^10.1.7",
2627
"tslint": "~6.1.3",
27-
"typescript": "~3.9.0"
28+
"typescript": "^3.9.9"
2829
},
2930
"scripts": {
3031
"build.plugin": "cd ../src && npm run build",

demo/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"dependencies": {
3-
"@nativescript/theme": "^2.3.3",
3+
"@nativescript/core": "7.0.0",
4+
"@nativescript/theme": "^2.5.0",
45
"nativescript-sentry": "file:../src",
5-
"nativescript-unit-test-runner": "^0.7.0",
6-
"@nativescript/core": "7.0.0"
6+
"nativescript-unit-test-runner": "^0.7.0"
77
},
88
"devDependencies": {
99
"@nativescript/android": "7.0.0",
10-
"@nativescript/ios": "7.0.0",
11-
"@nativescript/types": "^7.0.1",
12-
"@nativescript/webpack": "~3.0.3",
13-
"jasmine-core": "^3.5.0",
14-
"karma": "^5.0.1",
10+
"@nativescript/ios": "7.2.0",
11+
"@nativescript/types": "^7.3.0",
12+
"@nativescript/webpack": "^3.0.9",
13+
"jasmine-core": "^3.7.1",
14+
"karma": "^5.2.3",
1515
"karma-jasmine": "^3.1.1",
1616
"karma-nativescript-launcher": "^0.4.0",
1717
"tslint": "~6.1.3",
18-
"typescript": "~3.9.0"
18+
"typescript": "^3.9.9"
1919
},
2020
"scripts": {
2121
"build.plugin": "cd ../src && npm run build",

src/angular/app.module.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import { InjectionToken, ModuleWithProviders } from '@angular/core';
22
import { SentryErrorHandler } from './error.handler';
3+
import * as i0 from "@angular/core";
34
export interface SentryConfig {
45
dsn: string;
56
discardUncaughtJsExceptions?: boolean;
67
}
78
export declare const SentryService: InjectionToken<SentryConfig>;
89
export declare class SentryModule {
910
static forRoot(config: SentryConfig): ModuleWithProviders<SentryModule>;
11+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SentryModule, never, never, never>;
12+
static ɵinj: i0.ɵɵInjectorDef<SentryModule>;
1013
}
1114
export declare function provideSentryServiceOptions(config: SentryConfig): SentryErrorHandler;

src/angular/error.handler.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { ErrorHandler } from '@angular/core';
2+
import * as i0 from "@angular/core";
23
export declare class SentryErrorHandler implements ErrorHandler {
34
private _config;
45
constructor(_config: any);
56
handleError(err: any): void;
67
private _setDSN;
8+
static ɵfac: i0.ɵɵFactoryDef<SentryErrorHandler, never>;
9+
static ɵprov: i0.ɵɵInjectableDef<SentryErrorHandler>;
710
}

0 commit comments

Comments
 (0)