Skip to main content
summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-08-31Bug 518031 - XML External Entity Vulnerability in Eclipse IDEI20170904-0230I20170903-2000I20170902-1500I20170901-2000Brian de Alwis1-0/+72
Ensure XML processors are configured to use XMLConstants.FEATURE_SECURE_PROCESSING=true to avoid accessing external DTDs and expanding external entities. Change-Id: Ic29e4a0aab1ea5f642ce49914bc6fcecd238efe8 Signed-off-by: Brian de Alwis <bsd@mt.ca>
2017-08-18Bug 521108 - Move p2 core to Java 8Alexander Kurtakov19-192/+184
Bump minor version, add missing Override annotations, remove duplicate type declarations, try-with-resources. Change-Id: I4dc835c94677520b8219b9eae1157cfd41f37ab6 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2017-06-22Bug 517929 - Update POMs in the master for 4.8 releaseI20170622-0950Alexander Kurtakov1-1/+1
Point to 4.8 parent pom. Change-Id: Ic754058b23731334425f98aaca527bcf90991a7d Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2016-06-28Bug 496465 - Prep for 4.7 (Oxygen) and 4.6.1 (Neon.1) maintenance buildsThomas Watson1-1/+1
Change-Id: I90a85375f7864204f482d76130da772798f0a28b Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-04-19Bug 489706 - Replace new Integer() with Integer.valueOf()I20160419-0800Alex Blewitt1-2/+2
There are a lot of new Integer() calls in the P2 codebase, which results in many duplicate values of Integer being stored, particularly when performing updates or checks. Integer.valueOf() performs this caching already, which means that it's unnecessary to call new Integer() and instead can call Integer.valueOf(). In the places where the int value is being used directly, the call can be further optimised to Integer.parseInt() instead. Replace calls to new Integer() with Integer.valueOf() or .parseInt() as appropriate. Change-Id: Ic760e66084c856fc90cb7c8a358007c975213638 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-01-02update pomsPascal Rapicault1-1/+1
Change-Id: Icc9608edfcdd0a615c4edf42df4398a1f30a271c
2016-01-02Update bundles versionsPascal Rapicault1-1/+1
Change-Id: I479ee5a8b507090ce496e7b334e0055e027896fe
2016-01-02Bug 466249 - Propagate more exceptions to ease problem analysisEike Stepper1-3/+9
We often get problem reports with stack traces that "end" somewhere in p2 even though it's obvious from looking at these places that there was a causing exception. These causing exceptions are often not propagated with the new exception that p2 creates and throws. I'm not sure if that's on purpose or just an oversight. I've prepared a proposal to enhance these places and make it easier to analyze the problems that users report. Change-Id: Iaa53448c53c18301113b42dbe80558eccec49e8e Signed-off-by: Eike Stepper <stepper@esc-net.de>
2015-07-02Bug 469765 - Prep for 4.6 (Neon) and 4.5 (Mars) maintenance buildsI20150818-0800I20150811-1400I20150805-2000I20150805-0800I20150804-2000I20150804-0800I20150803-2000I20150803-0800I20150802-2000I20150728-0800I20150721-0800I20150714-0800I20150707-0800Thomas Watson1-1/+1
- update parent poms for 4.6
2015-05-27Bug 390470 - o.e.e.p2.core does not select services based on ranking.I20150531-2000I20150529-2000I20150528-0700I20150527-2010Wayne Beaton1-3/+3
When hunting for a service, use the one with the highest ranking. Change-Id: Idd06b037685602b5a54b6ee767f7ba04b71b443d Signed-off-by: Wayne Beaton <wayne@eclipse.org>
2015-05-15bug390470 Use ranking to select servicesmhussein1-3/+3
In 3.7.1, org.eclipse.equinox.p2.core does not select services based on ranking. This is a serious issue and impacts installing your own services. This patch uses existing service.ranking property to rank services. Check bug390470 for more details on the problems and solution. Change-Id: I36382a260f12cb1df82be21959eb5aac97fcbd0f Signed-off-by: mhussein <mohamed_hussein@mentor.com>
2015-04-24Revert "Bug 462282 - Prevent (automatic) update to new Mac layout"Pascal Rapicault2-8/+1
This reverts commit c2595d75a8a591bcae06c4e5efb6aa30dde3952d.
2015-04-24Bug 462282 - Prevent (automatic) update to new Mac layoutPascal Rapicault2-1/+8
This is the first part of the fix. It consists in adding a new action that will be able to fail the installation. Change-Id: I254612f37707b02940b4c24a2e97b98786b16d31 Signed-off-by: Pascal Rapicault <pascal@rapicorp.com>
2015-04-02Bug 463819 - Be more clear about how the info message can be presentedChristian Georgi1-5/+8
Bug: 463819 Change-Id: I58f34033065fedffcf65325c0718b3ff26ff23ac Signed-off-by: Christian Georgi <christian.georgi@sap.com>
2015-03-31Check for Windows packages using Windows registryChristian Georgi1-1/+2
Bug: 456811 Change-Id: I4bce66b7a8ffe1f2844d5a3f3f19c6a8e1c96bee Signed-off-by: Christian Georgi <christian.georgi@sap.com>
2015-02-26Bug 460967 - Use type safe service retrievingI20150303-0800Alexander Kurtakov1-2/+3
Instead of retrieving services based on their String class name there is newer implementation that takes the class directly and returns the correct class preventing casts. Change-Id: I8b26f4d294b927f4c28a6ba4e68e35bd401df4ec Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-16Bug 453228 - Consider removing org.eclipse.equinox.p2.qlPascal Rapicault1-1/+0
2014-11-12Add missing @since tagPascal Rapicault1-0/+1
2014-11-06Update pom.xml version to match manifestPascal Rapicault1-1/+1
2014-11-04Add support to open information dialogPascal Rapicault2-2/+12
2014-06-19Bug 436736 - Prep for 4.5 (Mars) and 4.4 maintenance buildsPaul Webster1-1/+1
Update parent versions from 4.4.0 to 4.5.0 Signed-off-by: Paul Webster <pwebster@ca.ibm.com>
2013-12-11bug 423827 - Disable "Treat above errors like fatal compile errors"I20131217-0800I20131212-1600I20131211-2000Krzysztof Daniel1-1/+28
Change-Id: If2b8652ff7deed04dea308880d444f1b4e7c6ffe Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
2013-12-10bug 423628 - False positives warnings in the official build.I20131211-0800I20131210-2000I20131210-0800Krzysztof Daniel1-1/+2
False positives are caused by projects settings being different than build settings. Typical example is that project is configured to warn about local variable hiding a field, and suppression is added, but the regular releng build is not configured to warn, and it finds unnecessary suppression. I have did following things: * fixed warnings that I was able to fix (renamed variables, added generics, comments, etc, etc). * reduced the number of warnings in tests * commented warnings that must not be suppresed in the workspace unless we want "Unnecessary @SuppressWarnings" at build time. Change-Id: Iab2c962e5c331eab170b5f6e08d9bb29d05f0cc4
2013-12-09bug 418662 - Get rid of compile warnings in official build -Krzysztof Daniel1-1/+2
org.eclipse.equinox.p2.ui.discovery Change-Id: Iec3ef1ec194481d950d313a0f3ce24ce6a7fa93f Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
2013-12-09bug 418662 - Get rid of compile warnings in official build -Krzysztof Daniel1-1/+2
org.eclipse.equinox.p2.discovery.compatibility Change-Id: Ieaf254570551fef783d1cc6bbf79daf51847d5fa
2013-11-19Bug 422026 - Get rid of ColletionUtils.empty[Set|List|Map]Alexander Kurtakov2-39/+5
Now that p2 has Java 1.5 as a minimum there is no reason to not use the JVM methods. Change-Id: I89444e8d1e174c316e2b17fb4f53bc7b1d097c0a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2013-11-13Bug 421339 - Accept java 1.5Krzysztof Daniel2-4/+2
Make 1.5 setting default in Eclipse (P2 is compiled as 1.5 with tycho anyway). Drop jsr14. Change-Id: I848d7865211126ad32a226914a046f9553a48f04 Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
2013-09-18Added a change to test Gerrit.I20130924-1130I20130924-0800I20130918-2000Ian Bull1-0/+1
Change-Id: Ifb0811b8e563533be6d4241fb09916217e346f9d
2013-06-26Bug 411170 -- Updated the parent poms for Luna (Eclipse 4.4)Ian Bull1-1/+1
2013-03-27Bug 403971 - Update Equinox p2 parent versionsI20130402-0800Pascal Rapicault2-3/+4
2013-02-25Bug 397850 - [CBI] use the correct group IDs for all artifactsv20130225-185631Ian Bull1-1/+1
Upated all the pom.xml files (in the bundles) to include the proper groupID. The groupID is the first three segments of the artifactID.
2013-01-07Remove project specific settings for PDEv20130107-205331I20130108-0800Pascal Rapicault1-88/+0
2013-01-07remove 1.4 dependencyPascal Rapicault1-1/+0
2012-12-21Fixed p2 API tool warningsv20121221-190135I20121225-1600I20121225-0800John Arthorne1-0/+2
2012-11-21Bug 390385 - Stop the use of jsr14v20121121-194827Pascal Rapicault (Ericsson)1-2/+0
2012-11-21Re-enable p2 build to work standalonev20121121-164058Pascal Rapicault (Ericsson)1-1/+1
2012-11-17Rename constant and update copyright headersv20121117-034610Pascal Rapicault (Ericsson)3-7/+9
2012-11-17Bug 249133 - [shared] Default update site list blank in shared installPascal Rapicault (Ericsson)3-0/+58
2012-04-30Empty commit to fix a problem between master and integrationv20120430-0525I20120430-1500I20120430-1300Ian Bull1-0/+5
2012-04-28Support for bundled macosx - http://bugs.eclipse.org/57349v20120428-0117Pascal Rapicault3-1/+21
2012-03-01Bug 358842 pausing/resuming a p2 operation.v20120301-1523v20120301-0711Mengxin Zhu1-1/+2
Introduce new test cases that will download artifacts from Internet, so add vm arguments to make downloading more stable. Signed-off-by: Mengxin Zhu <kane.zhu@windriver.com>
2012-02-22Bug 372289 - Enable activating projector encoding debugging in .optionsv20120222-2119John Arthorne2-0/+5
2012-01-09348366 Only remember cancel if dialog explicitly signals cancelv20120109-1423Tobias Oberlies3-5/+13
- Introduced a new constant in UIServices to give the implementations the possibility to explicitly indicate that the user cancelled a prompt for password. - Only remember cancel in class Credentials on explicit user cancels. This ensures that the authentication prompt is shown at least once. Bug: 348366 - [repository] Cannot update from update site with authentication
2011-08-01304594 Fix obvious POM configuration issuesTobias Oberlies1-2/+3
- Correct relativePath to parent POM. - Use recommended version format in POMs: A version with automatically replaced qualifier maps to a SNAPSHOT version in the POMs.
2011-07-26Bug 340971 - addRepository touchpoint action doesn't add the repositorybug340971dj1-1/+2
URL
2011-07-20Changed .cvsignore to .gitignore filesJohn Arthorne2-1/+1
2011-05-02copyright updateIan Bull13-13/+13
2011-04-13Bug 342661 - compile warnings in official buildsDJ Houghton1-1/+2
2011-04-05Add new publisher as friendPascal Rapicault1-0/+1
2011-02-28Bug 336246 - Remove the metadata generatorPascal Rapicault1-3/+1

Back to the top