Quick Heal Internet Security 歷史版本列表
Quick Heal Internet Security 提供完整的互聯網安全保護,抵禦基於網絡的攻擊和其他現代威脅。快速治療 DNAScan 技術現在得到了加強,將不安全程序的行為和特徵檢查和監測結合起來。安全銀行功能可確保您在銀行門戶網站,購物網站和其他電子商務網站上的在線交易安全. 選擇版本:Quick Heal Internet Security 17.0(32 位)Quick Heal ... Quick Heal Internet Security 軟體介紹Quick Heal Internet Security (32-bit)Quick Heal Internet Security (64-bit)
更新時間:2022-11-05
更新細節:
What's new in this version:
Fixed:
- X.509 Email Address 4-byte Buffer Overflow (High)
- X.509 Email Address Variable Length Buffer Overflow (High)
- DNS rebinding in --inspect via invalid octal IP address (Medium)
更新時間:2022-11-02
更新細節:
What's new in this version:
Fixed:
- login issue with special characters
- UI not opening or crashing at launch
- Open Command Prompt on Mac
- next frame needed to be clicked twice
- Reveal in Finder / Show in Explorer
- Updated Preferences UI
- More meaningful error messages with possible solution
- issue with Deinterlace and FPS changes
- Misc. bug fixes and improvements
更新時間:2022-10-26
更新細節:
What's new in this version:
- NVIDIA users: Driver version 522.25 or higher is required
- Preferences UI updated
- Video load times improved
- Licensing fixes for users with Oct. 2022 expiry
- Backup file for export now deleted
- Processing errors for Image sequence inputs should be fixed
- Fixed H264, H265, H265 Main 10 encoders degrading quality on Mac
- Fixed AVX check issues with installer
- Fixed GUI not appearing/ disappearing on windows in some cases
- Fixed blank preview when setting preset in Preferences to a custom preset
- Fixed “Max. Memory usage” set to 10% by default
- Fixed show in Finder not working if … is in the path
- Re-direct Give Feedback button
- Export As shows default filename
- Have tooltips dynamic so they fit into screen
- Export path fixed in cases with special characters
- Other misc fixes
更新時間:2022-10-19
更新細節:
What's new in this version:
Notable Changes:
Deprecations and Removals:
- (SEMVER-MAJOR) module: runtime deprecate exports double slash maps
- (SEMVER-MAJOR) process: runtime deprecate coercion to integer in process.exit()
更新時間:2022-10-14
更新細節:
What's new in this version:
Notable changes:
- watch mode (experimental)
- Running in 'watch' mode using node --watch restarts the process when an imported file is changed
- Contributed by Moshe Atlow
Other notable changes:
fs:
- (SEMVER-MINOR) add FileHandle.prototype.readLines
http:
- (SEMVER-MINOR) add writeEarlyHints function to ServerResponse
http2:
(SEMVER-MINOR) make early hints generic
lib:
- (SEMVER-MINOR) refactor transferable AbortSignal
src:
- (SEMVER-MINOR) add detailed embedder process initialization API
util:
- (SEMVER-MINOR) add default value option to parsearg
更新時間:2022-09-29
更新細節:
What's new in this version:
doc:
- (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups
- add legendecas to TSC list
- move policy docs to the permissions scope
gyp:
- libnode for ios app embedding
http:
- (SEMVER-MINOR) throw error on content-length mismatch
stream:
- (SEMVER-MINOR) add ReadableByteStream.tee()
更新時間:2022-09-24
更新細節:
What's new in this version:
Fixed:
- DNS rebinding in --inspect on macOS
Insufficient fix for macOS devices on v18.5.0
- Node 18 reads openssl.cnf from /home/iojs/build/ upon startup on MacOS
- HTTP Request Smuggling - Flawed Parsing of Transfer-Encoding
Insufficient fix on v18.5.0
- HTTP Request Smuggling - Incorrect Parsing of Multi-line Transfer-Encoding
Insufficient fix on v18.5.0
- HTTP Request Smuggling - Incorrect Parsing of Header Fields
- Weak randomness in WebCrypto keygen
更新時間:2022-09-09
更新細節:
What's new in this version:
doc:
- add daeyeon to collaborators
lib:
- (SEMVER-MINOR) add diagnostics channel for process and worker
os:
- (SEMVER-MINOR) add machine method
report:
- (SEMVER-MINOR) expose report public native apis
src:
- (SEMVER-MINOR) expose environment RequestInterrupt api
vm:
- include vm context in the embedded snapshot
更新時間:2022-08-25
更新細節:
What's new in this version:
Notable changes:
- Bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob
- This patch introduces --build-snapshot and --snapshot-blob options for creating and using user land snapshots
To generate a snapshot using snapshot.js as an entry point and write the snapshot blob to snapshot.blob:
- Echo "globalThis.foo = 'I am from the snapshot'" > snapshot.js
- Node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
To restore application state from snapshot.blob, with index.js as the entry point script for the deserialized application:
- Echo "console.log(globalThis.foo)" > index.js
- Node --snapshot-blob snapshot.blob index.js
- # => I am from the snapshot
Users can also use the v8.startupSnapshot API to specify an entry point at snapshot building time, thus avoiding the need of an additional entry script at deserialization time:
- Echo "require('v8').startupSnapshot.setDeserializeMainFunction(() => console.log('I am from the snapshot'))" > snapshot.js
- Node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
- Node --snapshot-blob snapshot.blob
- # => I am from the snapshot
Other notable changes:
Crypto:
- (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2
- (SEMVER-MINOR) allow zero-length secret KeyObject
Deps:
- upgrade npm to 8.18.0 (npm team) #44263 - Adds a new npm query command
Doc:
- add Erick Wendel to collaborators
- add theanarkh to collaborators
- add MoLow to collaborators
- add cola119 to collaborators
- deprecate --trace-atomics-wait
Http:
- (SEMVER-MINOR) make idle http parser count configurable
Net:
- (SEMVER-MINOR) add local family
Src:
- (SEMVER-MINOR) print source map error source on demand
Tls:
- (SEMVER-MINOR) pass a valid socket on tlsClientError
更新時間:2022-07-27
更新細節:
What's new in this version:
doc:
- add F3n67u to collaborators
- deprecate coercion to integer in process.exit
- (SEMVER-MINOR) deprecate diagnostics_channel object subscribe method
events:
- (SEMVER-MINOR) expose CustomEvent on global with CLI flag
- (SEMVER-MINOR) add CustomEvent
http:
- (SEMVER-MINOR) add drop request event for http server
lib:
- (SEMVER-MINOR) improved diagnostics_channel subscribe/unsubscribe
util:
- (SEMVER-MINOR) add tokens to parseArgs