Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
node-libcurl-cpp-std:
- c++17
node:
- 18.17.1
- 18.18.2

env:
LIBCURL_RELEASE: ${{ matrix.libcurl-release }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: echo "GIT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: "Publish Binary"
run: |
pip install setuptools
pip install packaging
GIT_COMMIT=${{ github.sha }} GIT_TAG=$GIT_TAG RUNNER_OS=${{ runner.os }} ./scripts/ci/build.sh
- name: Upload artifacts
if: always()
Expand All @@ -110,9 +110,9 @@ jobs:
libcurl-release:
- 7.79.1
node:
- 18.17.1
- 18.18.2
electron-version:
- 27.0.0
- 28.0.0
env:
LIBCURL_RELEASE: ${{ matrix.libcurl-release }}
LATEST_LIBCURL_RELEASE: ${{ matrix.libcurl-release }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
run: echo "GIT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: "Publish Binary"
run: |
pip install setuptools
pip install packaging
GIT_COMMIT=${{ github.sha }} GIT_TAG=$GIT_TAG ./scripts/ci/build.sh
- name: Upload artifacts
if: always()
Expand All @@ -194,7 +194,7 @@ jobs:
fail-fast: false
matrix:
node:
- 18.17.1
- 18.18.2
env:
npm_config_msvs_version: 2022
npm_config_build_from_source: true
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
- name: Publish binary
if: startsWith(github.ref, 'refs/tags/')
run: |
pip install setuptools
pip install packaging
yarn node-pre-gyp package testpackage --verbose
node scripts\module-packaging.js --publish $(yarn -s node-pre-gyp reveal staged_tarball --silent)

Expand All @@ -237,9 +237,9 @@ jobs:
fail-fast: false
matrix:
node:
- 18.17.1
- 18.18.2
electron-version:
- 27.0.0
- 28.0.0
env:
ELECTRON_VERSION: ${{ matrix.electron-version }}
npm_config_msvs_version: 2022
Expand Down Expand Up @@ -276,6 +276,6 @@ jobs:
- name: Publish binary
if: startsWith(github.ref, 'refs/tags/')
run: |
pip install setuptools
pip install packaging
yarn node-pre-gyp package testpackage --verbose
node scripts\module-packaging.js --publish $(yarn -s node-pre-gyp reveal staged_tarball --silent)
14 changes: 7 additions & 7 deletions .github/workflows/build-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
node-libcurl-cpp-std:
- c++17
node:
- 18.17.1
- 18.18.2
include:
# Lint
- os: ubuntu-latest
node: 18.17.1
node: 18.18.2
node-libcurl-cpp-std: c++17
libcurl-release: 7.79.1
run-lint-and-tsc: true
Expand Down Expand Up @@ -144,9 +144,9 @@ jobs:
libcurl-release:
- 7.79.1
node:
- 18.17.1
- 18.18.2
electron-version:
- 27.0.0
- 28.0.0
env:
LIBCURL_RELEASE: ${{ matrix.libcurl-release }}
LATEST_LIBCURL_RELEASE: ${{ matrix.libcurl-release }}
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
fail-fast: false
matrix:
node:
- 18.17.1
- 18.18.2
env:
npm_config_msvs_version: 2022
npm_config_build_from_source: true
Expand Down Expand Up @@ -281,9 +281,9 @@ jobs:
fail-fast: false
matrix:
node:
- 18.17.1
- 18.18.2
electron-version:
- 27.0.0
- 28.0.0
env:
ELECTRON_VERSION: ${{ matrix.electron-version }}
npm_config_msvs_version: 2022
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: 18.17.1
node-version: 18.18.2
registry-url: 'https://registry.npmjs.org'
- name: Install
run: yarn install --ignore-scripts
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
18.18.2
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getinsomnia/node-libcurl",
"version": "2.4.1-4",
"version": "2.4.1-5",
"description": "The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl",
"keywords": [
"node-curl",
Expand Down Expand Up @@ -77,8 +77,8 @@
"dependencies": {
"@mapbox/node-pre-gyp": "1.0.5",
"env-paths": "2.2.0",
"nan": "2.17.0",
"node-gyp": "9.4.0",
"nan": "2.18.0",
"node-gyp": "10.0.1",
"npmlog": "4.1.2",
"rimraf": "^3.0.2",
"tslib": "2.0.1"
Expand All @@ -100,7 +100,7 @@
"cheerio": "^1.0.0-rc.3",
"clang-format": "^1.4.0",
"cookie-parser": "^1.4.5",
"electron-mocha": "^8.2.1",
"electron-mocha": "^12.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-formatter-friendly": "^7.0.0",
Expand Down
Loading