Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .idea/sentry.iml

This file was deleted.

4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
sudo: required
addons:
chrome: stable

language: dart
dart:
- stable
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# package:sentry changelog

## 3.0.0

- Support Web
- `SentryClient` from `package:sentry/sentry.dart` with conditional import
- `SentryBrowserClient` for web from `package:sentry/browser_client.dart`
- `SentryIOClient` for VM and Flutter from `package:sentry/io_client.dart`

## 2.3.1

- Support non-standard port numbers and paths in DSN URL.
Expand Down
7 changes: 7 additions & 0 deletions lib/browser_client.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

export 'src/base.dart';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs the license header.

export 'src/version.dart';
export 'src/browser.dart';
7 changes: 7 additions & 0 deletions lib/io_client.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

export 'src/base.dart';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs the license header.

export 'src/version.dart';
export 'src/io.dart';
Loading