Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nodejs version to LTS 18.16.1 #310

Merged
merged 5 commits into from
Jun 28, 2023
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
4 changes: 2 additions & 2 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
c_compiler:
- gcc
c_compiler_version:
- '11'
- '12'
cdt_name:
- cos7
channel_sources:
Expand All @@ -11,7 +11,7 @@ channel_targets:
cxx_compiler:
- gxx
cxx_compiler_version:
- '11'
- '12'
docker_image:
- condaforge/linux-anvil-cos7-x86_64
icu:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ BUILD:
c_compiler:
- gcc
c_compiler_version:
- '11'
- '12'
cdt_arch:
- aarch64
cdt_name:
Expand All @@ -15,7 +15,7 @@ channel_targets:
cxx_compiler:
- gxx
cxx_compiler_version:
- '11'
- '12'
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
icu:
Expand Down
8 changes: 4 additions & 4 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.14'
- '10.15'
c_compiler:
- clang
c_compiler_version:
- '14'
- '15'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '14'
- '15'
icu:
- '72'
macos_machine:
- x86_64-apple-darwin13.4.0
macos_min_version:
- '10.14'
- '10.15'
openssl:
- '3'
target_platform:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '14'
- '15'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '14'
- '15'
icu:
- '72'
macos_machine:
Expand Down
4 changes: 2 additions & 2 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MACOSX_DEPLOYMENT_TARGET: # [osx and x86_64]
- '10.14' # [osx and x86_64]
- '10.15' # [osx and x86_64]
macos_min_version: # [osx and x86_64]
- '10.14' # [osx and x86_64]
- '10.15' # [osx and x86_64]

cudnn: # [linux64]
- undefined # [linux64]
Expand Down
8 changes: 4 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "18.15.0" %}
{% set version = "18.16.1" %}

# NODE_MODULE_VERSION set in src/node_version.h
{% set NODE_MODULE_VERSION = 108 %}
Expand All @@ -10,9 +10,9 @@ package:
source:
# checksums from https://nodejs.org/dist/vX.Y.Z/SHASUMS256.txt.asc
url: https://nodejs.org/dist/v{{ version }}/node-v{{ version }}.tar.gz # [unix]
sha256: d65c4c3ef3c8815bccda9502081a29458c7c80797db0763f8752f270a824ac2b # [unix]
sha256: 518f4c8dc23a26d8df77288d94e254b6015d792026ff9ba0c2316af255875fa5 # [unix]
url: https://nodejs.org/dist/v{{ version }}/node-v{{ version }}-win-x64.zip # [win]
sha256: 118fbcae58bc8c53cbe97a10c019734ed90685da8dda98aa0b0f4aeead42a647 # [win]
sha256: 145bd2f79eaa50b76559bd78266f4585e57b88dbb94613698a9514a601f84e7f # [win]
patches:
- linux-librt.patch # [not win]
- cinttypes.patch # [linux]
Expand All @@ -21,7 +21,7 @@ source:
- 0001-Disable-unsupported-branch-protection.patch # [not win]

build:
number: 1
number: 0
# Prefix replacement breaks in the binary embedded configurations.
detect_binary_files_with_prefix: false
run_exports:
Expand Down