chore(release): core 8.9.2

This commit is contained in:
Nathan Walker
2025-04-18 14:12:38 -07:00
parent 30b6b54e6a
commit 1c20b4f48a
2 changed files with 85 additions and 79 deletions

View File

@ -1,3 +1,9 @@
## 8.9.2 (2025-04-18)
### 🩹 Fixes
- **ios:** 18.4 simulator networking case ([#10732](https://github.com/NativeScript/NativeScript/pull/10732))
## 8.9.1 (2025-03-16) ## 8.9.1 (2025-03-16)
### 🚀 Features ### 🚀 Features

View File

@ -1,81 +1,81 @@
{ {
"name": "@nativescript/core", "name": "@nativescript/core",
"version": "8.9.2", "version": "8.9.2",
"description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.",
"main": "index", "main": "index",
"types": "index.d.ts", "types": "index.d.ts",
"sideEffects": [ "sideEffects": [
"bundle-entry-points.js", "bundle-entry-points.js",
"./globals/index.js", "./globals/index.js",
"./globals" "./globals"
], ],
"files": [ "files": [
"**/*.d.ts", "**/*.d.ts",
"**/*.js", "**/*.js",
"**/*.map", "**/*.map",
"**/platforms/ios/**", "**/platforms/ios/**",
"platforms/android/**", "platforms/android/**",
"!platforms/android/core.aar", "!platforms/android/core.aar",
"**/package.json" "**/package.json"
], ],
"keywords": [ "keywords": [
"NativeScript", "NativeScript",
"JavaScript", "JavaScript",
"Android", "Android",
"iOS", "iOS",
"TypeScript" "TypeScript"
], ],
"funding": [ "funding": [
{ {
"type": "opencollective", "type": "opencollective",
"url": "https://opencollective.com/NativeScript" "url": "https://opencollective.com/NativeScript"
}, },
{ {
"type": "github", "type": "github",
"url": "https://github.com/sponsors/NativeScript" "url": "https://github.com/sponsors/NativeScript"
} }
], ],
"homepage": "https://nativescript.org", "homepage": "https://nativescript.org",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/NativeScript/NativeScript" "url": "https://github.com/NativeScript/NativeScript"
}, },
"author": { "author": {
"name": "NativeScript", "name": "NativeScript",
"email": "oss@nativescript.org" "email": "oss@nativescript.org"
}, },
"bugs": { "bugs": {
"url": "https://github.com/NativeScript/NativeScript/issues" "url": "https://github.com/NativeScript/NativeScript/issues"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"scripts": { "scripts": {
"postinstall": "node cli-hooks/postinstall.js", "postinstall": "node cli-hooks/postinstall.js",
"preuninstall": "node cli-hooks/preuninstall.js" "preuninstall": "node cli-hooks/preuninstall.js"
}, },
"dependencies": { "dependencies": {
"@csstools/css-calc": "~2.1.2", "@csstools/css-calc": "~2.1.2",
"@csstools/css-color-parser": "^3.0.8", "@csstools/css-color-parser": "^3.0.8",
"@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3", "@csstools/css-tokenizer": "^3.0.3",
"@nativescript/hook": "~2.0.0", "@nativescript/hook": "~2.0.0",
"acorn": "^8.7.0", "acorn": "^8.7.0",
"css-tree": "^1.1.2", "css-tree": "^1.1.2",
"css-what": "^6.1.0", "css-what": "^6.1.0",
"emoji-regex": "^10.2.1", "emoji-regex": "^10.2.1",
"tslib": "^2.0.0" "tslib": "^2.0.0"
}, },
"nativescript": { "nativescript": {
"platforms": { "platforms": {
"ios": "6.0.0", "ios": "6.0.0",
"android": "6.0.0" "android": "6.0.0"
}, },
"hooks": [ "hooks": [
{ {
"name": "nativescript-core", "name": "nativescript-core",
"type": "before-checkForChanges", "type": "before-checkForChanges",
"script": "cli-hooks/before-checkForChanges.js", "script": "cli-hooks/before-checkForChanges.js",
"inject": true "inject": true
} }
] ]
} }
} }