Michael Dawson
d98eed51f7
Update FIPS instructions in README.md
...
Update the instructions to follow the requirements
in the security policy and user guide
PR-URL: https://github.com/nodejs/node/pull/2278
Fixes: https://github.com/nodejs/node/issues/2242
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Rod Vagg <r@va.gg>
2015-08-19 09:48:19 -04:00
cjihrig
a3c1b9720e
doc: add GPG fingerprint for cjihrig
...
PR-URL: https://github.com/nodejs/io.js/pull/2217
Reviewed-By: Rod Vagg <rod@vagg.org>
2015-07-24 14:44:06 -04:00
João Reis
b612f085ec
doc: add joaocgreis as a collaborator
...
Refer: https://github.com/nodejs/io.js/issues/2102
PR-URL: https://github.com/nodejs/io.js/pull/2208
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-07-21 11:21:42 +01:00
Michaël Zasso
6f306e0ed2
doc: add targos as a collaborator
...
Ref: https://github.com/nodejs/io.js/issues/2102
PR-URL: https://github.com/nodejs/io.js/pull/2200
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-07-18 00:57:34 +02:00
Sakthipriyan Vairamani
c019d9a239
doc: add thefourtheye as a collaborator
...
Refer: https://github.com/nodejs/io.js/issues/2102
PR-URL: https://github.com/nodejs/io.js/pull/2199
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-07-18 04:10:53 +00:00
Jeremiah Senkpiel
4e92dbc26b
doc: add TSC members from the combined project
...
These members were collaborators on the old joyent/node repo prior to
convergence of the Node.js and io.js projects under the Node
Foundation. This updates our list to represent that they are now also
part of the TSC (Technical Steering Committee), which was previously
known as the io.js TC.
PR-URL: https://github.com/nodejs/io.js/pull/2085
Reviewed-By: Mikeal Rogers <mikeal.rogers@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
Membership changes also previously reviewed by many more TSC & former
TC members in https://github.com/nodejs/io.js/pull/1710
2015-07-16 14:53:51 -07:00
Jimmy Hsu
54d5437566
doc: Added sample command to test iojs build
...
PR-URL: https://github.com/nodejs/io.js/pull/850
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
2015-06-24 17:26:09 -07:00
Rod Vagg
392e8fd64e
doc: add @shigeki and @mscdex to TC
...
voted in to Node.js Foundation TSC in meeting on 2015-06-17
Closes: https://github.com/nodejs/io.js/issues/1500
Closes: https://github.com/nodejs/io.js/issues/1501
PR-URL: https://github.com/nodejs/io.js/pull/2008
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-06-23 19:52:59 +10:00
Rod Vagg
8ac50819b6
doc: add security section to README.md
...
PR-URL: https://github.com/nodejs/io.js/pull/1948
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-06-19 12:02:33 -07:00
Christian Tellnes
1f93b63b11
doc: change the info to the same as in gitconfig
...
PR-URL: https://github.com/nodejs/io.js/pull/2000
Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-06-18 08:37:55 +02:00
Johan Bergström
c4ec04136b
doc: reformat authors section
...
Make the order of name, email and other additions simpler to
copy paste and/or match with git commit messages.
Useful when working with `Reviewed-By`.
PR-URL: https://github.com/nodejs/io.js/pull/1966
Reviewed-By: Christian Tellnes <christian@tellnes.no>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-06-17 10:07:05 +10:00
Сковорода Никита Андреевич
428526544c
doc: add ChALkeR as collaborator
...
Using the non-transliterated name as requested.
The transliteration is "Nikita Skovoroda" (first and last name),
if anyone will want to organize non-ASCII names.
PR-URL: https://github.com/nodejs/io.js/pull/1927
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-06-13 09:44:42 +03:00
Rich Trott
a3cc43d0a4
doc: add Trott as collaborator
...
PR-URL: https://github.com/nodejs/io.js/pull/1962
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-06-12 16:00:41 -07:00
Fedor Indutny
0f68377f69
crypto: support FIPS mode of OpenSSL
...
Support building and running with FIPS-compliant OpenSSL. The process is
following:
1. Download and verify `openssl-fips-x.x.x.tar.gz` from
https://www.openssl.org/source/
2. Extract source to `openssl-fips` folder
3. ``cd openssl-fips && ./config fipscanisterbuild --prefix=`pwd`/out``
(NOTE: On OS X, you may want to run
``./Configure darwin64-x86_64-cc --prefix=`pwd`/out`` if you are going to
build x64-mode io.js)
4. `make -j && make install`
5. Get into io.js checkout folder
6. `./configure --openssl-fips=/path/to/openssl-fips/out`
7. Build io.js with `make -j`
8. Verify with `node -p "process.versions.openssl"` (`1.0.2a-fips`)
Fix: https://github.com/joyent/node/issues/25463
PR-URL: https://github.com/nodejs/io.js/pull/1890
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
2015-06-11 01:49:20 +02:00
Domenic Denicola
cf5020fc02
doc: add domenic as collaborator
...
PR-URL: https://github.com/nodejs/io.js/pull/1942
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-06-10 16:29:15 -04:00
Oleg Elifantiev
11ed5f31ab
doc: add Olegas as collaborator
...
PR-URL: https://github.com/nodejs/io.js/pull/1930
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Christian Tellnes <christian@tellnes.no>
2015-06-10 22:23:25 +03:00
Ali Ijaz Sheikh
f500e1833b
doc: add ofrobots as collaborator
...
PR-URL: nodejs#1928
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-06-09 15:32:46 -07:00
Christopher Monsanto
717724611a
doc: add monsanto as collaborator
...
PR-URL: https://github.com/nodejs/io.js/pull/1932
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-06-09 18:21:31 -04:00
Alex Kocharin
7192b6688c
doc: add rlidwka as collaborator
...
PR-URL: https://github.com/nodejs/io.js/pull/1929
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-06-10 00:31:39 +03:00
Frederic Hemberger
066274794c
doc: update links from iojs/io.js to nodejs/io.js
...
Replaced all links in doc and comments to point to the new org.
PR-URL: https://github.com/nodejs/io.js/pull/1715
Reviewed-By: Roman Reiss <me@silverwind.io>
2015-05-18 08:13:09 +02:00
AQNOUCH Mohammed
2c7206254c
doc: fix typo in readme.md
...
PR-URL: https://github.com/iojs/io.js/pull/1643
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-05-06 21:11:09 -04:00
Rod Vagg
ac1fb39ce8
doc: add rvagg to the TC
...
PR-URL: https://github.com/iojs/io.js/pull/1613
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-05-04 13:06:48 -07:00
Jeremiah Senkpiel
22aafa5597
doc: add Fishrock123 to the TC
...
as per https://github.com/iojs/io.js/issues/1502
PR-URL: https://github.com/iojs/io.js/pull/1507
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-04-23 10:32:08 -04:00
Jeremiah Senkpiel
8c6c376a94
doc: add GPG fingerprint for Fishrock123
...
PR-URL: https://github.com/iojs/io.js/pull/1324
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-04-04 01:14:41 -04:00
Jeremiah Senkpiel
ccbea18960
doc: better formatting for collaborator GPG keys
...
PR-URL: https://github.com/iojs/io.js/pull/1324
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-04-04 01:13:22 -04:00
Giovanny Andres Gongora Granada
65d4d25f52
build: default to armv7+vfpv3 for android
...
Also add Android build instructions to the README.
PR-URL: https://github.com/iojs/io.js/pull/1307
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-04-04 00:53:03 +02:00
Aleksanteri Negru-Vode
3bc445f6c2
doc: fix a broken collaborator github link
...
PR-URL: https://github.com/iojs/io.js/pull/1204
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-03-19 13:02:57 -04:00
Yosuke Furukawa
2b63bcd247
doc: add yosuke-furukawa as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/1183
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
2015-03-18 10:07:59 +09:00
Petka Antonov
3c8ae2d934
doc: add petkaantonov as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/1179
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: cjihrig <cjihrig@gmail.com>
2015-03-17 21:53:57 +02:00
Roman Reiss
92c1ad97c0
doc: add silverwind as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/1176
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-03-17 19:53:17 +01:00
Johan Bergström
14c74d5326
doc: add jbergstroem as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/1175
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-03-18 05:05:52 +11:00
Brendan Ashworth
e763220f66
doc: update clang version prerequisite
...
See commit `4877ec0`, where it now warns on a clang++ version older than
3.4.
PR-URL: https://github.com/iojs/io.js/pull/1094
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-03-07 14:57:53 -08:00
cjihrig
6190a2236b
doc: remove cjihrig from TC
...
PR-URL: https://github.com/iojs/io.js/pull/1056
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-03-04 10:41:18 -05:00
Julian Duque
ea02d90cd0
doc: add julianduque as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/1021
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Christian Tellnes <christian@tellnes.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rod Vagg <r@va.gg>
2015-03-01 19:45:54 -06:00
Robert Kowalski
fb2439a699
doc: add robertkowalski as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/977
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Christian Tellnes <christian@tellnes.com>
Reviewed-By: Rod Vagg <r@va.gg>
2015-02-27 21:21:26 +01:00
Christian Tellnes
865ee313cf
doc: add tellnes as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/973
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
2015-02-26 21:25:54 +01:00
Brian White
01296923db
doc: add mscdex as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/972
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-02-26 15:17:19 -05:00
Shinnosuke Watanabe
4fcbb8aaaf
doc: use HTTPS URL for the API documentation page
...
PR-URL: https://github.com/iojs/io.js/pull/913
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2015-02-21 09:30:46 -05:00
Jimmy Hsu
fc6507dd4e
doc: add comma in README to increase clarity
...
Minor change to increase clarity of what is being referenced to.
2015-02-16 11:27:17 +11:00
Wyatt Preul
e81731ad18
doc: add geek as collaborator
...
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
PR-URL: #835
2015-02-13 13:19:21 -06:00
Sam Roberts
b620129715
doc: add sam-github as collaborator
...
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
PR-URL: https://github.com/iojs/io.js/pull/791
2015-02-11 10:05:19 -08:00
Shigeki Ohtsu
aea9b89b5c
doc: add shigeki as collaborator
...
Fixes: https://github.com/iojs/io.js/issues/778
PR-URL: https://github.com/iojs/io.js/pull/782
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-02-11 00:39:18 +09:00
Aleksey Smolenchuk
96597bc592
doc: add lxe as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/745
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2015-02-06 10:34:13 -08:00
Chris Dickinson
513724efcc
doc: add GPG fingerprint for chrisdickinson
...
PR-URL: https://github.com/iojs/io.js/pull/710
Reviewed-By: Rod Vagg <rod@vagg.org>
2015-02-03 15:21:04 -08:00
Rod Vagg
df48fafa92
tools: add release tool and docs, remove old tools
...
Also added binary download documentation to the README.md and
GPG release key fingerprint for @rvagg.
PR-URL: https://github.com/iojs/io.js/pull/681
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Fedor Indutny <fedor@indutny.com>
2015-02-04 09:02:15 +11:00
Micleusanu Nicu
00f822f276
doc: add micnic as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/651
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
2015-01-29 08:35:54 +02:00
Nikolai Vavilov
804ab7ebaa
doc: add seishun as a collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/598
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
2015-01-24 23:03:11 +01:00
Vladimir Kurchatkin
55c222ceba
doc: add vkurchatkin as collaborator
...
PR-URL: https://github.com/iojs/io.js/pull/591
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-01-24 23:30:27 +03:00
Brendan Ashworth
33186fa7d8
doc: adds brendanashworth as collaborator
...
Moment of truth?
PR-URL: https://github.com/iojs/io.js/pull/587
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
2015-01-24 22:00:57 +11:00
Evan Lucas
8f9502a20a
doc: add evanlucas to collaborators
...
PR-URL: https://github.com/iojs/io.js/pull/581
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2015-01-23 20:13:02 -06:00