Unverified Commit 7cac428e by Dane Springmeyer Committed by GitHub

Merge pull request #1177 from mapbox/https-everywhere

Use https: instead of http:
parents 02c58b0f 683c4126
...@@ -143,7 +143,7 @@ ...@@ -143,7 +143,7 @@
- Upgraded node-pre-gyp@0.6.5 - Upgraded node-pre-gyp@0.6.5
- Upgraded nan@1.8.4 - Upgraded nan@1.8.4
- Fixed binaries to work on older linux systems (circa GLIBC_2.2.5 like centos 6) @bnoordhuis - Fixed binaries to work on older linux systems (circa GLIBC_2.2.5 like centos 6) @bnoordhuis
- Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (http://www.sqlite.org/news.html) - Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (https://www.sqlite.org/news.html)
## 3.0.5 ## 3.0.5
...@@ -202,7 +202,7 @@ Released July 14th, 2014 ...@@ -202,7 +202,7 @@ Released July 14th, 2014
- Now supporting node v0.11.x (specifically >=0.11.13) - Now supporting node v0.11.x (specifically >=0.11.13)
- Fix db opening error with absolute path on windows - Fix db opening error with absolute path on windows
- Updated to node-pre-gyp@0.5.18 - Updated to node-pre-gyp@0.5.18
- updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (http://www.sqlite.org/news.html) - updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (https://www.sqlite.org/news.html)
## 2.2.3 ## 2.2.3
...@@ -226,7 +226,7 @@ Released July 14th, 2014 ...@@ -226,7 +226,7 @@ Released July 14th, 2014
Released Jan 13th, 2014 Released Jan 13th, 2014
- updated internal libsqlite3 from 3.7.17 -> 3.8.2 (http://www.sqlite.org/news.html) which includes the next-generation query planner http://www.sqlite.org/queryplanner-ng.html - updated internal libsqlite3 from 3.7.17 -> 3.8.2 (https://www.sqlite.org/news.html) which includes the next-generation query planner http://www.sqlite.org/queryplanner-ng.html
- improved binary deploy system using https://github.com/springmeyer/node-pre-gyp - improved binary deploy system using https://github.com/springmeyer/node-pre-gyp
- binary install now supports http proxies - binary install now supports http proxies
- source compile now supports freebsd - source compile now supports freebsd
......
#http://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets #https://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets
all: build all: build
......
Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings for [Node.js](http://nodejs.org/). Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js](http://nodejs.org/).
[![NPM](https://nodei.co/npm/sqlite3.png?downloads=true&downloadRank=true)](https://nodei.co/npm/sqlite3/) [![NPM](https://nodei.co/npm/sqlite3.png?downloads=true&downloadRank=true)](https://nodei.co/npm/sqlite3/)
...@@ -207,7 +207,7 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov), ...@@ -207,7 +207,7 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov),
[Eric Fredricksen](https://github.com/grumdrig) and [Eric Fredricksen](https://github.com/grumdrig) and
[Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions. [Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions.
Development of this module is sponsored by [MapBox](http://mapbox.org/). Development of this module is sponsored by [MapBox](https://mapbox.org/).
# License # License
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "sqlite3", "name": "sqlite3",
"description": "Asynchronous, non-blocking SQLite3 bindings", "description": "Asynchronous, non-blocking SQLite3 bindings",
"version": "4.0.9", "version": "4.0.9",
"homepage": "http://github.com/mapbox/node-sqlite3", "homepage": "https://github.com/mapbox/node-sqlite3",
"author": { "author": {
"name": "MapBox", "name": "MapBox",
"url": "https://mapbox.com/" "url": "https://mapbox.com/"
......
...@@ -49,7 +49,7 @@ if [[ $(uname -s) == 'Linux' ]]; then ...@@ -49,7 +49,7 @@ if [[ $(uname -s) == 'Linux' ]]; then
# enable 32 bit iojs # enable 32 bit iojs
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH
else else
wget http://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz wget https://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz
tar xf node-${NVER}-${platform}-x86.tar.gz tar xf node-${NVER}-${platform}-x86.tar.gz
# enable 32 bit node # enable 32 bit node
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$(pwd)/node-${NVER}-${platform}-ia32/bin:$PATH export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$(pwd)/node-${NVER}-${platform}-ia32/bin:$PATH
......
...@@ -23,7 +23,7 @@ fi ...@@ -23,7 +23,7 @@ fi
if [[ $(uname -s) == 'Darwin' ]]; then if [[ $(uname -s) == 'Darwin' ]]; then
export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-osx-${TARGET_ARCH} export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-osx-${TARGET_ARCH}
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip
unzip -q ${NW_DOWNLOAD}.zip unzip -q ${NW_DOWNLOAD}.zip
export PATH=$(pwd)/node-webkit.app/Contents/MacOS/:${PATH} export PATH=$(pwd)/node-webkit.app/Contents/MacOS/:${PATH}
# v0.10.0-rc1 unzips with extra folder # v0.10.0-rc1 unzips with extra folder
...@@ -36,9 +36,9 @@ else ...@@ -36,9 +36,9 @@ else
# for testing node-webkit, launch a virtual display # for testing node-webkit, launch a virtual display
export DISPLAY=:99.0 export DISPLAY=:99.0
# NOTE: travis already has xvfb installed # NOTE: travis already has xvfb installed
# http://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29 # https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29
sh -e /etc/init.d/xvfb start +extension RANDR sh -e /etc/init.d/xvfb start +extension RANDR
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz
tar xf ${NW_DOWNLOAD}.tar.gz tar xf ${NW_DOWNLOAD}.tar.gz
export PATH=$(pwd)/${NW_DOWNLOAD}:${PATH} export PATH=$(pwd)/${NW_DOWNLOAD}:${PATH}
if [[ "${TARGET_ARCH}" == 'ia32' ]]; then if [[ "${TARGET_ARCH}" == 'ia32' ]]; then
......
...@@ -5,7 +5,7 @@ if not "%1" == "x86" goto end ...@@ -5,7 +5,7 @@ if not "%1" == "x86" goto end
if "%nw_version%" == "" goto end if "%nw_version%" == "" goto end
call npm install nw-gyp call npm install nw-gyp
call cinst wget 7zip.commandline call cinst wget 7zip.commandline
call wget http://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip call wget https://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip
call 7z e -onw node-webkit-v%nw_version%-win-ia32.zip call 7z e -onw node-webkit-v%nw_version%-win-ia32.zip
dir nw dir nw
set PATH=nw;%PATH% set PATH=nw;%PATH%
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment