Skip to content

Commit 634e962

Browse files
committed
doc: add TC meeting minutes 2015-03-04
PR-URL: #1123 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 5094a0f commit 634e962

File tree

1 file changed

+164
-0
lines changed

1 file changed

+164
-0
lines changed

doc/tc-meetings/2015-03-04.md

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
# io.js TC Meeting 2015-03-04
2+
3+
## Links
4+
5+
* **Public YouTube feed**: http://www.youtube.com/watch?v=vxX2CkFPEtk
6+
* **Google Plus Event page**: https://plus.google.com/events/c9ijr7edl14im7dspk5njktmjq4
7+
* **GitHub Issue**: https://github.com/iojs/io.js/issues/1053
8+
* **Original Minutes Google Doc**: https://docs.google.com/document/d/1RoIE68l8B2iWLdEPM7ApSN2FxFDd3OY0wfTeqUh-K9w
9+
10+
## Agenda
11+
12+
Extracted from https://github.com/iojs/io.js/labels/tc-agenda prior to meeting.
13+
14+
* lib: fix process.send() sync i/o regression [#774](https://github.com/iojs/io.js/issues/774) / @bnoordhuis
15+
* iojs: introduce internal modules [#848](https://github.com/iojs/io.js/issues/848) / @chrisdickinson / @trevnorris / (@vkurchatkin)
16+
* url: significantly improve the performance of the url module [#933](https://github.com/iojs/io.js/issues/933) / @mikeal
17+
* Ship websockets in core [#1010](https://github.com/iojs/io.js/issues/1010) / @piscisaureus
18+
* RFC: upgrade to V8 4.2? [#1026](https://github.com/iojs/io.js/issues/1026) / @bnoordhuis
19+
* Colin resigning from TC [#1056](https://github.com/iojs/io.js/pull/1056)
20+
21+
## Minutes
22+
23+
### Present
24+
25+
* Ben (TC)
26+
* Bert (TC)
27+
* Chris (TC)
28+
* Domenic
29+
* Fedor (TC)
30+
* Mikeal (meeting lead)
31+
* Isaac (TC)
32+
* Trevor (TC)
33+
* Rod
34+
35+
### Mini stand-up
36+
37+
* Ben: PRs, bugs, perf improvements, same old awesome Ben
38+
* Bert: talking, child process bugs, looking further in to Windows bugs that are still outstanding, no coding
39+
* Chris: reviewing PRs, onboarding Julian, Christian, Brian, Robert, Ben. Code for core module discovery / use in packages in npm.
40+
* Domenic: Streams work WHATWG sync with io.js streams ideas.
41+
* Fedor: fixing bugs, PRs
42+
* Isaac: coding for fun, node-tap rewrite, global/window alias discussions, node_modules flattening, Windows stuff. Looking in to TLS issues for io.js and 0.12, TLS over Pound causes problems, possibly OpenSSL problem.
43+
* Mikeal: Website and Evangelism WG work, lots of new collabs and work, getting things in sync
44+
* Rod: Releases, Windows bug / Jenkins drama, ARMv8 support
45+
* Trevor: Buffer.indexOf(), nextTick perf improvement
46+
47+
48+
### Review of last meeting
49+
50+
* util: fixed behavior of isObject() [#822](https://github.com/iojs/io.js/issues/822) / @chrisdickinson / major version release
51+
* Translate installers for OS X and Windows [#819](https://github.com/iojs/io.js/issues/819) / @rvagg / maintenance overhead
52+
* lib: fix process.send() sync i/o regression [#774](https://github.com/iojs/io.js/issues/774) / @bnoordhuis
53+
* Implement unhandled rejection tracking [#758](https://github.com/iojs/io.js/issues/758) / @rvagg / how can we help this land
54+
* Logo / Brand Treatment
55+
[website/181] https://github.com/iojs/website/issues/181 @ mikeal
56+
https://www.behance.net/gallery/23269525/IOJS-logo-concept
57+
* Stability Policy/Statement & Roadmap
58+
[#725](https://github.com/iojs/io.js/issues/725) / @mikeal
59+
[roadmap/14](https://github.com/iojs/roadmap/issues/14) / @mikeal
60+
61+
62+
### Colin resigning from TC [#1056](https://github.com/iojs/io.js/pull/1056)
63+
64+
65+
### lib: fix process.send() sync i/o regression
66+
[#774](https://github.com/iojs/io.js/issues/774) / @bnoordhuis
67+
68+
* Ben: @orangemocha did some work on Windows for libuv, unsure if this helps.
69+
* Bert: process.send() has been made sync on *nix because otherwise it’s a breaking change, but on Windows it’s always been async so changing it to sync would also be a breaking change. So the situation is crazy.
70+
* Isaac: ideal is that they behave the same and behave well
71+
* Discussion about whether this would be a breaking change or a bugfix
72+
* Bikeshed, moving to GitHub
73+
* Bert: proposed that we revert Unix behaviour and leave Windows as it is
74+
* Ben: current fix adds blocking on Windows
75+
76+
77+
### iojs: introduce internal modules
78+
[#848](https://github.com/iojs/io.js/issues/848) / @chrisdickinson / @trevnorris / (@vkurchatkin)
79+
80+
Chris: lets us have modules that can’t be required from outside of core. I’m in favor; it’s a nice insurance policy, especially in light of the stability policy that we will try not to make any breaking changes to the JavaScript API.
81+
82+
Mikeal: this doesn’t change the existing pseudo-internal modules to become truly internal, right?
83+
84+
Chris: correct, that is separate.
85+
86+
Domenic: but, doing that operation would be a good thing to do in a major version bump.
87+
88+
Isaac/Mikeal: yes, but don’t do that for `util._extend`, too many people use it.
89+
90+
Chris: *gives example of how this would have been helpful for a recent refactor*
91+
92+
Ben: how will the test suite test internal functions from then on?
93+
94+
Chris: there would be a flag, e.g. --allow_internal_modules.
95+
96+
Mikeal: I like it.
97+
98+
Bert: I like it too. However I am concerned about products that do monkeypatching; would that still be possible?
99+
100+
Chris: I think so, as long as they monkeypatch the public APIs…
101+
102+
Ben: not sure that’s quite sufficient…
103+
104+
Domenic: seems like a pure win because it allows you not to have to put everything in one file to keep things private.
105+
106+
### url: significantly improve the performance of the url module
107+
[#933](https://github.com/iojs/io.js/issues/933) / @mikeal
108+
109+
This will get rolled in to the major version issue Chris is putting together.
110+
111+
### Ship websockets in core
112+
[#1010](https://github.com/iojs/io.js/issues/1010) / @piscisaureus
113+
114+
Bert: I’m not sure I believe in this any more; the major reason I wanted this was that building native addons is terrible, but people brought up that the native part of the web socket implementations only do some bitwise buffer stuff and so we could probably just add *those* to core.
115+
116+
Discussion of how we should probably just add more Buffer methods to core.
117+
118+
Bert: there’s another aspect of this. At some point Node was really modern, but we’ve fallen behind. We can’t even get HTTP/2 or web sockets, we’re in trouble.
119+
120+
Domenic: we’ve learned a lot over the last few years that pushes us to user-land code instead of in core. But we need to have some things be “official.”
121+
122+
Trevor: I would like the infrastructure for HTTP/2 to be similar to HTTP/1, with http-parser etc.
123+
124+
Ben: is there any reason HTTP/2 couldn’t be done in pure JS?
125+
126+
Discussion of http-parser and current HTTP/1 implementation strategy and speed.
127+
128+
Bert: I think as a TC what we should say is “we would like to support HTTP/2, but want to see some user-land ideas first.” We don’t need to actually start implementation progress right now.
129+
130+
Ben: does anyone on the TC want to write a user-land HTTP/2 module?
131+
132+
Discussion of how Fedor already has a SPDY implementation.
133+
134+
Trevor: are we going to do TLS-only HTTP/2?
135+
136+
Mikeal: we probably don't want to, because our HTTPS is not as fast as terminators.
137+
138+
Conclusion:
139+
We should start an issue in NG about the core modules/modernity stuff.
140+
We should publicly state that we’re interested in supporting HTTP/2 in the related issue thread, although we’re not sure about implementation strategy and want to see experiments.
141+
142+
### RFC: upgrade to V8 4.2?
143+
[#1026](https://github.com/iojs/io.js/issues/1026) / @bnoordhuis
144+
145+
* Ben: V8 4.1 has gone gold/stable so we should probably upgrade by un-floating a revert we placed on top of it. I propose we revert that revert, so that we get 4.1-as-shipped-in-Chrome. [#952](https://github.com/iojs/io.js/pull/952) for details on the floating revert.
146+
* Domenic: do we have clarity about ABI vs. API implications for io.js major version?
147+
* Ben: ABI change means everyone has to recompile their add-ons so we should bump the minor.
148+
* Fedor: this feels more like a major version?
149+
* Domenic: do we consider forcing people to run “npm rebuild” a breaking change?
150+
* Chris: I think I agree that users should not expect to have to rebuild within the same major version.
151+
* Mikeal: how often does a V8 ABI change happen *after that V8 gets into stable Chrome*?
152+
* Domenic: not sure, but would suspect not often at all. Maybe we should check with V8.
153+
* Ben: yes, not often.
154+
* Fedor: having a call with V8 might be helpful.
155+
* Mikeal: if it doesn’t happen, then we won’t end up in this situation again.
156+
157+
Conclusion:
158+
159+
Work with V8 team to make sure this doesn’t happen again
160+
Add “un-revert” to the growing list of issues that would trigger a minor version bump.
161+
162+
### Next meeting
163+
164+
*

0 commit comments

Comments
 (0)