Daniel Sogl
44ad6fbe5b
docs: regenerate plugin readmes
2026-03-21 16:35:15 -07:00
f34bfafe93
Update src/@awesome-cordova-plugins/plugins/airship/index.ts
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-03-21 16:34:54 -07:00
Maxim Belov and Daniel Sogl
32bd9e5896
feat(airship): Added new method waitForChannelId()
2026-03-21 16:34:54 -07:00
Daniel Sogl
b2f8570444
fix: exit with non-zero code when npm publish fails
...
The publish script was catching errors and logging them but exiting
with code 0, causing the CI workflow to show green even when publishing
failed. Now calls process.exit(1) on publish failure.
2026-03-21 16:27:56 -07:00
a164e7134a
chore: release main ( #5119 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-21 16:23:17 -07:00
Daniel Sogl
ad6f55a85d
fix: add id-token permission to release-please workflow
...
The publish workflow requires id-token: write for npm provenance.
When called via workflow_call, permissions are inherited from the
caller, so id-token must be declared in release-please.yml.
2026-03-21 16:22:38 -07:00
Daniel Sogl
c18b91db03
fix: extract publish workflow for manual triggering
...
Split publish into a separate reusable workflow (publish.yml) that can
be triggered manually via workflow_dispatch or called from release-
please. This allows re-running publish independently when a release
already exists but publishing failed.
2026-03-21 16:21:15 -07:00
Daniel Sogl
4807ccdb27
fix: resolve remaining type errors in build scripts
...
Fix __String vs string type mismatch in imports transformer by
converting escapedText to string. Add @ts-expect-error for TypeDoc
Converter.on() which exists at runtime but is not in public type
exports.
2026-03-21 16:14:04 -07:00
Daniel Sogl
62956e429c
fix: add strict types to build scripts and remove all any usage
...
Replace all implicit and explicit any types in build scripts with
proper TypeScript Compiler API types (Decorator, ClassDeclaration,
MethodDeclaration, Identifier, SourceFile, etc.). Add PackageJson
and InjectableClassEntry interfaces. Fix return types, null checks,
and type assertions throughout all transformer scripts.
2026-03-21 16:11:27 -07:00
Daniel Sogl
6453f2ab78
fix: add npm provenance and fix core peer dependency version
...
Add --provenance flag to npm publish for supply chain security.
Add id-token: write permission to release workflow for OIDC-based
provenance attestation. Fix MIN_CORE_VERSION to dynamically use
current version instead of hardcoded ^8.0.2.
2026-03-21 16:04:52 -07:00
d45a4f766c
chore: release main ( #5117 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-21 15:51:53 -07:00
Daniel Sogl
0cee43bbae
docs: update guide to reflect latest Angular APIs
2026-03-21 15:36:48 -07:00
Daniel Sogl
555c375b60
chore: refresh package-lock.json
2026-03-21 15:27:46 -07:00
Daniel Sogl
e263b0b062
chore: rename default branch from master to main
...
Update all workflow triggers and internal references from master to
main. The default branch on GitHub has been updated accordingly.
2026-03-21 15:20:39 -07:00
Daniel Sogl
15e7ac0c9a
chore: remove unused zone.js devDependency
...
zone.js was listed as a devDependency but is never imported or used
in the source code or build scripts. The Angular partial compilation
does not require it. Consumers decide whether to use zone.js in their
own apps. Also removes the zone.js version constraint from renovate.
2026-03-21 15:17:23 -07:00
Daniel Sogl
aaae9fc277
chore: clean up legacy references and unused code
...
Update renovate.json for current dependencies. Remove Commitizen badge
from README. Replace @ionic-native imports with @awesome-cordova-plugins
in plugin JSDoc examples. Fill in Kommunicate documentation links.
Add modern package exports to published plugin packages. Remove unused
shipit script and release-please scripts.
2026-03-21 15:17:16 -07:00
Daniel Sogl
01f6257ebf
ci: modernize GitHub workflows and templates
...
Update CI workflow: restrict triggers to master+PRs, add concurrency
groups and npm cache. Update release-please and stale workflows to
latest action versions. Replace single ISSUE_TEMPLATE.md with YAML-
based templates (bug report, feature request, config). Rewrite
CONTRIBUTING.md for awesome-cordova-plugins.
2026-03-21 15:17:10 -07:00
Daniel Sogl
61970e4a8b
feat: modernize TypeScript configuration
...
Bump targets from ES2020 to ES2022, update moduleResolution to
"bundler" for tsconfigs (modern standard for bundler-consumed
libraries) and Node16 for build scripts. Remove unused genDir: "aot"
from angularCompilerOptions. Clean up stale .gitignore entries.
2026-03-21 15:17:03 -07:00
Daniel Sogl
120e0f6d23
refactor: replace build dependencies with native Node.js APIs
...
Replace fs-extra/rimraf with native node:fs, lodash with
structuredClone/spread, ts-node with tsx, minimist with node:util
parseArgs, winston with console logger, async-promise-queue with
native Promise concurrency. Use promisify for child_process.exec.
Normalize all imports to use node: protocol. Extract Jest config to
jest.config.ts and replace ts-jest with @swc/jest.
2026-03-21 15:16:55 -07:00
Daniel Sogl
f103f8bdae
feat!: replace husky/lint-staged with lefthook v2
...
Migrate from husky + lint-staged to lefthook v2 for git hooks. Migrate
prettier config from CJS to ESM. Remove commitizen/cz-conventional-
changelog (release-please handles conventional commits).
2026-03-21 15:16:34 -07:00
Daniel Sogl
4e6fb01ab0
feat!: migrate ESLint 8 to ESLint 10 with flat config
...
Replace legacy .eslintrc with eslint.config.mjs flat config. Update to
ESLint 10, typescript-eslint v8, and eslint-plugin-jsdoc v62. Resolve
all lint warnings and tighten configuration.
2026-03-21 15:16:26 -07:00
Daniel Sogl
76b4e03d04
feat!: replace dgeni/gulp with TypeDoc for README generation
...
Replace the legacy dgeni/gulp documentation pipeline with TypeDoc
and typedoc-plugin-markdown. Generates plugin README files with
extracted @Plugin() decorator metadata. Register custom JSDoc tags
used by plugin source files.
2026-03-21 15:16:18 -07:00
Daniel Sogl
a5e3ccd185
feat!: modernize all dependencies
...
Update all core dependencies to latest versions: Angular 20, TypeScript
5.8, RxJS 7.8, zone.js 0.15. Bump Node.js engine requirement to >=20.
Update all devDependencies to current versions.
BREAKING CHANGE: Requires Node.js 20+ and Angular 20+.
2026-03-21 15:16:05 -07:00
60df81e7d0
chore(deps): update dependency lint-staged to ^16.4.0 ( #5113 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-16 02:07:03 +00:00
2a24341da4
chore(deps): update dependency webpack to ^5.105.4 ( #5111 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-09 05:01:47 +00:00
656693dbab
chore(deps): update dependency lint-staged to ^16.3.2 ( #5110 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-09 04:59:43 +00:00
b94b0dcdf0
chore(deps): update dependency lint-staged to ^16.3.1 ( #5109 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-02 14:07:41 +00:00
1d7259aad7
chore(deps): update dependency webpack to ^5.105.3 ( #5108 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-02 08:58:09 +00:00
e8758afacb
chore(deps): update dependency rollup to ^4.59.0 ( #5106 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-23 08:43:56 +00:00
c8689b480d
chore(deps): update dependency release-please to ^17.3.0 ( #5105 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-23 05:19:09 +00:00
6b8a319724
chore(deps): update build and bundling tools ( #5103 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-16 06:02:36 +00:00
97d6d2eafe
chore(deps): update dependency release-please to ^17.2.1 ( #5102 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-16 06:00:54 +00:00
4ddc32a736
chore(deps): update dependency webpack to ^5.105.0 ( #5101 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-09 04:35:08 +00:00
5f28d64e43
chore(deps): update dependency rollup to ^4.57.1 ( #5100 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-02 05:33:18 +00:00
30c72c47bc
chore(deps): update dependency rollup to ^4.56.0 ( #5099 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-26 05:03:09 +00:00
09f2522f9f
chore(deps): update dependency release-please to ^17.2.0 ( #5098 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-26 05:00:30 +00:00
d097f5563f
chore(deps): update dependency rollup to ^4.55.1 ( #5094 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-12 05:28:52 +00:00
effbc46eb9
chore(deps): update build and bundling tools ( #5090 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-22 07:00:28 +00:00
9a487a47f3
chore(deps): update dependency lint-staged to ^16.2.7 ( #5087 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-24 08:41:24 +00:00
75e6387028
chore(deps): update build and bundling tools ( #5086 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-24 05:02:34 +00:00
d9bbabe605
chore(deps): update dependency rollup to ^4.53.2 ( #5085 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-17 04:38:00 +00:00
6fe9de5c97
chore(deps): update dependency rollup to ^4.53.1 ( #5084 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-10 06:44:15 +00:00
b8f3941e4c
chore(deps): update dependency rimraf to ^6.1.0 ( #5082 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-03 05:15:07 +00:00
722a8af45e
chore(deps): update dependency lint-staged to ^16.2.6 ( #5081 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-27 06:35:06 +00:00
879659b8e6
chore(deps): update build and bundling tools ( #5079 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-20 04:57:14 +00:00
e9bf647ca8
chore(deps): update dependency release-please to ^17.1.3 ( #5078 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-13 09:40:59 +00:00
c86abb86a2
chore(deps): update dependency lint-staged to ^16.2.4 ( #5077 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-13 04:29:24 +00:00
0ef0f74357
chore(deps): update build and bundling tools ( #5076 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-10-06 05:38:02 +00:00
0887f9f9e4
chore(deps): update dependency lint-staged to ^16.2.3 ( #5075 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-29 11:01:56 +00:00
55aabfa4ac
chore(deps): update dependency rollup to ^4.52.3 ( #5074 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-29 05:38:31 +00:00
f8fdc2fe79
chore(deps): update dependency rollup to ^4.52.0 ( #5073 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-22 04:32:05 +00:00
b94c26dbb1
chore(deps): update dependency rollup to ^4.50.1 ( #5070 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-08 06:25:18 +00:00
4afe2ad4c9
chore(deps): update dependency lint-staged to ^16.1.6 ( #5069 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-08 05:13:17 +00:00
f1be01f79b
chore(deps): update build and bundling tools ( #5066 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-25 14:15:11 +00:00
0c90165e96
chore(deps): update dependency release-please to ^17.1.2 ( #5065 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-25 04:48:45 +00:00
86be54975b
chore(deps): update build and bundling tools ( #5063 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-18 08:42:02 +00:00
679aefa3b5
chore(deps): update dependency lint-staged to ^16.1.5 ( #5061 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-11 01:38:10 +00:00
6cbb5f98a0
chore: release master ( #5044 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-08 12:47:12 +02:00
c10ae01c27
chore(deps): update dependency lint-staged to ^16.1.4 ( #5060 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-08 12:39:22 +02:00
a258bc78c0
chore(deps): update build and bundling tools ( #5059 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-08 12:35:56 +02:00
Venkadesh P and GitHub
b2361e6820
feat(cordova-plugin-unvired-sdk): added new function ( #5051 )
...
* feat(cordova-plugin-unvired-sdk): added new properties into loginparameters class and new function.
* feat(cordova-plugin-unvired-sdk): added a new property.
2025-08-08 12:29:39 +02:00
2e500677ab
fix(bluetooth-classic-serial-port): support multiple simultaneous connections using the same protocol string ( #5056 )
...
* fix(bluetooth-classic-serial-port): update plugin
* Update src/@awesome-cordova-plugins/plugins/bluetooth-classic-serial-port/index.ts
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
* Update src/@awesome-cordova-plugins/plugins/bluetooth-classic-serial-port/index.ts
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
* Update src/@awesome-cordova-plugins/plugins/bluetooth-classic-serial-port/index.ts
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
* Update src/@awesome-cordova-plugins/plugins/bluetooth-classic-serial-port/index.ts
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
* Update src/@awesome-cordova-plugins/plugins/bluetooth-classic-serial-port/index.ts
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
---------
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-08 12:29:32 +02:00
a2a80d11b5
feat(cashfree-pg): support cordova-plugin-cashfree-pg 1.0.11 ( #5057 )
...
Co-authored-by: Kishan_maurya <kishan.maurya@cashfree.com >
2025-08-08 12:29:24 +02:00
Uglješa Erceg and GitHub
f16d67ad24
feat(adjust): update adjust sdk index.ts api to v5.4.0 ( #4948 )
2025-08-08 12:29:02 +02:00
7edcb008ef
feat(wonderpush): new Delegate methods + Add initialize() and isInitialized() methods ( #4942 )
...
* feat(wonderpush): new Delegate methods
* feat(wonderpush): Add initialize() and isInitialized() methods
---------
Co-authored-by: Stéphane JAIS <stephane@wonderpush.com >
2025-08-08 12:28:55 +02:00
cc1bb196af
feat(clevertap): support clevertap-cordova 4.2.0 ( #4938 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* task(SDK-3757) - Add support for cordova v3.0.0
- Adds 2 new APIs = clearInAppResources() and fetchInApps()
* task(SDK-3757) - Add support for cordova v3.2.0
- Removes xiaomi related APIs
* task(SDK-4148) - Add support for cordova v3.3.0
- Custom Templates
- File Variables
* task(SDK-4386) - Add support for cordova v3.4.0
- Multi Triggers
- Deprecates older APIs
* task(SDK-4625) - Support clevertap-cordova 4.0.0
* task(SDK-4625) - Removes baidu and huawei APIs
* task(SDK-5073) - Support cordova v4.2.0
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2025-08-08 12:28:45 +02:00
2a56831c7c
feat(customuisdk) : add paytmpayments plugin support ( #4935 )
...
* feat(customuisdk) : add paytmpayments plugin support
* feat(customuisdk) : add paytmpayments plugin support
---------
Co-authored-by: Raj Goenka <raj.goenka@paytm.com >
2025-08-08 12:28:22 +02:00
9605bb0f78
feat(mobile-messaging): add callback parameter for Mobile Messaging S… ( #4930 )
...
* feat(mobile-messaging): add callback parameter for Mobile Messaging SDK init function
* fix(mobile-messaging): order of init parameters in JSDoc
* feat(mobile-messaging): support for JWT authorization for user operations
---------
Co-authored-by: Ivan Bilobrk <Ivan.Bilobrk@infobip.com >
2025-08-08 12:28:09 +02:00
Maxim Belov and GitHub
ffdb71dbb2
fix(screenshot): Update import ( #4929 )
...
No matching export in "node_modules/@awesome-cordova-plugins/core/index.js" for import "Plugin"
2025-08-08 12:28:00 +02:00
2a2eeeda74
chore(deps): bump form-data from 3.0.1 to 3.0.4 ( #5053 )
...
Bumps [form-data](https://github.com/form-data/form-data ) from 3.0.1 to 3.0.4.
- [Release notes](https://github.com/form-data/form-data/releases )
- [Changelog](https://github.com/form-data/form-data/blob/v3.0.4/CHANGELOG.md )
- [Commits](https://github.com/form-data/form-data/compare/v3.0.1...v3.0.4 )
---
updated-dependencies:
- dependency-name: form-data
dependency-version: 3.0.4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 12:27:38 +02:00
dd72a4b503
chore(deps): update dependency rollup to ^4.46.1 ( #5054 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-28 10:40:15 +00:00
d9ab88fe02
chore(deps): update build and bundling tools ( #5052 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-21 05:07:46 +00:00
3001c8bc16
chore(deps): update build and bundling tools ( #5050 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-14 07:41:34 +02:00
8f1ee6949e
chore(deps): update dependency rollup to ^4.44.2 ( #5049 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-07 13:02:48 +00:00
8935e75686
chore(deps): update dependency release-please to ^17.1.1 ( #5048 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-07 05:38:32 +00:00
56f32cfa90
chore(deps): update dependency rollup to ^4.44.1 ( #5047 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-30 05:23:30 +00:00
f870c3ce70
chore(deps): update dependency rollup to ^4.44.0 ( #5046 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-23 08:29:17 +00:00
9d2ce2b834
chore(deps): update dependency lint-staged to ^16.1.2 ( #5042 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-16 07:55:19 +00:00
bb5cfadac5
chore: release master ( #5041 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-14 14:11:07 +02:00
Daniel Sogl
d1a52cdef3
chore: update minimum core version to 8.0.2 in publish script
2025-06-14 14:10:16 +02:00
Daniel Sogl
6bcec9b4a2
Revert "chore(deps): update @types/lodash"
...
This reverts commit 6be3385b94 .
2025-06-14 14:08:54 +02:00
4f0d93a40d
chore: release master ( #5040 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-14 13:59:10 +02:00
Daniel Sogl
4966b35eae
chore(deps): update gulp
2025-06-14 13:58:10 +02:00
Daniel Sogl
6be3385b94
chore(deps): update @types/lodash
2025-06-14 13:57:55 +02:00
Daniel Sogl
cc65a5302e
chore(deps): update rollup
2025-06-14 13:57:26 +02:00
Daniel Sogl
8c80381eef
chore(deps): update lint-staged
2025-06-14 13:56:56 +02:00
Daniel Sogl
8ab40c4990
chore(deps): update webpack
2025-06-14 13:56:38 +02:00
Daniel Sogl
65bb7521b1
chore(deps): update rimraf
2025-06-14 13:55:55 +02:00
Daniel Sogl
54eefb606d
chore: update minimum core version to 8.0.1 in publish script
2025-06-14 13:54:52 +02:00
f5b16d501f
chore: release master ( #5037 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-10 20:33:56 +02:00
Daniel Sogl
c12fb83836
chore(release): update version in release-please manifest to 7.0.2
2025-06-10 20:31:43 +02:00
Daniel Sogl
1e13573e4f
chore(deps): update dependencies and add release-please configuration
2025-06-07 14:56:32 +02:00
47e1b6e597
chore(config): migrate config renovate.json ( #5025 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-07 14:45:59 +02:00
Daniel Sogl
51cc0d79a1
chore(release): simplify release-please configuration by removing individual plugin entries and disabling separate pull requests
2025-06-07 14:41:44 +02:00
Daniel Sogl
c86cfd1446
chore(release): update release-please configuration and set version to 6.16.0
2025-06-07 14:36:25 +02:00
Daniel Sogl
8876c53e3b
fix(workflow): change default branch from 'main' to 'master'
2025-06-07 14:24:26 +02:00
Daniel Sogl
9e997d7685
chore(deps): update renovate configuration for improved dependency management
2025-06-07 14:23:37 +02:00
Daniel Sogl
94c5527aa4
chore(release): add release please configuration
2025-06-07 14:21:49 +02:00
723488f16f
chore(deps): update dependency eslint-config-prettier to v10.1.5 ( #4931 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-23 09:26:40 +02:00
4cd9e93bd0
chore(deps): update dependency rollup to v4.41.0 ( #4928 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-23 09:20:26 +02:00
eee44de235
chore(deps): update actions/setup-node action to v4.4.0 ( #4933 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-23 09:20:14 +02:00
6a9afedc64
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.17 ( #4934 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-23 09:20:08 +02:00
510a407f37
chore(deps): update dependency lint-staged to v16 ( #4937 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-23 09:19:59 +02:00
Daniel Sogl
bf82a7b40c
6.16.0
2025-03-26 09:39:40 +00:00
4739a9a01a
feat(imap): implement email attachments support in IMAP plugin wrapper ( #4927 )
...
Co-authored-by: aleksandar.noveski <aleksandar.noveski@itgma.com >
2025-03-26 10:32:19 +01:00
e34c705c7a
chore(deps): update dependency rollup to v4.37.0 ( #4926 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-26 10:31:44 +01:00
722d19e437
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.9 ( #4925 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-26 10:31:36 +01:00
adeda4e579
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.6 ( #4922 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-17 08:58:59 +01:00
bce956c633
chore(deps): update dependency lint-staged to v15.5.0 ( #4923 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-17 08:58:49 +01:00
196222f482
chore(deps): update actions/setup-node action to v4.3.0 ( #4924 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-17 08:58:37 +01:00
Daniel Sogl
27ec7622ce
6.15.0
2025-03-10 17:47:15 +00:00
56a649be50
feat(clevertap): support clevertap-cordova 3.4.0 ( #4917 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* task(SDK-3757) - Add support for cordova v3.0.0
- Adds 2 new APIs = clearInAppResources() and fetchInApps()
* task(SDK-3757) - Add support for cordova v3.2.0
- Removes xiaomi related APIs
* task(SDK-4148) - Add support for cordova v3.3.0
- Custom Templates
- File Variables
* task(SDK-4386) - Add support for cordova v3.4.0
- Multi Triggers
- Deprecates older APIs
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2025-03-10 18:21:16 +01:00
Alex Ryltsov and GitHub
c8f827691e
feat (launch-navigator): Add setApiKey method #4915 ( #4916 )
2025-03-10 18:21:00 +01:00
Maxim Belov and GitHub
76ff28b08f
feat(intercom): Add new methods ( #4914 )
2025-03-10 18:20:48 +01:00
Adrien Lombard and GitHub
4411b182b0
fix(fingerprint-aio) : Added optional parameters to isAvailable() ( #4912 )
...
* Update fingerprint-aio/index.ts
Added two optional parameters to FingerprintAIO.isAvailable to reflect the optional parameters of isAvailable in cordova-plugin-fingerprint-aio
* Update index.ts
Added documentation to isAvailable()
* Update index.ts
Added documentation to plugin
* Added "callbackOrder : 'reverse'" to isAvailable()
2025-03-10 18:20:38 +01:00
Henry Zhang and GitHub
562489a97e
fix(facebook/fbsdk): add nonce parameter to loginWithLimitedTracking ( #4906 )
2025-03-10 18:20:26 +01:00
shpasser and GitHub
0c05b33a1d
Add requestConnectionPriority() to the ble plugin. ( #4902 )
2025-03-10 18:20:08 +01:00
Benoit Lavenier and GitHub
7a4306acfc
fix(audio-management): fix plugin name - closes #4898 ( #4899 )
2025-03-10 18:19:56 +01:00
b53dc7b373
chore(deps): update dependency rollup to v4.35.0 ( #4913 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-10 18:19:31 +01:00
caa3b505e1
chore(deps): update dependency eslint-config-prettier to v10.1.1 ( #4919 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-10 18:19:23 +01:00
5a96b49b3f
chore(deps): update dependency terser-webpack-plugin to v5.3.14 ( #4920 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-10 18:19:16 +01:00
2ff77142db
chore(deps): update dependency eslint-config-prettier to v10 ( #4901 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 16:58:22 +01:00
024e5bcb6b
chore(deps): update dependency fs-extra to v11.3.0 ( #4904 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 16:58:13 +01:00
71be156e52
chore(deps): update dependency rollup to v4.32.0 ( #4900 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 12:29:16 +01:00
8e55c4e817
chore(deps): update dependency lint-staged to v15.4.3 ( #4905 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 12:28:55 +01:00
e4edc9c241
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.3 ( #4907 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 12:28:46 +01:00
61b1a65580
chore(deps): update actions/setup-node action to v4.2.0 ( #4911 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-27 12:28:29 +01:00
Daniel Sogl
1f3448e3ef
chore: adjust husky config [skip ci]
2025-01-06 16:08:58 +00:00
Daniel Sogl
d29e77065c
6.14.0
2025-01-06 16:05:25 +00:00
Benoit Lavenier and GitHub
2a3b1b31ad
feat(audio-management): add plugin ( #4894 )
2025-01-06 16:58:59 +01:00
Benoit Lavenier and GitHub
54d5eea864
feat(downloader): add plugin ( #4893 )
2025-01-06 16:58:45 +01:00
wenki and GitHub
4352da9cae
support cordova-plugin-openinstall ( #4892 )
2025-01-06 16:58:24 +01:00
7df695cdb5
chore(deps): update dependency lint-staged to v15.3.0 ( #4891 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 16:58:05 +01:00
ef30aefe71
chore(deps): update dependency rollup to v4.30.0 ( #4890 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 16:57:51 +01:00
Daniel Sogl
499b107c21
6.13.0
2024-12-16 10:50:33 +00:00
21e3e37a0d
feat(clevertap): support clevertap-cordova 3.3.0 ( #4883 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* task(SDK-3757) - Add support for cordova v3.0.0
- Adds 2 new APIs = clearInAppResources() and fetchInApps()
* task(SDK-3757) - Add support for cordova v3.2.0
- Removes xiaomi related APIs
* task(SDK-4148) - Add support for cordova v3.3.0
- Custom Templates
- File Variables
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2024-12-16 10:49:19 +01:00
eca218a36f
chore(deps): update dependency terser-webpack-plugin to v5.3.11 ( #4889 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-16 10:48:55 +01:00
d38db02f92
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.1 ( #4888 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-16 10:48:45 +01:00
b6bc20cefe
chore(deps): update dependency lint-staged to v15.2.11 ( #4887 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-16 10:48:37 +01:00
0e12d1dc65
chore(deps): update dependency is-ci to v4 ( #4885 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-16 10:48:30 +01:00
b5dc553659
chore(deps): update dependency rollup to v4.28.1 ( #4884 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-16 10:48:21 +01:00
1337ff5c7e
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.0 ( #4882 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-03 16:11:53 +01:00
14b04b5243
chore(deps): update dependency rollup to v4.28.0 ( #4880 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-03 16:11:40 +01:00
Daniel Sogl
740268a75b
6.12.0
2024-11-21 19:23:01 +00:00
Maxim Belov and GitHub
e85f761999
refactor(status-bar): remove deprecated methods ( #4872 ) [skip ci]
2024-11-21 19:32:19 +01:00
acb6ba74fc
chore(deps): update dependency rollup to v4.27.3 ( #4877 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-21 19:32:01 +01:00
a5ac795ef4
chore(deps): update dependency husky to v9.1.7 ( #4878 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-21 19:31:51 +01:00
e95aa9ea74
chore(deps): update dependency rollup to v4.26.0 ( #4876 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-14 14:25:59 +01:00
74c9cd2a66
chore(deps): update dependency eslint-plugin-jsdoc to v50.5.0 ( #4874 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-14 14:25:48 +01:00
gxolin and GitHub
b20c67bf14
feat(in-app-purchase-3) new InAppPurchase3 plugin fixed ( #4873 )
...
* fix(in-app-purchase-3) typings and doc
* update return type for initialize
2024-11-14 14:25:32 +01:00
Daniel Sogl
d83b124cec
6.11.0
2024-11-11 09:14:05 +00:00
Maxim Belov and GitHub
381f012402
chore: update node-version from 16 to 20 ( #4845 )
2024-11-11 10:10:28 +01:00
Fabio Martino and GitHub
658a55bc97
feat(cordova-plugin-iroot): add plugin ( #4857 )
2024-11-11 10:09:00 +01:00
Fabio Martino and GitHub
ac767ab219
fix(cordova-plugin-firebase-model): updated to @awesome-cordova-plugins/core ( #4858 )
2024-11-11 10:08:30 +01:00
4b526e4d4d
fix(deps): update dependency tslib to v2.8.1 ( #4856 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:07:48 +01:00
da7b13fbcf
chore(deps): update dependency winston to v3.17.0 ( #4853 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:07:38 +01:00
890b8b855c
chore(deps): update dependency eslint-plugin-jsdoc to v50.4.3 ( #4855 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:07:29 +01:00
9744564c8a
chore(deps): update actions/checkout action to v4.2.2 ( #4865 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:07:14 +01:00
a99ef76251
chore(deps): update actions/setup-node action to v4.1.0 ( #4866 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:06:16 +01:00
a97314afd5
chore(deps): update dependency rollup to v4.25.0 ( #4867 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 10:06:07 +01:00
Daniel Sogl and GitHub
652431206c
Revert "feat(in-app-purchase-3) new InAppPurchase3 plugin ( #4849 )" ( #4871 )
...
This reverts commit be6000f13c .
2024-11-11 10:02:23 +01:00
Daniel Sogl
68abedd15a
6.10.0
2024-10-13 14:55:34 +00:00
910af256af
chore(deps): update dependency rollup to v4.24.0 ( #4851 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-13 16:46:31 +02:00
3434bd5dce
chore(deps): update dependency eslint-plugin-jsdoc to v50.3.2 ( #4850 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-13 16:46:24 +02:00
gxolin and GitHub
be6000f13c
feat(in-app-purchase-3) new InAppPurchase3 plugin ( #4849 )
...
* feat(in-app-purchase-3) new InAppPurchase3 plugin
* fix(in-app-purchase-3) fix typing and es-lint
2024-10-13 16:46:14 +02:00
Maxim Belov and GitHub
e830259beb
feat(bluetooth-classic-serial-port): add method initialize ( #4847 )
...
* feat(bluetooth-classic-serial-port): add method initialize
* Update index.ts
2024-10-13 16:45:52 +02:00
Maxim Belov and GitHub
4e817a96a8
fix(screenshot): Update plugin NPM package name ( #4844 )
2024-10-13 16:45:37 +02:00
Maxim Belov and GitHub
61d0854f73
feat(intercom): add support cordova-intercom v14+ ( #4839 )
...
* feat(intercom): update wrapper for Cordova Intercom v14+
* update types
* intercom: update types
* intercom: update types
* fix readme generator
2024-10-13 16:45:24 +02:00
Maxim Belov and GitHub
3a64cd4bcd
fix(in-app-browser): remove duplicated method ( #4838 )
2024-10-13 16:45:14 +02:00
Maxim Belov and GitHub
c40a73407d
feat(sockets-udp): add plugin ( #4832 )
2024-10-13 16:45:01 +02:00
Maxim Belov and GitHub
bb5b344100
feat(sockets-tcp): add plugin ( #4833 )
2024-10-13 16:44:49 +02:00
Maxim Belov and GitHub
f87a73f29d
feat(shortcuts-android): add plugin ( #4831 )
2024-10-13 16:44:30 +02:00
Maxim Belov and GitHub
bff5cce125
feat(network-permission): add plugin ( #4830 )
2024-10-13 16:44:20 +02:00
Maxim Belov and GitHub
8fc3465ed5
refactor(three-dee-touch): Replace onHomeIconPressed with registerQuickActionListener ( #4829 )
...
* refactor(three-dee-touch): Replace onHomeIconPressed with registerQuickActionListener
* fix: install option
* remove install
2024-10-13 16:44:04 +02:00
Uglješa Erceg and GitHub
50287d1f5a
feat(adjust): update adjust sdk index.ts api to v5.0.0 ( #4826 )
2024-10-13 16:43:48 +02:00
45fdf7fb3d
chore(deps): update actions/checkout action to v4.2.1 ( #4843 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-13 16:43:11 +02:00
7b24fa8478
chore(deps): update dependency rollup to v4.22.4 [security] ( #4841 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-13 16:42:58 +02:00
12d6baed90
build(deps-dev): bump rollup from 4.22.0 to 4.22.4 ( #4840 ) [skip ci]
...
Bumps [rollup](https://github.com/rollup/rollup ) from 4.22.0 to 4.22.4.
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.22.0...v4.22.4 )
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-13 16:42:47 +02:00
4c2af62bfa
chore(deps): update actions/setup-node action to v4.0.4 ( #4835 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-13 16:42:35 +02:00
f53aea0a47
chore(deps): update dependency eslint-plugin-jsdoc to v50.2.4 ( #4825 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-19 11:23:40 +02:00
621c5842b9
chore(deps): update dependency eslint to v8.57.1 ( #4828 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-19 11:23:30 +02:00
04550843e5
chore(deps): update dependency rollup to v4.22.0 ( #4834 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-19 11:23:15 +02:00
Daniel Sogl
6c480237cf
6.9.0
2024-09-13 06:55:24 +00:00
f86836ab13
chore(deps): update dependency eslint-plugin-jsdoc to v50 ( #4824 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 15:55:40 +02:00
1c21dd1a77
fix(deps): update dependency tslib to v2.7.0 ( #4823 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:22:18 +02:00
657b31f67b
chore(deps): update dependency winston to v3.14.2 ( #4822 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:21:29 +02:00
akshay-engage and GitHub
3168688ce4
feat(webengage): New Plugin for Notification Inbox ( #4819 )
...
* WebEngage SDK Security Added, New Plugin for Capacitor Inbox Added
* Added setLocation for Core
* Added NotificationResponse Type
* Changed count type from number to String
* Added dist library folders
* Revert "Added dist library folders"
This reverts commit ea77a41fea .
* Updated comments
2024-09-12 12:21:11 +02:00
5f15119971
feat(approov-advanced-http): support approov3 methods ( #4817 )
...
* feat(approov-advanced-http): add approov3 methods
* fix(approov-advanced-http): fix remove exclusion url method name
* Keep master branch packages
---------
Co-authored-by: Richard Taylor <richard.taylor@criticalblue.com >
Co-authored-by: ivo.liondov <ivol@Sanctuary.local >
2024-09-12 12:20:45 +02:00
4471806f73
feat(clevertap): support clevertap-cordova 3.2.0 ( #4814 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* task(SDK-3757) - Add support for cordova v3.0.0
- Adds 2 new APIs = clearInAppResources() and fetchInApps()
* task(SDK-3757) - Add support for cordova v3.2.0
- Removes xiaomi related APIs
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2024-09-12 12:20:19 +02:00
Olga Koroleva and GitHub
63f2fcbe99
feat(mobile-messaging): Added fullFeaturedInApps method to config, fetching of the Inbox methods and registerForRemoteAndroidNotifications method ( #4810 )
...
* feat(mobile-messaging): fullfeaturedInApps option to configuration, support of the Inbox methods and registerForAndroidRemoteNotifications method
* fix(mobile-messaging): cleanup
2024-09-12 12:19:52 +02:00
5aa432d0a2
chore(deps): update dependency lint-staged to v15.2.10 ( #4813 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:19:32 +02:00
9569628c67
chore(deps): update dependency rollup to v4.21.3 ( #4809 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:19:24 +02:00
d03b4cc113
chore(deps): update dependency eslint-plugin-jsdoc to v48.11.0 ( #4808 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:19:15 +02:00
82be769a16
chore(deps): update dependency husky to v9.1.6 ( #4806 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-12 12:19:07 +02:00
Daniel Sogl
96678cb14c
6.8.0
2024-07-11 06:09:08 +00:00
bd7c6abb05
build(deps-dev): bump ws from 7.5.7 to 7.5.10 ( #4793 ) [skip ci]
...
Bumps [ws](https://github.com/websockets/ws ) from 7.5.7 to 7.5.10.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/7.5.7...7.5.10 )
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-11 08:04:12 +02:00
0c39ec959a
fix(ssl-certificate-checker): adjust method interfaces to follow plugin api ( #4799 )
...
Co-authored-by: Fabio Martino <FMARTIN1@autopistas.com >
2024-07-11 08:03:50 +02:00
akshay-engage and GitHub
9b950ebc46
feat(webengage): add new methods ( #4784 )
...
* setDevicePushOptIn Added for Android 13
* notificaiton-onPrepared, GAID, userOptIn Added
* Refactoring
2024-07-11 08:02:36 +02:00
Maxim Belov and GitHub
12b8046541
feat(barkoder): add plugin ( #4782 )
2024-07-11 08:02:02 +02:00
Massimiliano Modena and GitHub
09bc540b80
feat(firebase-x): add consent mode ( #4779 )
2024-07-11 08:01:43 +02:00
Maxim Belov and GitHub
90efdc9481
feat(genius-scan): add plugin ( #4775 ) [skip ci]
2024-07-11 08:01:11 +02:00
Maxim Belov and GitHub
4e933e8e93
feat(airship): add isForeground to push received events ( #4763 )
...
* add onBackgroundPushReceived
* add isForeground to PushReceivedEvent
2024-07-11 08:00:55 +02:00
07bf7a96fc
chore(deps): update dependency @types/node to v20.14.10 ( #4785 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 08:00:08 +02:00
583a5eda8d
chore(deps): update dependency lint-staged to v15.2.7 ( #4790 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:59:59 +02:00
1b38354650
chore(deps): update actions/checkout action to v4.1.7 ( #4791 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:59:50 +02:00
52adaf9269
chore(deps): update dependency eslint-plugin-jsdoc to v48.7.0 ( #4792 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:59:33 +02:00
5289f07690
chore(deps): update dependency rollup to v4.18.1 ( #4800 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:59:14 +02:00
a5cf118a13
chore(deps): update actions/setup-node action to v4.0.3 ( #4802 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:59:04 +02:00
075efcbde1
chore(deps): update dependency winston to v3.13.1 ( #4803 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 07:58:56 +02:00
467d8cb072
chore(deps): update dependency lint-staged to v15.2.5 ( #4780 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 16:11:41 +02:00
e704bcb441
chore(deps): update dependency rollup to v4.18.0 ( #4781 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 16:11:30 +02:00
4169b6628f
chore(deps): update dependency eslint-plugin-jsdoc to v48.2.9 ( #4783 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 16:11:18 +02:00
50ab537fdd
fix(deps): update dependency tslib to v2.6.3 ( #4786 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 16:11:03 +02:00
5c7218e8f6
chore(deps): update dependency @types/lodash to v4.17.5 ( #4789 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 16:10:51 +02:00
renovate[bot] and GitHub
1077071fa4
chore(deps): update dependency @types/lodash to v4.17.4 ( #4770 )
2024-05-18 16:17:09 +02:00
renovate[bot] and GitHub
9d673e1898
chore(deps): update dependency eslint-plugin-jsdoc to v48.2.5 ( #4773 )
2024-05-18 16:16:59 +02:00
renovate[bot] and GitHub
cb765d818f
chore(deps): update dependency conventional-changelog-cli to v5 ( #4769 )
2024-05-18 16:16:15 +02:00
renovate[bot] and GitHub
f95a098870
chore(deps): update dependency @types/node to v20.12.12 ( #4768 )
2024-05-18 16:16:04 +02:00
renovate[bot] and GitHub
d9489639b8
chore(deps): update dependency rollup to v4.17.2 ( #4766 )
2024-05-18 16:15:57 +02:00
renovate[bot] and GitHub
bc30032238
chore(deps): update actions/checkout action to v4.1.6 ( #4771 )
2024-05-18 16:15:47 +02:00
fed35441b0
chore(deps): update dependency rollup to v4.17.0 ( #4764 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 06:00:20 +02:00
aca4133c4d
chore(deps): update actions/checkout action to v4.1.4 ( #4765 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-28 06:00:06 +02:00
Daniel Sogl
6e4373aed3
6.7.0
2024-04-17 09:36:28 +00:00
fc61c40317
chore(deps): update dependency gulp to v5 ( #4762 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:31:09 +02:00
dab9fd84bc
chore(deps): update dependency eslint-plugin-jsdoc to v48 ( #4708 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:30:34 +02:00
ef62700395
chore(deps): update dependency rollup to v4.14.3 ( #4710 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:30:16 +02:00
8c970ef7f6
chore(deps): update dependency @types/node to v20.12.7 ( #4712 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:30:04 +02:00
0625a9280e
chore(deps): update dependency husky to v9 ( #4721 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:29:55 +02:00
Uglješa Erceg and GitHub
551170b8d7
feat(adjust): update wrapper for Adjust Cordova SDK v4.37.1 ( #4724 )
2024-04-17 11:29:45 +02:00
UzverNumber47 and GitHub
23e6147b25
fix(firebase-x): filters for fetchFirestoreCollection ( #4733 )
2024-04-17 11:29:27 +02:00
51d82f581d
feat(ssl-certificate-checker): add SSL Certificate Checker support ( #4734 )
...
Co-authored-by: Fabio Martino <fabio.martino@babelgroup.com >
2024-04-17 11:29:07 +02:00
74b93d7499
fix: 🐛 wrong top package main field ( #4736 )
...
fix: 🐛 remove custom formatting
Co-authored-by: Dimitri Steinel <dimitri.steinel@bsdex.de >
2024-04-17 11:28:49 +02:00
6e7d0069c1
feat(cashfree-pg): support cordova-plugin-cashfree-pg 1.0.6 ( #4737 )
...
Co-authored-by: Kishan_maurya <kishan.maurya@cashfree.com >
2024-04-17 11:28:09 +02:00
e7963f6f03
chore(deps): update dependency eslint to v8.57.0 ( #4740 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:27:55 +02:00
7e8657ea32
chore(deps): update dependency winston to v3.13.0 ( #4744 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:27:45 +02:00
Maxim Belov and GitHub
80a01197b5
feat(contacts): add plugin ( #4750 )
...
* feat(contacts): add plugin
* update repo
2024-04-17 11:27:34 +02:00
Maxim Belov and GitHub
a3ba0015ed
feat(screenshot): add plugin ( #4751 )
2024-04-17 11:27:17 +02:00
Maxim Belov and GitHub
6d3008d6fc
feat(airship): add plugin ( #4755 )
...
* feat(airship): add plugin
* setQuietTimeEnabled -> setQuietTime
* fix readme pipeline
* AirShip -> Airship
* fix decorator
2024-04-17 11:27:00 +02:00
Art Turanoff and GitHub
d65e7ee647
feat(adjust): Add Remote Config missing functions ( #4756 )
...
* Add missing functions
* Revert changes to firebase
* revert full stop
* add callback functions
* fix return types
* fix callback function types
* fix jsdoc
2024-04-17 11:26:27 +02:00
Art Turanoff and GitHub
adb330aa63
fix(firebase-x): setConfigSettings function input parameters aligned with firebase-x plugin ( #4757 )
...
* Implement fix
* revert changes to firebase
* correct success callback
* fix jsdoc
* fix return type
2024-04-17 11:26:08 +02:00
d607550573
chore(deps): update dependency @types/lodash to v4.17.0 ( #4758 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:25:50 +02:00
d5e8fb253d
chore(deps): update dependency @types/rimraf to v4 ( #4759 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 11:25:42 +02:00
974466ae39
feat(clevertap): support clevertap-cordova 3.0.0 ( #4760 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* task(SDK-3757) - Add support for cordova v3.0.0
- Adds 2 new APIs = clearInAppResources() and fetchInApps()
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2024-04-17 11:25:26 +02:00
60cf9acee5
chore(deps): update dependency terser-webpack-plugin to v5.3.10 ( #4702 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-31 09:40:51 +01:00
9740eadfd5
chore(deps): update dependency @types/node to v20.10.6 ( #4703 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-31 09:40:39 +01:00
95e848f4e5
chore(deps): update dependency rollup to v4.9.2 ( #4704 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-31 09:40:06 +01:00
3b9dabc18c
chore(deps): update dependency eslint-plugin-jsdoc to v46.10.1 ( #4706 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-31 09:39:51 +01:00
Daniel Sogl
7e2894f769
6.6.0
2023-12-19 22:13:56 +01:00
+3
709049f2e7
feat(adjust): update wrapper for Adjust Cordova SDK v4.35.1 ( #4696 )
...
* feat(diagnostics): add missing constants and methods for latest plugin version (#4600 )
* feat(cordova-plugin-firebase-model): Add new plugin to download and process ML model hosted in firebase. (#4608 )
* feat(unvired-cordova-sdk): Add new function to regenrate the JWT Token
* feat(unvired-cordova-sdk): Add couple of properties to login parameters.
* feat(cordova-plugin-firebase-model): Add new plugin for downloading and processing ML model hosted in Firebase.
* fix(cordova-plugin-unvired-sdk): revert last set of changes.
* fix(cordova-plugin-unvired-sdk): Add two new login properties.
* fix(cordova-plugin-firebase-model): Delete the previously added plugin.
* Revert "fix(cordova-plugin-firebase-model): Delete the previously added plugin."
This reverts commit 86f39dc7e8 .
* Revert "fix(cordova-plugin-unvired-sdk): Add two new login properties."
This reverts commit a79f31e12e .
* feat(clevertap): support clevertap-cordova 2.7.0 (#4617 ) [skip ci]
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
* feat(save-dialog): add plugin (#4618 )
* smtp-client
* fix plugin ref
* cloud settings
* + save-dialog
---------
Co-authored-by: Daniel Sogl <daniel@sogls.de >
* feat(adjust): update wrapper for Adjust Cordova SDK v4.35.1
* fix(adjust): rename duplicated AdjustAppStorePurchase class member
---------
Co-authored-by: Dave Alden <dpa99c@gmail.com >
Co-authored-by: Srinidhi <srinidhi.rao@unvired.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: marysuon <marysuon@gmail.com >
Co-authored-by: uerceg <ugi@adjust.com >
2023-12-19 22:13:31 +01:00
Daniel Sogl
02219c07c6
6.5.0
2023-12-19 22:07:14 +01:00
1f1c35a39f
chore(deps): update angular to v12.2.17 ( #4695 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 22:05:43 +01:00
+2
0cf84a68ed
docs(cloud-settings): Change installation example to use plugin author's package ID ( #4694 )
...
* feat(diagnostics): add missing constants and methods for latest plugin version (#4600 )
* feat(cordova-plugin-firebase-model): Add new plugin to download and process ML model hosted in firebase. (#4608 )
* feat(unvired-cordova-sdk): Add new function to regenrate the JWT Token
* feat(unvired-cordova-sdk): Add couple of properties to login parameters.
* feat(cordova-plugin-firebase-model): Add new plugin for downloading and processing ML model hosted in Firebase.
* fix(cordova-plugin-unvired-sdk): revert last set of changes.
* fix(cordova-plugin-unvired-sdk): Add two new login properties.
* fix(cordova-plugin-firebase-model): Delete the previously added plugin.
* Revert "fix(cordova-plugin-firebase-model): Delete the previously added plugin."
This reverts commit 86f39dc7e8 .
* Revert "fix(cordova-plugin-unvired-sdk): Add two new login properties."
This reverts commit a79f31e12e .
* feat(clevertap): support clevertap-cordova 2.7.0 (#4617 ) [skip ci]
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
* feat(save-dialog): add plugin (#4618 )
* smtp-client
* fix plugin ref
* cloud settings
* + save-dialog
---------
Co-authored-by: Daniel Sogl <daniel@sogls.de >
* Change installation example to use plugin author's package ID
(rather than a random fork)
---------
Co-authored-by: Dave Alden <dpa99c@gmail.com >
Co-authored-by: Srinidhi <srinidhi.rao@unvired.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: marysuon <marysuon@gmail.com >
2023-12-19 22:04:00 +01:00
Daniel Sogl
73bcc4053d
set angular version to v12 [skip ci]
2023-12-19 22:03:28 +01:00
+3
e4af3a0390
feat(revenue) update to cordova 5 ( #4693 )
...
* feat(diagnostics): add missing constants and methods for latest plugin version (#4600 )
* feat(cordova-plugin-firebase-model): Add new plugin to download and process ML model hosted in firebase. (#4608 )
* feat(unvired-cordova-sdk): Add new function to regenrate the JWT Token
* feat(unvired-cordova-sdk): Add couple of properties to login parameters.
* feat(cordova-plugin-firebase-model): Add new plugin for downloading and processing ML model hosted in Firebase.
* fix(cordova-plugin-unvired-sdk): revert last set of changes.
* fix(cordova-plugin-unvired-sdk): Add two new login properties.
* fix(cordova-plugin-firebase-model): Delete the previously added plugin.
* Revert "fix(cordova-plugin-firebase-model): Delete the previously added plugin."
This reverts commit 86f39dc7e8 .
* Revert "fix(cordova-plugin-unvired-sdk): Add two new login properties."
This reverts commit a79f31e12e .
* feat(clevertap): support clevertap-cordova 2.7.0 (#4617 ) [skip ci]
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
* feat(save-dialog): add plugin (#4618 )
* smtp-client
* fix plugin ref
* cloud settings
* + save-dialog
---------
Co-authored-by: Daniel Sogl <daniel@sogls.de >
* Update to cordova 5 (#98 )
---------
Co-authored-by: Dave Alden <dpa99c@gmail.com >
Co-authored-by: Srinidhi <srinidhi.rao@unvired.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: marysuon <marysuon@gmail.com >
Co-authored-by: Cesar de la Vega <cesarvegaro@gmail.com >
2023-12-19 21:58:30 +01:00
68105e14fc
chore(deps): update dependency @types/node to v20 ( #4681 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:50:33 +01:00
094cfd4c8f
chore(deps): update dependency rollup to v4.9.1 ( #4686 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:50:26 +01:00
4e747b8e2c
chore(deps): update dependency ts-node to v10.9.2 ( #4687 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:50:18 +01:00
d9eb83431d
chore(deps): update dependency eslint-plugin-jsdoc to v46.9.1 ( #4690 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:50:10 +01:00
2dde2de42d
chore(deps): update dependency eslint to v8.56.0 ( #4691 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:50:04 +01:00
e579eb58e2
chore(deps): update actions/setup-node action to v4.0.1 ( #4692 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-19 19:49:54 +01:00
bddafc779a
feat(clevertap): support clevertap-cordova 2.7.2 ( #4683 ) [skip ci]
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
* feat(clevertap): support clevertap-cordova 2.7.2
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
2023-12-07 17:37:52 +01:00
a7d5e28671
chore(deps): update dependency @types/node to v18.19.3 ( #4684 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-07 17:37:29 +01:00
d8e1cbd06e
chore(deps): update actions/stale action to v9 ( #4685 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-07 17:37:19 +01:00
f533c5990c
chore(deps): update dependency rollup to v4 ( #4679 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:35:43 +01:00
+4
3ba983aa7f
fix(diagnostic): add LIMITED permissionStatus ( #4645 )
...
* feat(diagnostics): add missing constants and methods for latest plugin version (#4600 )
* feat(cordova-plugin-firebase-model): Add new plugin to download and process ML model hosted in firebase. (#4608 )
* feat(unvired-cordova-sdk): Add new function to regenrate the JWT Token
* feat(unvired-cordova-sdk): Add couple of properties to login parameters.
* feat(cordova-plugin-firebase-model): Add new plugin for downloading and processing ML model hosted in Firebase.
* fix(cordova-plugin-unvired-sdk): revert last set of changes.
* fix(cordova-plugin-unvired-sdk): Add two new login properties.
* fix(cordova-plugin-firebase-model): Delete the previously added plugin.
* Revert "fix(cordova-plugin-firebase-model): Delete the previously added plugin."
This reverts commit 86f39dc7e8 .
* Revert "fix(cordova-plugin-unvired-sdk): Add two new login properties."
This reverts commit a79f31e12e .
* feat(clevertap): support clevertap-cordova 2.7.0 (#4617 ) [skip ci]
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
* Update index.ts to support cordova 2.7.0
* Update index.ts
---------
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
* feat(save-dialog): add plugin (#4618 )
* smtp-client
* fix plugin ref
* cloud settings
* + save-dialog
---------
Co-authored-by: Daniel Sogl <daniel@sogls.de >
* fix(diagnostic): fix typo
* fix(diagnostic): add LIMITED to permissionStatus
---------
Co-authored-by: Dave Alden <dpa99c@gmail.com >
Co-authored-by: Srinidhi <srinidhi.rao@unvired.com >
Co-authored-by: AishwaryaNanna <97506871+AishwaryaNanna@users.noreply.github.com >
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
Co-authored-by: Piyush Kukadiya <piyush.kukadiya@clevertap.com >
Co-authored-by: piyush-kukadiya <61137760+piyush-kukadiya@users.noreply.github.com >
Co-authored-by: marysuon <marysuon@gmail.com >
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2023-12-03 20:34:48 +01:00
805a2737da
chore(deps): update dependency eslint-plugin-jsdoc to v46.9.0 ( #4678 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:32:58 +01:00
b7dc7ffea7
build(deps-dev): bump @babel/traverse from 7.15.4 to 7.23.5 ( #4677 ) [skip ci]
...
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse ) from 7.15.4 to 7.23.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.5/packages/babel-traverse )
---
updated-dependencies:
- dependency-name: "@babel/traverse"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-03 20:32:51 +01:00
0c2dca633a
chore(deps): update dependency lint-staged to v15 ( #4676 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:32:40 +01:00
3c893d7119
chore(deps): update dependency winston to v3.11.0 ( #4672 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:32:28 +01:00
61289bbbba
chore(deps): update actions/checkout action to v4 ( #4673 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:32:21 +01:00
dd2dc1b05f
chore(deps): update dependency conventional-changelog-cli to v4 ( #4675 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:32:11 +01:00
cef6c8f896
chore(deps): update actions/setup-node action to v4 ( #4674 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:30:09 +01:00
e3d3ee2b01
chore(deps): update dependency rollup to v3.29.4 ( #4671 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:29:48 +01:00
ecff55ceba
chore(deps): update dependency @types/cordova to v11.0.3 ( #4647 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:26:50 +01:00
1c4cbffe1d
chore(deps): update actions/checkout action to v3.6.0 ( #4670 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:25:55 +01:00
5355e922ac
fix(deps): update dependency tslib to v2.6.2 ( #4669 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:25:42 +01:00
5750f305bf
chore(deps): update dependency @types/node to v18.19.2 ( #4621 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:25:08 +01:00
f09471207d
chore(deps): update dependency eslint to v8.55.0 ( #4619 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:25:01 +01:00
c021fc79e6
chore(deps): update actions/setup-node action to v3.8.2 ( #4624 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:24:45 +01:00
d616ed5133
chore(deps): update dependency fs-extra to v11.2.0 ( #4650 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:24:05 +01:00
7865e279c5
chore(deps): update dependency @types/lodash to v4.14.202 ( #4651 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:22:55 +01:00
ff6a69af97
chore(deps): update dependency @types/webpack to v5.28.5 ( #4654 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:22:47 +01:00
9c2b70771d
chore(deps): update dependency rimraf to v5.0.5 ( #4657 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-03 20:22:26 +01:00
ae0d5dbac0
chore(deps): update dependency eslint-config-prettier to v8.10.0 ( #4614 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:08:00 +02:00
9b7148a8a9
chore(deps): update dependency @types/node to v18.17.4 ( #4609 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:07:48 +02:00
d30052d8cf
fix(deps): update dependency tslib to v2.6.1 ( #4610 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:07:39 +02:00
56126dd6a9
chore(deps): update dependency rollup to v3.28.0 ( #4615 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:05:04 +02:00
8fa353c1b8
chore(deps): update dependency eslint-plugin-jsdoc to v46.4.6 ( #4613 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:04:38 +02:00
55826b691f
chore(deps): update dependency @types/lodash to v4.14.197 ( #4612 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 20:04:20 +02:00
d7f4347f39
build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 ( #4604 )
...
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap ) from 1.2.3 to 1.2.4.
- [Release notes](https://github.com/jonschlinkert/word-wrap/releases )
- [Commits](https://github.com/jonschlinkert/word-wrap/compare/1.2.3...1.2.4 )
---
updated-dependencies:
- dependency-name: word-wrap
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-21 19:15:36 +02:00
06247530a8
chore(deps): update dependency rollup to v3.26.3 ( #4603 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-21 19:15:26 +02:00
4d45e82e0e
chore(deps): update dependency eslint-plugin-jsdoc to v46.4.4 ( #4602 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-21 19:15:17 +02:00
df36932de7
chore(deps): update dependency eslint to v8.45.0 ( #4601 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-21 19:15:06 +02:00
Daniel Sogl
ce3a3c8b76
refresh docs
2023-07-11 18:40:56 +00:00
Daniel Sogl
0f6d1c8354
6.4.0
2023-07-11 18:06:28 +00:00
72da25ff29
chore(deps): update dependency eslint-plugin-jsdoc to v46 ( #4597 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:59:37 +02:00
96cc995333
chore(deps): update dependency conventional-changelog-cli to v3 ( #4596 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:49 +02:00
b600651f02
fix(deps): update dependency tslib to v2.6.0 ( #4595 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:38 +02:00
81987ebce4
chore(deps): update dependency winston to v3.10.0 ( #4594 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:31 +02:00
555bb83916
chore(deps): update dependency eslint-plugin-jsdoc to v43.2.0 ( #4593 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:24 +02:00
b18a2c874e
chore(deps): update dependency eslint to v8.44.0 ( #4592 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:18 +02:00
d92c4cf70a
chore(deps): update actions/setup-node action to v3.7.0 ( #4591 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:53:03 +02:00
0d5991c604
chore(deps): update dependency terser-webpack-plugin to v5.3.9 ( #4590 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:52:50 +02:00
1fbd4c763c
chore(deps): update dependency rimraf to v5.0.1 ( #4589 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:52:42 +02:00
f82f350613
chore(deps): update dependency @types/webpack to v5.28.1 ( #4545 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:48:45 +02:00
5f30a88304
chore(deps): update dependency lint-staged to v13.2.3 ( #4588 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:48:34 +02:00
4372ff160a
chore(deps): update dependency @types/node to v18.16.19 ( #4562 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:48:15 +02:00
02be833b85
chore(deps): update actions/checkout action to v3.5.3 ( #4587 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:48:08 +02:00
6d1d9f480d
chore(deps): update typescript-eslint monorepo to v5.62.0 ( #4559 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:28:10 +02:00
a151860df9
chore(deps): update dependency @types/lodash to v4.14.195 ( #4574 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:28:01 +02:00
c9acedae52
build(deps): bump tough-cookie from 4.0.0 to 4.1.3 ( #4586 )
...
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie ) from 4.0.0 to 4.1.3.
- [Release notes](https://github.com/salesforce/tough-cookie/releases )
- [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md )
- [Commits](https://github.com/salesforce/tough-cookie/compare/v4.0.0...v4.1.3 )
---
updated-dependencies:
- dependency-name: tough-cookie
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-11 19:27:49 +02:00
ece66eeb7f
chore(deps): update dependency rollup to v3.26.2 ( #4558 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 19:27:20 +02:00
2b6c297da8
feat(smtp-client): add plugin ( #4585 )
...
* smtp-client
* fix plugin ref
* cloud settings
---------
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2023-07-11 19:27:06 +02:00
Matt and GitHub
126d44faf3
feat(urbanairship): Add locale override methods ( #4579 )
2023-07-11 19:26:11 +02:00
8047c9ad52
feat(cashfree-pg): support cordova-plugin-cashfree-pg 1.0.2 ( #4572 )
...
Co-authored-by: aabhas_jindal <aabhas@cashfree.com >
2023-07-11 19:25:50 +02:00
178f56625e
feat(newrelic): add shutdown method ( #4571 )
...
Co-authored-by: Kenny <kthai@newrelic.com >
2023-07-11 19:25:39 +02:00
Željko Brcković and GitHub
fbd523f36a
fix(mobile-messaging): fix event (un)register and saveUser ( #4569 )
...
Fix methods for registering and unregistering events and improve comments. Also make return type for saveUser more descriptive.
2023-07-11 19:25:29 +02:00
Olga Koroleva and GitHub
0527afe935
fix(mobile-messaging): correct return type of submitEvent ( #4564 )
2023-07-11 19:25:14 +02:00
MaximBelov and GitHub
e3af183e0c
feat(sms-retriever-api): add plugin ( #4528 )
2023-07-11 19:25:02 +02:00
Felix Salazar and GitHub
f9110cb429
feat(zip): add callback param so the progress function can be calleds ( #4519 )
2023-07-11 19:24:50 +02:00
MaximBelov and GitHub
bb1164f4fc
refactor(anyline): support anyline 43.0.0 ( #4518 )
2023-07-11 19:24:24 +02:00
MaximBelov and GitHub
4cd48b4d0e
feat(http): onProgress param to sendRequest method ( #4512 )
...
* feat(http): add onProgress callback to uploadFile and downloadFile
* feat(http): add uploadFileWithOptions and downloadFileWithOptions methods
* add onProgress to sendRequest
2023-07-11 19:24:15 +02:00
Martin Budínský and GitHub
baa207b724
feat(smartlook): rewrite smartlook ionic plugin ( #4510 )
...
* feat(smartlook): rewrite smartlook ionic plugin
* feat(smartlook): adhere smartlook plugin to sdk v2.2.0
2023-07-11 19:23:59 +02:00
213a26730e
chore(deps): update dependency minimist to v1.2.8 ( #4515 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:41:14 +02:00
611374066e
chore(deps): update dependency rollup to v3.21.1 ( #4557 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:39:08 +02:00
f609b9332b
chore(deps): update dependency eslint to v8.39.0 ( #4556 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:38:52 +02:00
a236719a71
chore(deps): update actions/setup-node action to v3.6.0 ( #4555 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:38:39 +02:00
d726bac60e
chore(deps): update typescript-eslint monorepo to v5.59.1 ( #4550 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:38:12 +02:00
7e533f48b9
fix(deps): update dependency tslib to v2.5.0 ( #4552 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:38:01 +02:00
d6827531ee
chore(deps): update dependency prettier to v2.8.8 ( #4554 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:37:40 +02:00
e96885c6b0
chore(deps): update dependency eslint-plugin-jsdoc to v43 ( #4548 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:33:17 +02:00
6b827ffe95
chore(deps): update dependency @types/cordova to v11 ( #4547 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:30:56 +02:00
90e5028547
chore(deps): update dependency lint-staged to v13.2.2 ( #4544 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:29:39 +02:00
b2b3e3a6e3
chore(deps): update dependency rimraf to v5 ( #4549 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:29:24 +02:00
06018b2cc7
chore(deps): update dependency eslint-config-prettier to v8.8.0 ( #4542 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:27:37 +02:00
f5c3307969
chore(deps): update dependency fs-extra to v11.1.1 ( #4540 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:27:20 +02:00
4435e7a3e0
chore(deps): update dependency @types/node to v18.16.3 ( #4541 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:27:10 +02:00
7a0a73db3b
chore(deps): update actions/stale action to v8 ( #4546 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:26:46 +02:00
7fe38aa378
chore(deps): update dependency @types/lodash to v4.14.194 ( #4529 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:22:24 +02:00
bd0f4b07b4
chore(deps): update dependency terser-webpack-plugin to v5.3.7 ( #4516 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:22:05 +02:00
402f4b7987
chore(deps): update actions/checkout action to v3.5.2 ( #4522 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:21:56 +02:00
6c9bd07361
chore(deps): update dependency eslint to v8.38.0 ( #4491 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:21:33 +02:00
7f0077979c
chore(deps): update dependency prettier to v2.8.7 ( #4490 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:21:24 +02:00
da2ec29c05
chore(deps): update dependency rollup to v3.20.5 ( #4486 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:21:16 +02:00
26bd115891
chore(deps): update typescript-eslint monorepo to v5.59.0 ( #4483 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 23:21:03 +02:00
f92c99bfbf
chore(deps): update dependency @types/fs-extra to v11 ( #4481 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-09 20:48:47 +01:00
9031371721
chore(deps): update dependency prettier to v2.8.2 ( #4479 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-08 13:39:09 +01:00
2d836d3cd0
chore(deps): update dependency husky to v8.0.3 ( #4474 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-03 18:55:31 +01:00
ae8221001e
chore(deps): update typescript-eslint monorepo to v5.48.0 ( #4473 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-03 18:55:25 +01:00
277d696a02
chore(deps): update dependency eslint-config-prettier to v8.6.0 ( #4472 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-03 18:55:15 +01:00
5b768854da
chore(deps): update dependency rollup to v3.9.1 ( #4471 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-02 17:40:25 +01:00
Daniel Sogl
a589dac215
6.3.0
2022-12-31 08:19:35 +00:00
950a1bb4ff
chore(deps): update actions/stale action to v7 ( #4468 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:14:21 +01:00
1b15bf4557
chore(deps): update dependency fs-extra to v11 ( #4469 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:14:04 +01:00
bfd111e9d6
chore(deps): update typescript-eslint monorepo to v5.47.1 ( #4467 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:11:16 +01:00
9715ef8755
chore(deps): update dependency rollup to v3.9.0 ( #4466 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:10:40 +01:00
e21bd1a50e
chore(deps): update dependency prettier to v2.8.1 ( #4465 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:10:06 +01:00
99ec80e2e7
chore(deps): update dependency lint-staged to v13.1.0 ( #4464 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:10:00 +01:00
91da2e5020
chore(deps): update dependency eslint to v8.31.0 ( #4463 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:07:00 +01:00
e1ff6de9ef
chore(deps): update actions/checkout action to v3.2.0 ( #4462 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:05:49 +01:00
Nikhil Arroju and GitHub
d9b3638f3d
docs(readme): update capacitor website links ( #4416 )
2022-12-31 09:04:59 +01:00
82f7fd9e0a
docs(newrelic): update docs ( #4420 )
...
* Adding Newrelic support for Awesome plugins
* Adding more static methods for newrelic cordova plugin
* adding documentation for newrelic plugin
* Updating newrelic cordova plugin repo
* Update index.ts
* fix:updating correct cordova plugin repo
* docs: added Documentation for NewRelic Plugin
* ADDED Record Error and Updated set Attribute Method
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-12-31 09:04:42 +01:00
Alex Ryltsov and GitHub
0579e67e96
feat(fingerprint-aio): update plugin ( #4423 )
...
Changes:
- added confirmationRequired param to show method to options
- moved plugin errors to a separate enum
- changes some plugin method return values
2022-12-31 09:04:05 +01:00
2d55ad694c
build(deps): bump json5 from 2.2.0 to 2.2.2 ( #4459 )
...
Bumps [json5](https://github.com/json5/json5 ) from 2.2.0 to 2.2.2.
- [Release notes](https://github.com/json5/json5/releases )
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md )
- [Commits](https://github.com/json5/json5/compare/v2.2.0...v2.2.2 )
---
updated-dependencies:
- dependency-name: json5
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-31 09:03:16 +01:00
5ae27d8ad4
chore(deps): update dependency @types/node to v18.11.18 ( #4460 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:03:10 +01:00
0ec396b25c
chore(deps): update dependency gulp-replace to v1.1.4 ( #4461 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 09:03:04 +01:00
MaximBelov and GitHub
a095422889
feat(fbsdk): add plugin ( #4431 )
2022-12-31 09:02:54 +01:00
Simon Smith and GitHub
a924fb519f
Update ISSUE_TEMPLATE.md ( #4433 )
...
use checkboxes
2022-12-31 09:02:43 +01:00
MaximBelov and GitHub
63cfd4488d
feat(advanced-image-picker): add plugin ( #4434 )
2022-12-31 09:02:28 +01:00
MaximBelov and GitHub
9b4502f929
feat(ffmpeg): add plugin ( #4435 )
2022-12-31 09:02:18 +01:00
MaximBelov and GitHub
ba37646fc4
fix(chooser): Update for support android 11+ ( #4436 )
...
BREAKING: Updated plugin source https://github.com/MaximBelov/cordova-plugin-chooser
2022-12-31 09:02:04 +01:00
Olivier Favre and GitHub
3b1d0593da
feat(wonderpush): expose getters and setters ( #4441 )
2022-12-31 09:00:05 +01:00
infacto and GitHub
ff78ca7fb4
feat(diagnostics): add getBluetoothAuthorizationStatuses function ( #4442 )
2022-12-31 08:59:22 +01:00
b283dc2e76
feat(power-management): add power management support ( #4443 )
...
Co-authored-by: Fabio Martino <fabio.martino@babel.es >
2022-12-31 08:56:42 +01:00
cc2a78c858
chore(deps): update dependency @types/lodash to v4.14.191 ( #4446 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 08:56:24 +01:00
65d3053a53
chore(deps): update dependency eslint-plugin-jsdoc to v39.6.4 ( #4447 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-31 08:56:14 +01:00
Adrian Cando and GitHub
f02bc78ec2
feat(brightness): add brightness plugin ( #4454 )
...
* feat(brightness): add brightness plugin
* doc(brightness): update usage doc
2022-12-31 08:55:48 +01:00
Adrian Cando and GitHub
7fe3ad1daa
feat(unique-device-id): add unique-device-id plugin ( #4455 )
2022-12-31 08:55:14 +01:00
Adrian Cando and GitHub
e51a1a79ef
feat(mobile-accessibility): add mobile-accessibility plugin ( #4456 )
2022-12-31 08:54:05 +01:00
74a80c0953
feat(clevertap): support clevertap-cordova 2.6.0 ( #4458 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
* feat(clevertap): update for latest CleverTap Cordova plugin
* chore: Update Repo from Ionic Native Repo
* fix: Code Changes for parity SDK-155
* fix: Indentation fixes for SDK-155
* fix: Code Repo fix while updating fork branch
* fix: Remove unnecessary adder .scripts Folder
* fix: Remove unwanted added folder .circleci
* fix: Remove unwanted added File .npmrc
* fix: Revert .Github Folder Changes to as per Ionic-Native master
* fix: Update changes as per ionic-native master
* fix: Code Repo fix while updating fork branch
fix: Remove unnecessary adder .scripts Folder
fix: Remove unwanted added folder .circleci
fix: Remove unwanted added File .npmrc
fix: Revert .Github Folder Changes to as per Ionic-Native master
fix: Update changes as per ionic-native master
* fix(CleverTap): Fix for missing methods issue #3491
* refactor(profile): remove setProfile methods for fb and google
* refactor(dynamic variables): remove Product A/B Testing (Dynamic Variables) code
* fix(product config): add key param to product config getters
* feat(identity): add a new public method getCleverTapID and deprecate existing CleverTapID methods
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(profile): add public methods to increment/decrement values set via User properties
* feat(inapp): add public methods for suspending/discarding & resuming InApp Notifications
* feat(inbox): add new api for iOS to delete bulk inbox messages for given message ids
* refactor(xiaomi-push): add region as an extra mandatory parameter to setPushXiaomiToken
Co-authored-by: Peter Wilkniss <peter@clevertap.com >
Co-authored-by: Daniel Sogl <mytechde@outlook.com >
Co-authored-by: Darshan Pania <darshan@clevertap.com >
Co-authored-by: Surya <suryanarayan@clevertap.com >
Co-authored-by: SuryaClevertap <63039490+SuryaClevertap@users.noreply.github.com >
2022-12-31 08:52:23 +01:00
e32ac8c6c9
build(deps): bump decode-uri-component from 0.2.0 to 0.2.2 ( #4445 )
...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component ) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases )
- [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2 )
---
updated-dependencies:
- dependency-name: decode-uri-component
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-04 14:29:06 +01:00
cf23a52ea2
chore(deps): update dependency @types/node to v18 ( #4395 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-04 14:28:58 +01:00
e7aab1d814
chore(deps): update dependency husky to v8.0.2 ( #4419 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-04 14:28:36 +01:00
34afbd1c53
chore(deps): update typescript-eslint monorepo to v5.42.1 ( #4417 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-07 19:34:45 +01:00
56054d036e
chore(deps): update dependency eslint to v8.27.0 ( #4415 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-06 16:36:23 +01:00
c654ea5925
chore(deps): update dependency eslint-plugin-jsdoc to v39.6.2 ( #4414 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-05 11:11:20 +01:00
70d7acc113
chore(deps): update dependency @types/lodash to v4.14.188 ( #4412 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-04 21:57:00 +01:00
Daniel Sogl and GitHub
60aa74baed
6.2.0
2022-11-04 20:48:47 +00:00
MaximBelov and GitHub
af55cb25fa
feat(device): detect if app is running on a macOS desktop with Apple Silicon ( #4299 )
2022-11-04 21:46:34 +01:00
Cesar de la Vega and GitHub
2b8992faf3
feat(purchases)!: migrate RevenueCat to 3.2.1 ( #4392 )
...
* feat(purchases)!: migrate RevenueCat to 3.2.0
* update version to 3.2.1
2022-11-04 21:46:09 +01:00
e90a6a306c
fix(deps): update dependency tslib to v2.4.1 ( #4413 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-04 21:45:39 +01:00
Alex Ryltsov and GitHub
97f566170e
feat(file-chooser): add plugin ( #4396 )
2022-11-04 21:45:27 +01:00
d2e92f5589
feat(image-resizer): add plugin ( #4397 )
...
* feature: added support for the image-resizer cordova plugin
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-11-04 21:44:53 +01:00
Mathias Verdon and GitHub
c544b43a51
fix(diagnostic): add getBluetoothAuthorizationStatus function ( #4398 )
2022-11-04 21:43:46 +01:00
Sawyer Schumacher and GitHub
755b28e325
feat(ble): add wrapper for starting location notifications ( #4399 )
2022-11-04 21:43:28 +01:00
Mathias Verdon and GitHub
6a97dc5e07
fix(diagnostic): add new Android runtime permissions for Bluetooth ( #4402 )
2022-11-04 21:43:09 +01:00
Nuno Rodrigues and GitHub
2d347e46ed
fix(bluetooth-le): use correct return types ( #4411 )
2022-11-04 21:42:47 +01:00
ef499ed290
feat(newrelic): add plugin ( #4409 )
...
* Adding Newrelic support for Awesome plugins
* Adding more static methods for newrelic cordova plugin
* adding documentation for newrelic plugin
* Updating newrelic cordova plugin repo
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-11-04 21:42:26 +01:00
1e258adeb5
feat(crop-privacy): add plugin ( #4408 )
...
* feat(crop-privacy): add new plugin
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-11-04 21:40:26 +01:00
5c0b31faa7
chore(deps): update dependency rollup to v3.2.5 ( #4406 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-04 21:39:40 +01:00
d00d54f507
chore(deps): update typescript-eslint monorepo to v5.42.0 ( #4405 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-04 21:39:34 +01:00
2e5e43fa7b
chore(deps): update dependency @types/node to v16.18.3 ( #4404 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-04 21:39:25 +01:00
8eddcb0d45
chore(deps): update dependency eslint-plugin-jsdoc to v39.4.0 ( #4403 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-30 12:05:29 +01:00
4716a9db68
chore(deps): update dependency @types/node to v16.18.2 ( #4401 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-29 17:07:06 +02:00
7eb57cdde8
chore(deps): update typescript-eslint monorepo to v5.41.0 ( #4394 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-26 18:41:56 +02:00
6f38115ce2
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.25 ( #4390 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-26 18:41:46 +02:00
d76dfae916
chore(deps): update dependency @types/node to v16.18.1 ( #4391 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-26 18:41:35 +02:00
Daniel Sogl and GitHub
b8e3ac4403
6.1.0
2022-10-22 17:29:32 +00:00
Alex Ryltsov and GitHub
cd81cfabf4
feat(diagnostic): addisCameraRollAuthorized and getCameraRollAuthorizationStatus functions (WIP) ( #4362 )
2022-10-22 19:27:42 +02:00
81a8b42a29
feat(webim): update plugin wrapper ( #4370 )
...
* feat(plugins): Add Webim SDK plugin
* feat(webim): Add request/response models
* feat(webim): Fix Observable methods
* Update index.ts
Co-authored-by: Малько Сергей Сергеевич <malko@softclub.by >
Co-authored-by: SerjMalko <serhey_rti@mail.ru >
2022-10-22 19:04:29 +02:00
Nico Lueg and GitHub
6f14ba6031
feat(purchases)!: migrate RevenueCat to 3.1.0 ( #4382 )
...
- Breaking Changes can be found here: https://github.com/RevenueCat/cordova-plugin-purchases/releases/tag/3.0.0
2022-10-22 19:03:49 +02:00
Alex Ryltsov and GitHub
62f664e61a
fix(launch-navigator): use currect handlers ( #4385 )
2022-10-22 19:03:32 +02:00
664e3385ce
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.15 ( #4389 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 19:02:35 +02:00
8201dc1d14
chore(deps): update dependency rollup to v3.2.3 ( #4381 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 18:37:33 +02:00
375246970c
chore(deps): update dependency eslint to v8.26.0 ( #4388 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 18:36:50 +02:00
d7c771b250
chore(deps): update dependency @types/node to v16.11.68 ( #4386 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-19 19:20:39 +02:00
89b21b7694
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.14 ( #4380 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-19 19:20:27 +02:00
5e23ebebdc
chore(deps): update typescript-eslint monorepo to v5.40.1 ( #4379 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-17 23:26:05 +02:00
5bc6693571
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.12 ( #4378 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-17 23:25:53 +02:00
facadcabaa
chore(deps): update dependency rollup to v3.2.2 ( #4376 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-17 13:26:13 +02:00
Daniel Sogl and GitHub
d1210b76a7
6.0.1
2022-10-17 11:23:43 +00:00
Daniel Sogl and GitHub
e7d1641fe9
fix: use correct core version
2022-10-17 11:23:21 +00:00
e22cf2bb69
chore(deps): update dependency @types/node to v16.11.66 ( #4372 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-16 14:27:28 +02:00
deb8a61a81
chore(deps): update dependency rollup to v3.2.1 ( #4373 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-16 14:27:18 +02:00
3cca6104df
chore(deps): update actions/setup-node action to v3.5.1 ( #4371 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-15 18:20:00 +02:00
Daniel Sogl
de884a55d0
chore: use node v16 in actions
2022-10-15 16:19:39 +00:00
Daniel Sogl
5a22241db5
6.0.0
2022-10-15 16:17:59 +00:00
d476af44cd
chore(deps): update dependency rollup to v3 ( #4367 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-15 18:16:39 +02:00
8b6d6c726b
chore(deps): update dependency minimist to v1.2.7 ( #4365 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-15 18:16:24 +02:00
7f1bf9520b
chore(deps): update dependency @types/node to v16.11.65 ( #4364 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-15 18:16:17 +02:00
f9257f4d65
chore(deps): update typescript-eslint monorepo to v5.40.0 ( #4363 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-15 18:16:10 +02:00
Johannes Korrek and GitHub
85441e59ca
feat(core): use angular ivy ( #4369 )
...
* chore(deps): bump angular and typescript
- required to enable ivy output & partial compilation mode
* chore(build): enable ivy output & partial compilation mode
- change ngx builds to use ivy
- remove some code that is no longer required with ivy
2022-10-15 18:12:20 +02:00
Daniel Sogl
a86c55ba5f
5.46.0
2022-10-09 14:55:04 +00:00
Lihang Xu and GitHub
f8c6430a26
feat(GCDWebServer): add plugin ( #4302 )
...
* add GCDWebServer
* fix plugin ref and add the server options interface
* fix the pluginRef's case
* update name
* add docs
2022-10-09 16:48:59 +02:00
98dc7c4be0
feat(bluetooth-le): upgrade to v6.7.0 ( #4320 )
...
* Update index.ts
updated plugin with new methods from cordova-plugin-bluetoothle 6.7.0
https://github.com/randdusing/cordova-plugin-bluetoothle/compare/v6.6.2...v6.7.0
* Fixed comments
* Fixed responses in new methods
Co-authored-by: claudio <claudio.corti@hondaracing.co.jp >
Co-authored-by: “Claudio <“claudio.corti@bitcycle.uk ”>
2022-10-09 16:47:17 +02:00
Bruno Sales Cardoso and GitHub
178489ffaa
fix(sms-retriever): update startWatching result type ( #4309 )
...
* Updating the types to match what we get
* Update index.ts
2022-10-09 16:45:08 +02:00
Khang and GitHub
bf860c30c2
feat(applovin): add plugin ( #4307 )
...
* feat(applovin): add plugin
* fix(applovin): fix pluginRef, add ad hidden events
2022-10-09 16:44:33 +02:00
Uglješa Erceg and GitHub
a7a10913fc
feat(adjust): update wrapper for Adjust Cordova SDK v4.32.0 ( #4327 )
2022-10-09 16:39:33 +02:00
Clément Prod'homme and GitHub
406ad4ec45
docs(camera): adjust content type ( #4330 )
2022-10-09 16:37:32 +02:00
Clément Prod'homme and GitHub
c3a01431ce
docs(facebook): adjust content type ( #4331 )
2022-10-09 16:36:58 +02:00
Yevhen and GitHub
dc1ee8c530
feat(firebase-x): add MessagePayloadAps prop ( #4344 )
...
* feat(types): add aps for MessagePayload
* fix(types): fix firebase-x on ios
2022-10-09 16:35:48 +02:00
b6a44e3a8a
chore(deps): update dependency eslint to v8.25.0 ( #4360 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:33:26 +02:00
7761ed4a39
build(deps): bump async from 2.6.3 to 2.6.4 ( #4357 )
...
Bumps [async](https://github.com/caolan/async ) from 2.6.3 to 2.6.4.
- [Release notes](https://github.com/caolan/async/releases )
- [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md )
- [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4 )
---
updated-dependencies:
- dependency-name: async
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-09 16:33:19 +02:00
e799600b6e
build(deps): bump ansi-regex and ansi-regex ( #4356 )
...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex ) and [ansi-regex](https://github.com/chalk/ansi-regex ). These dependencies needed to be updated together.
Updates `ansi-regex` from 3.0.0 to 5.0.1
- [Release notes](https://github.com/chalk/ansi-regex/releases )
- [Commits](https://github.com/chalk/ansi-regex/compare/v3.0.0...v5.0.1 )
Updates `ansi-regex` from 4.1.0 to 5.0.1
- [Release notes](https://github.com/chalk/ansi-regex/releases )
- [Commits](https://github.com/chalk/ansi-regex/compare/v3.0.0...v5.0.1 )
---
updated-dependencies:
- dependency-name: ansi-regex
dependency-type: indirect
- dependency-name: ansi-regex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-09 16:32:56 +02:00
uzosocom and GitHub
b0780a8bec
feat(app-review): add plugin ( #4348 )
2022-10-09 16:32:47 +02:00
b6cc2d93f0
chore(deps): update actions/checkout action to v3.1.0 ( #4359 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:31:58 +02:00
7817643282
chore(deps): update dependency @types/node to v16.11.64 ( #4336 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:31:48 +02:00
infacto and GitHub
b572a10a6e
feat(diagnostic): extend parameter for requestLocationAuthorization ( #4350 )
2022-10-09 16:31:00 +02:00
uzosocom and GitHub
acb39e5849
feat(device): add sdkVersion ( #4354 )
2022-10-09 16:28:00 +02:00
74302846dc
feat(webim): add plugin ( #4355 )
...
Co-authored-by: Малько Сергей Сергеевич <malko@softclub.by >
2022-10-09 16:27:26 +02:00
a76463877c
chore(deps): update typescript-eslint monorepo to v5.39.0 ( #4337 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:25:51 +02:00
698692ed59
chore(deps): update dependency @types/lodash to v4.14.186 ( #4343 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:25:45 +02:00
dfd3d55dbc
chore(deps): update actions/setup-node action to v3.5.0 ( #4341 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 16:25:36 +02:00
f2d809f8b3
chore(deps): update typescript-eslint monorepo to v5.38.0 ( #4326 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-26 10:11:28 +02:00
22d6cd957b
chore(deps): update actions/stale action to v6 ( #4328 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-26 10:11:21 +02:00
2b061556dd
chore(deps): update dependency rollup to v2.79.1 ( #4329 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-26 10:11:12 +02:00
7baa002fb9
chore(deps): update dependency @types/node to v16.11.60 ( #4333 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-09-26 10:11:05 +02:00
2698011d4b
chore(deps): update dependency eslint to v8.24.0 ( #4334 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-26 10:10:48 +02:00
b8374ab3b1
chore(deps): update dependency @types/node to v16.11.59 ( #4305 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-14 11:37:56 +02:00
e85f6cf2b2
chore(deps): update dependency winston to v3.8.2 ( #4303 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-14 11:12:50 +02:00
f86764abe7
chore(deps): update dependency @types/lodash to v4.14.185 ( #4312 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-14 11:12:34 +02:00
dcb9b225ce
chore(deps): update dependency eslint to v8.23.1 ( #4313 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-14 11:12:15 +02:00
97739e86f1
chore(deps): update typescript-eslint monorepo to v5.37.0 ( #4316 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-14 11:12:05 +02:00
b3fade36c6
chore(deps): update typescript-eslint monorepo to v5.36.2 ( #4300 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-06 19:50:44 +02:00
Daniel Sogl
a6fcc16d12
5.45.0
2022-09-05 17:16:40 +00:00
Daniel Sogl
e420bd1d2a
docs: refresh readmes
2022-09-05 17:10:51 +00:00
Marius Backes and GitHub
8b826e3c1b
feat(in-app-purchase-2): update validator for custom headers ( #4262 )
2022-09-05 19:05:08 +02:00
Quentin Stoeckel and GitHub
1b45462542
doc: fix Secure Storage broken link ( #4265 )
...
It currently leads to a 404 page (https://ionicframework.com/docs/native/secure-storage/ ): a working anchor would lead to https://ionic.io/docs/secure-storage
2022-09-05 19:04:59 +02:00
Uglješa Erceg and GitHub
82377f0633
feat(adjust): update wrapper for Adjust Cordova SDK v4.30.0 ( #4277 )
2022-09-05 19:04:48 +02:00
aef160e418
feat(lets-cooee): add event observer and installation documentation ( #4278 )
...
* feat(Cooee): add Cooee plugin
* chore(Cooee): update document
* Update index.ts
* feat(lets-cooee): add event observable
* docs(lets-cooee): add lets-cooee documentation
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-09-05 19:04:37 +02:00
Lihang Xu and GitHub
a801c7d305
feat(dynamsoft-barcode): add setFocus and setZoom ( #4281 )
...
* add set zoom for Dynamsoft Barcode Scanner
* update Dynamsoft Barcode Scanner to add setFocus
* feat: add rotate scan option and rotation frame result to Dynamsoft Barcode Scanner
* add comments and rename the rotation result for Dynamsoft Barcode Scanner
2022-09-05 19:04:21 +02:00
Yevhen and GitHub
898e0b8588
feat(firebase-x): add message typing ( #4282 )
2022-09-05 19:04:10 +02:00
99161e2b73
chore(deps): update dependency @types/lodash to v4.14.184 ( #4283 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:03:52 +02:00
Srinidhi and GitHub
678fb71a7f
feat(unvired-cordova-sdk): Add new function to regenrate the JWT Token ( #4291 )
2022-09-05 19:03:26 +02:00
6e953e58ca
chore(deps): update dependency zone.js to v0.11.8 ( #4280 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:02:24 +02:00
29163b93d6
chore(deps): update dependency terser-webpack-plugin to v5.3.6 ( #4279 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:02:20 +02:00
ba83a81c75
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.6 ( #4272 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:02:15 +02:00
ac1d0aa0a1
chore(deps): update dependency rollup to v2.79.0 ( #4268 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:02:08 +02:00
5d7cf3940f
chore(deps): update typescript-eslint monorepo to v5.36.1 ( #4267 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:01:58 +02:00
725e88080b
chore(deps): update dependency webpack to v5.74.0 ( #4266 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:01:53 +02:00
38d59e3455
chore(deps): update dependency eslint to v8.23.0 ( #4259 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:01:48 +02:00
b5b8968ac4
chore(deps): update dependency @types/node to v16.11.57 ( #4258 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-05 19:01:42 +02:00
MaximBelov and GitHub
ebdd6e9796
feat(intercom): add displaySurvey ( #4292 )
2022-09-05 19:01:03 +02:00
jcesarmobile and GitHub
620385befc
docs: update template urls ( #4293 )
2022-09-05 19:00:42 +02:00
Neil Cresswell and GitHub
ba9c1c154e
feat(android-permissions): add android 13 permissions ( #4295 )
...
Added new POST_NOTIFICATIONS, READ_MEDIA_AUDIO, READ_MEDIA_IMAGES, and READ_MEDIA_VIDEO permissions. Adding missing Bluetooth permissions for advertise, connect, and scan.
The Bluetooth permissions are already present in the underlying Cordova plugin. The Android 13 permissions have been submitted to the underlying Cordova plugin as a pull request so may not be present there yet, but match the pull request and the actual underlying permission names found in Android 13.
2022-09-05 18:59:34 +02:00
dd081cc696
chore(deps): update dependency zone.js to v0.11.7 ( #4264 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-22 18:55:45 +02:00
135c6cc8b4
build(deps): bump terser from 5.9.0 to 5.14.2 ( #4263 )
...
Bumps [terser](https://github.com/terser/terser ) from 5.9.0 to 5.14.2.
- [Release notes](https://github.com/terser/terser/releases )
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md )
- [Commits](https://github.com/terser/terser/commits )
---
updated-dependencies:
- dependency-name: terser
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-20 18:02:49 +02:00
c7d39dde42
chore(deps): update typescript-eslint monorepo to v5.30.7 ( #4248 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-19 21:26:19 +02:00
eb27d87d92
chore(deps): update dependency rollup to v2.77.0 ( #4252 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-15 21:33:41 +02:00
878a6e94c2
chore(deps): update dependency @types/node to v16.11.44 ( #4249 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-14 20:45:53 +02:00
95fa8eb098
chore(deps): update dependency ts-node to v10.9.1 ( #4247 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-14 20:45:29 +02:00
b1f4639640
chore(deps): update actions/setup-node action to v3.4.1 ( #4257 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-14 20:45:11 +02:00
d6697b8a95
chore(deps): update actions/setup-node action to v3.4.0 ( #4253 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-11 21:25:48 +02:00
41e96d950f
chore(deps): update dependency eslint to v8.19.0 ( #4246 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-02 10:35:13 +02:00
56fc1d4663
chore(deps): update typescript-eslint monorepo to v5.30.3 ( #4245 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-01 19:25:22 +02:00
9e5953bc27
chore(deps): update typescript-eslint monorepo to v5.30.2 ( #4244 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-01 19:22:23 +02:00
346ea82652
chore(deps): update dependency winston to v3.8.1 ( #4243 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-01 13:44:23 +02:00
Daniel Sogl and GitHub
8671e18391
5.44.0
2022-06-30 09:09:52 +00:00
0a31a374b1
feat(zip): add plugin ( #4238 )
...
* added cordova-plugin-zip
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-06-30 11:05:34 +02:00
Ionel Andrei Muresan and GitHub
64d2c55880
docs(document-scanner): update example ( #4236 )
2022-06-30 11:05:04 +02:00
f96b7588de
feat(mobile-messaging): add chat methods ( #4231 )
...
Co-authored-by: Konstantin Latypov <Konstantin.Latypov@infobip.com >
2022-06-30 11:04:37 +02:00
7a528b42d9
feat(cooee): add plugin ( #4228 )
...
* feat(Cooee): add Cooee plugin
* chore(Cooee): update document
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-06-30 10:59:42 +02:00
Alex Ryltsov and GitHub
19fc222ea9
fix(diagnostic): adjust options declaration ( #4227 )
2022-06-30 10:58:43 +02:00
41a85e6587
chore(deps): update dependency winston to v3.8.0 ( #4240 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 10:57:53 +02:00
04422600ca
fix(urbanairship): fix cordova and method wrapper options ( #4221 )
...
Co-authored-by: Christian von Rohr <christian.vonrohr@well.ch >
2022-06-30 10:57:35 +02:00
Lihang Xu and GitHub
4e183b1881
feat(dynamsoft-barcode): update startScanning options ( #4205 )
...
* add barcodeBytesBase64 to the BarcodeResult
* update startScanning's param to ScanOptions
2022-06-30 10:56:29 +02:00
63c83653c0
feat(file-md5): add plugin ( #4201 )
...
* added cordova-plugin-file-md5
* Update index.ts
Co-authored-by: Daniel Sogl <daniel@sogls.de >
2022-06-30 10:55:34 +02:00
032f3a160a
chore(deps): update typescript-eslint monorepo to v5.30.0 ( #4235 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 10:54:01 +02:00
44967cc02c
chore(deps): update dependency eslint-plugin-jsdoc to v39.3.3 ( #4233 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 10:53:56 +02:00
123517eac6
chore(deps): update dependency eslint to v8.18.0 ( #4232 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 10:53:51 +02:00
d1c13567d7
chore(deps): update dependency prettier to v2.7.1 ( #4230 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-30 10:53:46 +02:00
49df2996c8
chore(deps): update dependency zone.js to v0.11.6 ( #4229 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-30 10:53:42 +02:00
d14d8c413e
chore(deps): update dependency @types/node to v16.11.42 ( #4220 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 10:53:38 +02:00
511300ea7b
chore(deps): update dependency lint-staged to v13.0.3 ( #4222 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-24 20:29:16 +02:00
a3d3d546af
chore(deps): update dependency rollup to v2.75.7 ( #4219 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-20 20:57:15 +02:00
cca5929a7d
chore(deps): update typescript-eslint monorepo to v5.28.0 ( #4207 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-14 19:03:08 +02:00
6e83ebdfb3
chore(deps): update dependency prettier to v2.7.0 ( #4225 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-14 19:02:53 +02:00
38528e1017
chore(deps): update actions/setup-node action to v3.3.0 ( #4218 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-06 16:20:14 +02:00
c801668d3f
chore(deps): update dependency eslint to v8.17.0 ( #4217 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-04 18:46:46 +02:00
bc1ff3da7d
chore(deps): update dependency ts-node to v10.8.1 ( #4216 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2022-06-03 20:54:30 +02:00