Skip to content

Commit 2a2c691

Browse files
Merge branch 'staging' into core
* staging: fix the release issue: NPM registry enforces a minimum of TLS 1.2 beginning October 4, 2021 (adobe#73) add a FAQ section (adobe#66) Update README.md add a new API in Core - resetIdentities (adobe#63) (adobe#64) EdgeIdentity (1.0.0-alpha.2) -> main (adobe#62)
2 parents 192c573 + 21960e1 commit 2a2c691

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
run: yarn bootstrap
2222
- name: Authenticate with Registry
2323
run: |
24-
echo "@adobe:registry=http://registry.npmjs.org/" > .npmrc
25-
echo "registry=http://registry.npmjs.org/" >> .npmrc
24+
echo "@adobe:registry=https://registry.npmjs.org/" > .npmrc
25+
echo "registry=https://registry.npmjs.org/" >> .npmrc
2626
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
2727
npm whoami
2828
env: # More info about the environment variables in the README

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ public class MainApplication extends Application implements ReactApplication {
138138

139139
See [development.md](./docs/development.md) for development docs.
140140

141+
## Frequently Asked Questions (FAQ)
142+
143+
141144
## Contributing
142145
See [CONTRIBUTING](CONTRIBUTING.md)
143146

packages/core/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ AEPCore.dispatchResponseEvent(responseEvent, requestEvent);
105105
AEPCore.collectPii({"myPii": "data"});
106106
```
107107

108+
##### Reset Identities:
109+
```javascript
110+
AEPCore.resetIdentities();
111+
```
112+
113+
108114
### [Identity](https://aep-sdks.gitbook.io/docs/using-mobile-extensions/mobile-core/identity)
109115

110116
##### Getting the extension version:

0 commit comments

Comments
 (0)