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"

(Initial agenda)
(73 intermediate revisions by 11 users not shown)
Line 5: Line 5:
 
-->
 
-->
  
== February 3, 2016 ==
+
== January 18, 2017 ==
  
 
=== Discussion/Reminders ===
 
=== Discussion/Reminders ===
 +
* M5 is next week. Please clean up your bugzilla backlog.
 +
* We will have a '''call on Wednesday, January 25'''.
  
* The deadline to submit CQs for Neon is February 12, 2016. Make sure to specify that the CQ is required for Neon.
+
== January 4, 2017 ==
* Wednesday's 10 PM (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.
+
  
=== Status ===
+
As decided last year, we will only have an Eclipse Project status call on demand, e.g. before and during a milestone week. The request for a call must be placed on this wiki page before Wednesday, and if so, a reminder will be sent to eclipse-dev.
  
==== Platform Workspace (Szymon P) ====
 
 
==== Platform UI (Lars) ====
 
 
==== Platform Text (Dani) ====
 
 
==== Platform Debug (Sarika) ====
 
 
==== Platform Ant (Sarika) ====
 
 
==== Platform SWT (Arun) ====
 
 
==== Platform Releng (David) ====
 
 
==== JDT Core (Jay) ====
 
 
==== JDT Debug (Sarika) ====
 
 
==== JDT UI (Markus) ====
 
 
==== PDE (Vikas) ====
 
 
==== 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 ===
 
<ul>
 
<li>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().
 
<ul><li>Old:<pre>
 
Object[] listeners= fInputChangeListeners.getListeners();
 
for (int i= 0; i < listeners.length; i++) {
 
((IInputChangedListener) listeners[i]).inputChanged(fInput);
 
}
 
</pre></li>
 
<li>New:<pre>
 
for (IInputChangedListener listener : fInputChangeListeners) {
 
listener.inputChanged(fInput);
 
}
 
</pre></li>
 
<li>Regular expression to convert usages that followed the old recommendation:<pre>
 
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
 
</pre></li>
 
</ul>
 
<li>EventManager is a problem ({{bug|486067}}). I would deprecate it instead of trying to generify it. [Markus]</li>
 
<li>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.</li>
 
 
=== 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 [https://www.eclipse.org/eclipse/development/plans/freeze_plan_4_5_2.php 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 ==  
 
== Archived Minutes ==  
  
 +
* [[Eclipse/Status_meetings/Minutes_2016|2016]]
 
* [[Eclipse/Status_meetings/Minutes_2015|2015]]
 
* [[Eclipse/Status_meetings/Minutes_2015|2015]]
 
* [[Eclipse/Status_meetings/Minutes_2014|2014]]
 
* [[Eclipse/Status_meetings/Minutes_2014|2014]]
Line 199: Line 29:
  
 
<!-- Template for next week's status (add 7 days, then copy):
 
<!-- Template for next week's status (add 7 days, then copy):
== February 3, 2016 ==
+
== January 4, 2017 ==
  
 
=== Discussion/Reminders ===
 
=== Discussion/Reminders ===
  
 
=== Status ===
 
=== Status ===
 
+
==== Platform Resources (Sergey) ====
==== Platform Workspace (Szymon P) ====
+
==== Platform UI (Lars or Dani) ====
 
+
==== Platform UI (Lars) ====
+
 
+
==== Platform Text (Dani) ====
+
 
+
 
==== Platform Debug (Sarika) ====
 
==== Platform Debug (Sarika) ====
 
 
==== Platform Ant (Sarika) ====
 
==== Platform Ant (Sarika) ====
 
 
==== Platform SWT (Arun) ====
 
==== Platform SWT (Arun) ====
 
+
==== Platform Releng (Sravan) ====
==== Platform Releng (David) ====
+
 
+
 
==== JDT Core (Jay) ====
 
==== JDT Core (Jay) ====
 
 
==== JDT Debug (Sarika) ====
 
==== JDT Debug (Sarika) ====
 
+
==== JDT UI (Noopur or Markus) ====
==== JDT UI (Markus) ====
+
 
+
 
==== PDE (Vikas) ====
 
==== PDE (Vikas) ====
 
 
==== Equinox (Tom Watson) ====
 
==== Equinox (Tom Watson) ====
 
==== Equinox p2 (Pascal) ====
 
 
-->
 
-->

Revision as of 05:21, 19 January 2017


January 18, 2017

Discussion/Reminders

  • M5 is next week. Please clean up your bugzilla backlog.
  • We will have a call on Wednesday, January 25.

January 4, 2017

As decided last year, we will only have an Eclipse Project status call on demand, e.g. before and during a milestone week. The request for a call must be placed on this wiki page before Wednesday, and if so, a reminder will be sent to eclipse-dev.


Archived Minutes

Back to the top