Skip to content

Commit 3bc6fb7

Browse files
chore(release): 8.0.2
1 parent 4794ec7 commit 3bc6fb7

File tree

11 files changed

+85
-16
lines changed

11 files changed

+85
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [8.0.2](https://github.com/Cap-go/capacitor-plus/compare/8.0.1...8.0.2) (2025-12-16)
7+
8+
9+
### Features
10+
11+
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/Cap-go/capacitor-plus/compare/3.3.4...8.0.1) (2025-12-16)
718

819
### Bug Fixes

android/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [8.0.2](https://github.com/Cap-go/capacitor-plus/compare/8.0.1...8.0.2) (2025-12-16)
7+
8+
9+
### Features
10+
11+
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/Cap-go/capacitor-plus/compare/3.3.4...8.0.1) (2025-12-16)
718

819
### Bug Fixes

android/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor-plus/android",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "Capacitor+: Enhanced Capacitor with automated upstream sync - Cross-platform apps with JavaScript and the web",
55
"homepage": "https://github.com/Cap-go/capacitor-plus",
66
"author": "Capgo Team <[email protected]> (https://capgo.app)",
@@ -23,8 +23,8 @@
2323
"verify": "./gradlew clean lint build test -b capacitor/build.gradle"
2424
},
2525
"peerDependencies": {
26-
"@capacitor/core": "^8.0.0",
27-
"@capacitor-plus/core": "^8.0.0"
26+
"@capacitor-plus/core": "^8.0.0",
27+
"@capacitor/core": "^8.0.0"
2828
},
2929
"publishConfig": {
3030
"access": "public"

cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [8.0.2](https://github.com/Cap-go/capacitor-plus/compare/8.0.1...8.0.2) (2025-12-16)
7+
8+
9+
### Features
10+
11+
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/Cap-go/capacitor-plus/compare/3.3.4...8.0.1) (2025-12-16)
718

819
### Bug Fixes

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor-plus/cli",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "Capacitor+: Enhanced Capacitor with automated upstream sync - Cross-platform apps with JavaScript and the web",
55
"homepage": "https://github.com/Cap-go/capacitor-plus",
66
"author": "Capgo Team <[email protected]> (https://capgo.app)",

core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [8.0.2](https://github.com/Cap-go/capacitor-plus/compare/8.0.1...8.0.2) (2025-12-16)
7+
8+
9+
### Features
10+
11+
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/Cap-go/capacitor-plus/compare/3.3.4...8.0.1) (2025-12-16)
718

819
### Bug Fixes

core/http.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Make a Http DELETE Request to a server using native libraries.
261261
#### Blob
262262

263263
A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The <a href="#file">File</a> interface is based on <a href="#blob">Blob</a>, inheriting blob functionality and expanding it to support files on the user's system.
264-
`Blob` class is a global reference for `require('node:buffer').Blob`
264+
`Blob` class is a global reference for `import { <a href="#blob">Blob</a> } from 'node:buffer'`
265265
https://nodejs.org/api/buffer.html#class-blob
266266

267267
| Prop | Type |
@@ -296,6 +296,8 @@ buffer as needed.
296296
#### ReadableStream
297297

298298
This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a <a href="#readablestream">ReadableStream</a> through the body property of a Response object.
299+
`ReadableStream` class is a global reference for `import { <a href="#readablestream">ReadableStream</a> } from 'node:stream/web'`.
300+
https://nodejs.org/api/globals.html#class-readablestream
299301

300302
| Prop | Type |
301303
| ------------ | -------------------- |
@@ -312,6 +314,9 @@ This Streams API interface represents a readable stream of byte data. The Fetch
312314

313315
#### ReadableStreamDefaultReader
314316

317+
<a href="#readablestreamdefaultreader">`ReadableStreamDefaultReader`</a> class is a global reference for `import { <a href="#readablestreamdefaultreader">ReadableStreamDefaultReader</a> } from 'node:stream/web'`.
318+
https://nodejs.org/api/globals.html#class-readablestreamdefaultreader
319+
315320
| Method | Signature |
316321
| --------------- | --------------------------------------------------------------------------------------------------------------- |
317322
| **read** | () =&gt; Promise&lt;<a href="#readablestreamdefaultreadresult">ReadableStreamDefaultReadResult</a>&lt;R&gt;&gt; |
@@ -345,6 +350,8 @@ This Streams API interface represents a readable stream of byte data. The Fetch
345350
#### WritableStream
346351

347352
This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing.
353+
`WritableStream` class is a global reference for `import { <a href="#writablestream">WritableStream</a> } from 'node:stream/web'`.
354+
https://nodejs.org/api/globals.html#class-writablestream
348355

349356
| Prop | Type |
350357
| ------------ | -------------------- |
@@ -359,6 +366,8 @@ This Streams API interface provides a standard abstraction for writing streamin
359366
#### WritableStreamDefaultWriter
360367

361368
This Streams API interface is the object returned by <a href="#writablestream">WritableStream.getWriter</a>() and once created locks the &lt; writer to the <a href="#writablestream">WritableStream</a> ensuring that no other streams can write to the underlying sink.
369+
`WritableStreamDefaultWriter` class is a global reference for `import { <a href="#writablestreamdefaultwriter">WritableStreamDefaultWriter</a> } from 'node:stream/web'`.
370+
https://nodejs.org/api/globals.html#class-writablestreamdefaultwriter
362371

363372
| Prop | Type |
364373
| ----------------- | ------------------------------------- |
@@ -444,8 +453,6 @@ An event which takes place in the DOM.
444453
#### EventTarget
445454

446455
<a href="#eventtarget">EventTarget</a> is a DOM interface implemented by objects that can receive events and may have listeners for them.
447-
EventTarget is a DOM interface implemented by objects that can
448-
receive events and may have listeners for them.
449456

450457
| Method | Signature | Description |
451458
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -515,6 +522,8 @@ Provides a way to easily construct a set of key/value pairs representing form fi
515522
#### File
516523

517524
Provides information about files and allows JavaScript in a web page to access their content.
525+
`File` class is a global reference for `import { <a href="#file">File</a> } from 'node:buffer'`
526+
https://nodejs.org/api/buffer.html#class-file
518527

519528
| Prop | Type |
520529
| ------------------ | ------------------- |
@@ -524,9 +533,6 @@ Provides information about files and allows JavaScript in a web page to access t
524533

525534
#### URLSearchParams
526535

527-
<a href="#urlsearchparams">`URLSearchParams`</a> class is a global reference for `require('url').URLSearchParams`
528-
https://nodejs.org/api/url.html#class-urlsearchparams
529-
530536
| Method | Signature | Description |
531537
| ------------ | --------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
532538
| **append** | (name: string, value: string) =&gt; void | Appends a specified key/value pair as a new search parameter. |
@@ -622,6 +628,11 @@ This Fetch API interface allows you to perform various actions on HTTP request a
622628
<code><a href="#eventlistener">EventListener</a> | <a href="#eventlistenerobject">EventListenerObject</a></code>
623629

624630

631+
#### AbortSignal
632+
633+
<code>unknown</code>
634+
635+
625636
#### BufferSource
626637

627638
<code><a href="#arraybufferview">ArrayBufferView</a> | <a href="#arraybuffer">ArrayBuffer</a></code>

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor-plus/core",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "Capacitor+: Enhanced Capacitor with automated upstream sync - Cross-platform apps with JavaScript and the web",
55
"homepage": "https://github.com/Cap-go/capacitor-plus",
66
"author": "Capgo Team <[email protected]> (https://capgo.app)",

ios/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [8.0.2](https://github.com/Cap-go/capacitor-plus/compare/8.0.1...8.0.2) (2025-12-16)
7+
8+
9+
### Features
10+
11+
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/Cap-go/capacitor-plus/compare/3.3.4...8.0.1) (2025-12-16)
718

819
### Bug Fixes

ios/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor-plus/ios",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "Capacitor+: Enhanced Capacitor with automated upstream sync - Cross-platform apps with JavaScript and the web",
55
"homepage": "https://github.com/Cap-go/capacitor-plus",
66
"author": "Capgo Team <[email protected]> (https://capgo.app)",
@@ -25,8 +25,8 @@
2525
"xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
2626
},
2727
"peerDependencies": {
28-
"@capacitor/core": "^8.0.0",
29-
"@capacitor-plus/core": "^8.0.0"
28+
"@capacitor-plus/core": "^8.0.0",
29+
"@capacitor/core": "^8.0.0"
3030
},
3131
"publishConfig": {
3232
"access": "public"

0 commit comments

Comments
 (0)