Skip to content

Commit 611d48f

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 58ee7ce + 8f66e7f commit 611d48f

File tree

14 files changed

+95
-94
lines changed

14 files changed

+95
-94
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [farfromrefug]

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NativeScript
22
hooks/
33
node_modules/
4-
/platforms/
4+
platforms
55

66
# NativeScript Template
77
*.js.map

.yarnrc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
compressionLevel: mixed
2+
13
nmHoistingLimits: workspaces
24

35
nodeLinker: node-modules
46

5-
yarnPath: tools/.yarn/releases/yarn-3.6.4.cjs
7+
yarnPath: tools/.yarn/releases/yarn-4.0.1.cjs

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.1.8](https://github.com/nativescript-community/https/compare/v4.1.7...v4.1.8) (2023-11-21)
7+
8+
### Bug Fixes
9+
10+
* **ios:** ensure progress is run on main thread(for now) ([60a4453](https://github.com/nativescript-community/https/commit/60a44530f2371996a952c8566f2d9fded26d5b1e))
11+
12+
## [4.1.7](https://github.com/nativescript-community/https/compare/v4.1.6...v4.1.7) (2023-11-21)
13+
14+
## [4.1.5](https://github.com/nativescript-community/https/compare/v4.1.4...v4.1.5) (2023-11-02)
15+
16+
### Bug Fixes
17+
18+
* **ios:** rewrote to support all HTTP methods. ([4a25a73](https://github.com/nativescript-community/https/commit/4a25a73dc672e051370591e11e2dfe98127a60a5))
19+
620
## [4.1.6](https://github.com/nativescript-community/https/compare/v4.1.4...v4.1.6) (2023-11-13)
721

822
### Bug Fixes

demo-vue

docs/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lerna.json

Lines changed: 21 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,32 @@
11
{
2-
"version": "4.1.6",
2+
"version": "4.1.8",
3+
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
34
"packages": [
45
"packages/*"
56
],
67
"npmClient": "yarn",
78
"useWorkspaces": true,
89
"command": {
910
"publish": {
10-
"conventionalCommits": true,
11-
"conventionalBlacklist": [
12-
"chore"
13-
],
14-
"changelogPreset": "angular",
15-
"createRelease": "github",
16-
"commitHooks": false,
17-
"private": false,
18-
"ignoreChanges": [
19-
"*.md",
20-
"docs/**"
21-
]
22-
},
23-
"version": {
24-
"conventionalCommits": true,
25-
"conventionalBlacklist": [
26-
"chore"
27-
],
28-
"changelogPreset": "angular",
29-
"createRelease": "github",
30-
"commitHooks": false,
31-
"private": false,
32-
"ignoreChanges": [
33-
"*.md",
34-
"docs/**"
35-
]
36-
},
37-
"bootstrap": {
38-
"npmClientArgs": [
39-
"--no-package-lock"
11+
"cleanupTempFiles": true,
12+
"removePackageFields": [
13+
"devDependencies",
14+
"scripts"
4015
]
4116
}
42-
}
17+
},
18+
"npmClientArgs": [
19+
"--no-package-lock"
20+
],
21+
"commitHooks": false,
22+
"createRelease": "github",
23+
"conventionalCommits": true,
24+
"private": false,
25+
"message": "chore(release): publish new version %v",
26+
"changelogPreset": "conventional-changelog-conventionalcommits",
27+
"ignoreChanges": [
28+
"**/__fixtures__/**",
29+
"**/__tests__/**",
30+
"**/*.md"
31+
]
4332
}

package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"plugin.watch.android": "npm i && npm-watch build.android",
1717
"plugin.watch.ios": "npm i && npm-watch build.ios",
1818
"plugin.watch": "npm run plugin.watch.tsc & npm run plugin.watch.android & npm run plugin.watch.ios",
19-
"publish": "npm run setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes ; lerna publish",
19+
"publish": "npm run setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes && lerna publish",
2020
"publish.major": "npm run build && lerna publish major --create-release=github --force-publish",
2121
"sync": "node ./tools/sync.js",
2222
"commitmsg": "commitlint -e $GIT_PARAMS",
@@ -32,7 +32,7 @@
3232
"start": "./node_modules/.bin/ntl -A -s 15 -o",
3333
"submodules": "git submodule update --init",
3434
"update": "node ./tools/update.js",
35-
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\""
35+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
3636
},
3737
"keywords": [
3838
"secure",
@@ -99,12 +99,7 @@
9999
},
100100
"workspaces": [
101101
"packages/*",
102-
"demo-vue",
103-
"demo-vue3",
104-
"demo-ng",
105-
"demo-svelte",
106-
"demo-react",
107-
"demo-snippets"
102+
"demo*"
108103
],
109104
"engines": {
110105
"npm": "please use yarn or pnpm",

packages/https/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.1.8](https://github.com/nativescript-community/https/compare/v4.1.7...v4.1.8) (2023-11-21)
7+
8+
**Note:** Version bump only for package @nativescript-community/https
9+
10+
## [4.1.7](https://github.com/nativescript-community/https/compare/v4.1.6...v4.1.7) (2023-11-21)
11+
12+
**Note:** Version bump only for package @nativescript-community/https
13+
614
## [4.1.6](https://github.com/nativescript-community/https/compare/v4.1.4...v4.1.6) (2023-11-13)
715

816
**Note:** Version bump only for package @nativescript-community/https

0 commit comments

Comments
 (0)