Skip to content

Commit

Permalink
increase version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasgrassauer committed Jan 26, 2018
1 parent 04702e4 commit a255b80
Show file tree
Hide file tree
Showing 18 changed files with 39 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.dynatrace.openkit'
version '0.5.0'
version '1.0.0'

apply plugin: 'java'

Expand Down
9 changes: 7 additions & 2 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,17 @@ customize OpenKit. This includes device specific information like operating syst

| Method Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `withApplicationVersion` | sets the application version | `"0.4"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 0.4"` |
| `withApplicationVersion` | sets the application version | `"1.0.0"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 1.0.0"` |
| `withManufacturer` | sets the manufacturer | `"Dynatrace"` |
| `withModelID` | sets the model id | `"OpenKitDevice"` |
| `withBeaconCacheMaxRecordAge` | sets the maximum age of an entry in the beacon cache in milliseconds | 1 h 45 min |
| `withBeaconCacheLowerMemoryBoundary` | sets the lower memory boundary of the beacon cache in bytes | 100 MB |
| `withBeaconCacheUpperMemoryBoundary` | sets the upper memory boundary of the beacon cache in bytes | 80 MB |
| `enableVerbose` | enables extended log output for OpenKit if the default logger is used | `false` |

:grey_exclamation: Please refer to the the JavaDoc for more information regarding possible configuration values.

## SSL/TLS Security in OpenKit

All OpenKit communication to the backend happens via HTTPS (TLS/SSL based on Java Framework support).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private OpenKitConstants() {
public static final String WEBREQUEST_TAG_HEADER = "X-dynaTrace";

// default values used in configuration
public static final String DEFAULT_APPLICATION_VERSION = "0.5.0";
public static final String DEFAULT_APPLICATION_VERSION = "1.0.0";
public static final String DEFAULT_OPERATING_SYSTEM = "OpenKit " + DEFAULT_APPLICATION_VERSION;
public static final String DEFAULT_MANUFACTURER = "Dynatrace";
public static final String DEFAULT_MODEL_ID = "OpenKitDevice";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ActionValuesTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ActionValuesTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ApplicationAndDeviceTestShared;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ApplicationAndDeviceTest extends AbstractLocalAppMonTest {

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.CaptureCrashesOffTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class CaptureCrashesOffTest extends AbstractLocalAppMonTest {

public void setUp() throws InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.CaptureErrorsOffTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class CaptureErrorsOffTest extends AbstractLocalAppMonTest {

public void setUp() throws InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.CaptureOffTestShared;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class CaptureOffTest extends AbstractLocalAppMonTest {

public void setUp() throws InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.CascadedActionTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class CascadedActionTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ChangeMonitorURLTestShared;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ChangeMonitorURLTest extends AbstractLocalAppMonTest {

public void setUp() throws InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ChangeSendIntervalTestShared;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ChangeSendIntervalTest extends AbstractLocalAppMonTest {

public void setUp() throws InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ComplexSessionTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ComplexSessionTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ErrorAndCrashTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ErrorAndCrashTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.MultipleRootActionTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class MultipleRootActionTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.ParallelActionTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class ParallelActionTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.SimpleActionTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class SimpleActionTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@
import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.StringURLWebRequestTestShared;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class StringURLWebRequestTest extends AbstractLocalAppMonTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@

import com.dynatrace.openkit.test.TestHTTPClient.Request;
import com.dynatrace.openkit.test.shared.WebRequestTimingTestShared;
import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;

@Ignore("Integration tests are ignored")
public class WebRequestTimingTest extends AbstractLocalAppMonTest {

@Test
Expand Down

0 comments on commit a255b80

Please sign in to comment.