Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-02-07Bump up master repo to 7.0.0-SNAPSHOT for photonJeff Johnston1-1/+1
- also bump up docker, vagrant, and mylyn features by major release Change-Id: Ie659e7ed6d18a8bca3876594964a128fdd50a150 Reviewed-on: https://git.eclipse.org/r/116885 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-10Add Automatic-Module-Name for Java 9 compatibility.Alexander Kurtakov1-0/+1
Change-Id: I02614fe84d9913960a566998b0feea0e704adb28 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/111356 Tested-by: Hudson CI
2017-08-10Update master Docker and Vagrant features to 3.2.0.Jeff Johnston1-1/+1
Change-Id: Ib6236429c1d6218af9ec624716e7c6aa5744ceb1 Reviewed-on: https://git.eclipse.org/r/102822 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-06-12Update master to 3.1.0 for docker/vagrant and 6.1.0 for other features.Jeff Johnston1-1/+1
Change-Id: I804031ab7ece5a45fbf6ad82d19a02c5def923ad Reviewed-on: https://git.eclipse.org/r/98965 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-03-06Update master to next major release.Jeff Johnston1-1/+1
Change-Id: I8a022908249736d7f85ed51d718b6966d877b1b9 Reviewed-on: https://git.eclipse.org/r/92299 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2016-12-13Update Docker and Vagrant pom / feature xml files to 2.3.0-SNAPSHOT.Jeff Johnston1-1/+1
Change-Id: I3ef5ab0c75b481d9e9c7beb8bd321356a7fbed34 Reviewed-on: https://git.eclipse.org/r/87087 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2016-08-26releng: Bump feature versions for next release.Alexander Kurtakov1-1/+1
Containers and vagrant bumped to 2.2.0-SNAPSHOT. All the rest to 5.2.0-SNAPSHOT. Change-Id: Ida8c4a4a25b3655efa288936dd587d5e44668816 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/79831 Tested-by: Hudson CI
2016-06-08Update master branch to next proposed releaseJeff Johnston1-1/+1
Change-Id: Ib02edbae6ef3b80417dee68c55d25f067e3cf7fa Reviewed-on: https://git.eclipse.org/r/74844 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2016-01-26docker: Move hamcrest-wrap to Java 8.Alexander Kurtakov3-5/+5
Not a real change as the bundle has no source itself but cleans a warning from the workspace. Change-Id: Ib66e337f1ee159a7fd08d3e14e4946296202b00e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/65157 Tested-by: Hudson CI
2015-12-23Fix versioning of poms in valgrind and containers folders.Roland Grunberg1-1/+1
On Maven 3.3.9, mismatched version between parent/child poms seems to cause build failure. Change-Id: Ia921538fbff201de4e0b3f31ab1525e5f159c1f7 Reviewed-on: https://git.eclipse.org/r/63223 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
2015-12-21Remove unused classes in docker core and ui plugins.Roland Grunberg1-0/+1
Change-Id: I8d6e46dec6688b3812524e0e45c456510bac7df3 Reviewed-on: https://git.eclipse.org/r/63056 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
2015-11-19bug 471666 - Show nested elements with most relevant info in Explorer ViewXavier Coulon1-1/+0
Showing ports, links and volumes for each container Loading ContainerInfo in background if it was not already loaded (hence, a new method in IDockerContainer) Make sure the 'volumes', 'ports' and 'links' nodes remain expanded when the 'refresh' command is called Added UI tests Running SWTBot tests on MacOSX (until they can also run on Hudson at Eclipse) Change-Id: Id7b5f3982c660970824a8c8a564d49c9717fc0ce Signed-off-by: Xavier Coulon <xcoulon@redhat.com> Reviewed-on: https://git.eclipse.org/r/60725 Tested-by: Hudson CI
2015-11-18Bug 475883 - Add "Refresh" commands in the containers and images categoriesXavier Coulon2-2/+2
Removed the 'Refresh' button in the Docker Explorer view toolbar as it was confusing and somehow misleading (it would reload the connections, that's all) Added a single 'Refresh' command handler on the 'Containers' and 'Images' The 'Refresh' command associated with this handler is the default Eclipse 'Refresh' command, so the user can invoke the command from the 'File>Refresh' menu. Refactored the IDockerConnectionManagerListener to specify the actual connection that was changed Remove IDockerConnectionManagerListener implementation in both DockerContainersView and DockerImagesView since those views already respond to selection changes in the Docker Explorer view. Changes above fix the problem where a connection with the same hash (eg: a connection was removed and then added back) would end up with the old DockerExplorerView$ContainerRefresher instance being registered instead of the new one. Added groups for commands and specified the order in which commands should appear in the context menus (some declarations in plugin.xml were moved to ease the reading of the chaining between commands) Added tests to verify that the list of containers and images changes in the Docker Explorer after calling the command. Change-Id: Ic3b2cf5466c818deb1645e563d8a394eb7c67d57 Signed-off-by: Xavier Coulon <xcoulon@redhat.com> Reviewed-on: https://git.eclipse.org/r/59609 Tested-by: Hudson CI
2015-11-03Bug 477912 - Mock the Docker daemon in unit testsXavier Coulon10-0/+98
- Refactoring the code to move the logic of discovering connection settings into a new interface/implementation. - Added a hierarchy of connection settings classes for Unix sockets vs TCP - New pluggable utility class to discover connection settings - Refactored the ConnectionManager by moving the storage logic (load/save connections) in an external class that implements the new IDockerConnectionStorageManager interface - In unit tests, the interfaces mentionned above are mocked to return anything needed (no connection, valid socket, etc.) - Added a bundle to wrap the org.hamcrest dependencies and expose a single exported package for Mockito. (See https://bugs.eclipse.org/bugs/show_bug.cgi?id=403676#c10) Change-Id: I3dcfcd674ab8c17eff63d037a7a1d6f2250e1677 Signed-off-by: Xavier Coulon <xcoulon@redhat.com> Reviewed-on: https://git.eclipse.org/r/56859 Tested-by: Hudson CI

    Back to the top