Skip to content

Commit 3148cfd

Browse files
authored
Merge pull request #232 from xdev-software/develop
Release
2 parents 71e831a + 65199d6 commit 3148cfd

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.5.0
2+
* No longer map timezone into container by default
3+
* This should keep tests consistent
4+
15
# 1.4.0
26
* `getNoVncAddress` now returns an auto-login url
37
* The original behavior is still available with `getNoVncAddressRaw`

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>testcontainers-selenium-root</artifactId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.5.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<organization>

testcontainers-selenium-demo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>software.xdev</groupId>
99
<artifactId>testcontainers-selenium-root</artifactId>
10-
<version>1.4.1-SNAPSHOT</version>
10+
<version>1.5.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>testcontainers-selenium-demo</artifactId>
14-
<version>1.4.1-SNAPSHOT</version>
14+
<version>1.5.0-SNAPSHOT</version>
1515
<packaging>jar</packaging>
1616

1717
<organization>

testcontainers-selenium/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>testcontainers-selenium</artifactId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.5.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>testcontainers-selenium</name>

testcontainers-selenium/src/main/java/software/xdev/testcontainers/selenium/containers/browser/BrowserWebDriverContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class BrowserWebDriverContainer<SELF extends BrowserWebDriverContainer<SE
9494

9595
protected static Boolean currentOsWindows; // You should use the method instead, this might be NULL
9696

97-
protected boolean mapTimezoneIntoContainer = true;
97+
protected boolean mapTimezoneIntoContainer = false;
9898

9999
protected boolean validateImageEnabled = true;
100100
protected Duration validateImageGetTimeout = Duration.ofMinutes(5);

0 commit comments

Comments
 (0)