Skip to content

Commit 7cac428

Browse files
authored
Merge pull request #1177 from mapbox/https-everywhere
Use https: instead of http:
2 parents 02c58b0 + 683c412 commit 7cac428

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
- Upgraded [email protected]
144144
- Upgraded [email protected]
145145
- Fixed binaries to work on older linux systems (circa GLIBC_2.2.5 like centos 6) @bnoordhuis
146-
- Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (http://www.sqlite.org/news.html)
146+
- Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (https://www.sqlite.org/news.html)
147147

148148
## 3.0.5
149149

@@ -202,7 +202,7 @@ Released July 14th, 2014
202202
- Now supporting node v0.11.x (specifically >=0.11.13)
203203
- Fix db opening error with absolute path on windows
204204
- Updated to [email protected]
205-
- updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (http://www.sqlite.org/news.html)
205+
- updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (https://www.sqlite.org/news.html)
206206

207207
## 2.2.3
208208

@@ -226,7 +226,7 @@ Released July 14th, 2014
226226

227227
Released Jan 13th, 2014
228228

229-
- 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
229+
- 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
230230
- improved binary deploy system using https://github.com/springmeyer/node-pre-gyp
231231
- binary install now supports http proxies
232232
- source compile now supports freebsd

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#http://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets
1+
#https://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets
22

33
all: build
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings for [Node.js](http://nodejs.org/).
1+
Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js](http://nodejs.org/).
22

33
[![NPM](https://nodei.co/npm/sqlite3.png?downloads=true&downloadRank=true)](https://nodei.co/npm/sqlite3/)
44

@@ -207,7 +207,7 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov),
207207
[Eric Fredricksen](https://github.com/grumdrig) and
208208
[Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions.
209209

210-
Development of this module is sponsored by [MapBox](http://mapbox.org/).
210+
Development of this module is sponsored by [MapBox](https://mapbox.org/).
211211

212212
# License
213213

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqlite3",
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
44
"version": "4.0.9",
5-
"homepage": "http://github.com/mapbox/node-sqlite3",
5+
"homepage": "https://github.com/mapbox/node-sqlite3",
66
"author": {
77
"name": "MapBox",
88
"url": "https://mapbox.com/"

scripts/build_against_node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if [[ $(uname -s) == 'Linux' ]]; then
4949
# enable 32 bit iojs
5050
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH
5151
else
52-
wget http://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz
52+
wget https://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz
5353
tar xf node-${NVER}-${platform}-x86.tar.gz
5454
# enable 32 bit node
5555
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$(pwd)/node-${NVER}-${platform}-ia32/bin:$PATH

scripts/build_against_node_webkit.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fi
2323

2424
if [[ $(uname -s) == 'Darwin' ]]; then
2525
export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-osx-${TARGET_ARCH}
26-
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip
26+
wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip
2727
unzip -q ${NW_DOWNLOAD}.zip
2828
export PATH=$(pwd)/node-webkit.app/Contents/MacOS/:${PATH}
2929
# v0.10.0-rc1 unzips with extra folder
@@ -36,9 +36,9 @@ else
3636
# for testing node-webkit, launch a virtual display
3737
export DISPLAY=:99.0
3838
# NOTE: travis already has xvfb installed
39-
# http://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29
39+
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29
4040
sh -e /etc/init.d/xvfb start +extension RANDR
41-
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz
41+
wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz
4242
tar xf ${NW_DOWNLOAD}.tar.gz
4343
export PATH=$(pwd)/${NW_DOWNLOAD}:${PATH}
4444
if [[ "${TARGET_ARCH}" == 'ia32' ]]; then

scripts/build_for_node_webkit.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if not "%1" == "x86" goto end
55
if "%nw_version%" == "" goto end
66
call npm install nw-gyp
77
call cinst wget 7zip.commandline
8-
call wget http://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip
8+
call wget https://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip
99
call 7z e -onw node-webkit-v%nw_version%-win-ia32.zip
1010
dir nw
1111
set PATH=nw;%PATH%

0 commit comments

Comments
 (0)