Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse/Status meetings/Minutes"

(JDT Debug (Sarika))
(Platform Debug (Sarika))
Line 31: Line 31:
  
 
==== Platform Debug (Sarika) ====
 
==== Platform Debug (Sarika) ====
 +
* Neon M6 Bug fixing
  
 
==== Platform Ant (Sarika) ====
 
==== Platform Ant (Sarika) ====

Revision as of 07:05, 3 February 2016


February 3, 2016

Discussion/Reminders

  • Neon
  • The deadline to submit CQs for Neon is February 12, 2016. Make sure to specify that the CQ is required for Neon.
  • M6 is the API freeze milestone - make sure to address bugs that require API changes by then.
  • Is the Platform ready for "equinox.bidi 1.0"? See bug 487047#c3
- Some manifests and features will need to be adjusted, so needs to be coordinated.
- And does the equinox.bidi bundle need work to "declare API"? Such as update @since tags?
  • Mars
  • Wednesday's 10 AM (Eastern) M-build is our Mars.2 RC3 candidate build -- and ideally our last for Mars.2.
- Please triage "4.5.2/Mars.2" bugs.
  • Thursday is a one-day test pass against Mars.2 (4.5.2) RC3
  • There will be no RC4 scheduled. We will build RC4 "upon request" as soon as all approvals/reviews are done.
- But 2/12 is last chance for us to contribute a "final build" to Sim. Release without disrupting schedules.

Status

Platform Workspace (Szymon P)

Platform UI (Lars)

Platform Text (Dani)

Platform Debug (Sarika)

  • Neon M6 Bug fixing

Platform Ant (Sarika)

Platform SWT (Arun)

Platform Releng (David)

  • Working on improving and automating "repository checker" (such as for "version checking", and similar quality checks).
  • Built "BETA_JAVA9" patch that works with M5 (bug 486749)
  • Have created a "Releng HIPP" to help migrate away from "shell access" -- over time. (Tracked in bug 487044.)

JDT Core (Jay)

JDT Debug (Sarika)

  • Java 9 Work
  • Neon M6 Bug fixing

JDT UI (Markus)

PDE (Vikas)

  • Neon M6 Bug fixing

Equinox (Tom Watson)

Equinox p2 (Pascal)

January 27, 2016

Discussion/Reminders

  • What is the policy on increasing features versions that increase simply because they have a branding bundle? See bug 486616 both for this question, as well as a "late report" on other bundles and features that may need to be "bumped" for Mars.2.
  • Neon M5 sign-off on Thursday
  • Mars.2 RC2 test pass on Thursday
  • PMC approval is needed for any change after Mars.2 RC2

Status

Platform Workspace (Szymon P)

  • Neon M5 testing
  • Can't join today due to conflicting meeting

Platform UI (Lars)

Platform Text (Dani)

  • Neon M5 Bug fixing and testing

Platform Debug (Sarika)

  • Neon M5 Bug fixing and testing

Platform Ant (Sarika)

  • Neon M5 Bug fixing and testing

Platform SWT (Arun)

Platform Releng (David)

  • Moved about 12 bugs "out" to future milestones. Most minor, a few "P2".
  • Still plan to move to "released" version of CBI 1.1.3 for final M5 build bug 484495

JDT Core (Jay)

  • Neon M5 verification and testing

JDT Debug (Sarika)

  • Neon M5 Bug fixing and testing

JDT UI (Markus)

PDE (Vikas)

Equinox (Tom Watson)

Equinox p2 (Pascal)

January 20, 2016

Discussion/Reminders

  • ListenerList has been generified (bug 483340). ListenerList#getListeners() still returns Object[]. Clients should not only add type arguments to the ListenerList, but also convert usages of #getListeners() to an enhanced 'for' loop, thereby taking advantage of the type-safe #iterator().
    • Old:
      		Object[] listeners= fInputChangeListeners.getListeners();
      		for (int i= 0; i < listeners.length; i++) {
      			((IInputChangedListener) listeners[i]).inputChanged(fInput);
      		}
      
    • New:
      		for (IInputChangedListener listener : fInputChangeListeners) {
      			listener.inputChanged(fInput);
      		}
      
    • Regular expression to convert usages that followed the old recommendation:
       Search : Object\s*\[\]\s*(\w+)s\s*=\s*(\w+)\.getListeners\(\);\s*for\s*\(int\s*(\w+)\s*=\s*0;\s*\3\s*<\s*\1s\.length;\s*\3\+\+\)(\s*\{\s*)(?:\(\((\w+)\)\s*\1s\[\3\]\)|(\w+)\s*\1\s*=\s*\(\6\)\s*\1s\[\3\];\s*\1)\.([^}]+\})
       Replace: for (\5\6 \1 : \2)\4\1.\7
      
  • EventManager is a problem (bug 486067). I would deprecate it instead of trying to generify it. [Markus]
  • Next week is Neon M5. The Bangalore team has a public holiday on Tuesday and will already test on Monday. Please don't release risky fixes on Monday, since we will have less cross-component test coverage for them.
  • Status

    Platform Workspace (Szymon P)

    Platform UI (Lars)

    Platform Text (Dani)

    Platform Debug (Sarika)

    • Neon M5 Bug Fixing

    Platform Ant (Sarika)

    • Neon M5 Bug Fixing

    Platform SWT (Arun)

    Platform Releng (David)

    JDT Core (Jay)

    • 4.5.2 Bug verification and testing
    • M5 Bug fixes

    JDT Debug (Sarika)

    • Neon M5 Bug Fixing

    JDT UI (Markus)

    • Content Assist supports sub-string completion and proposals highlight the matching characters.

    PDE (Vikas)

    • Neon M5 Bug Fixing

    Equinox (Tom Watson)

    Equinox p2 (Pascal)

    January 6, 2016

    Discussion/Reminders

    • Mars.2 RC1 next week (warm-up only - no test pass), see Eclipse Mars.2 (4.5.2) Endgame Plan for details.
    • Dani: Happy New Year to everyone! Sorry, I can't join today due to a conflict.

    Status

    Platform Workspace (Szymon P)

    Platform UI (Lars)

    Platform Text (Dani)

    Platform Debug (Sarika)

    • Neon M6 bug fixing

    Platform Ant (Sarika)

    • Mars.2 Ant upgrade to 1.9.6

    Platform SWT (Arun)

    • Neon M5 and 4.5.2 bug fixes and patch reviews

    Platform Releng (David)

    JDT Core (Jay)

    • Neon M6 bug fixes
    • 4.5.2 back porting.

    JDT Debug (Sarika)

    • Neon M6 bug fixing
    • Mars.2 backporting

    JDT UI (Markus)

    PDE (Vikas)

    Equinox (Tom Watson)

    Equinox p2 (Pascal)

    Archived Minutes


Back to the top