-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: change in way to update config in ios #15
Conversation
Pull request title looks good 👍! If this pull request gets merged, it will cause a new release of the software. Example: If this project's latest release version is All merged pull requests will eventually get deployed. But some types of pull requests will trigger a deployment (such as features and bug fixes) while some pull requests will wait to get deployed until a later time. To merge this pull request, add the label This project uses a special format for pull requests titles. Expand this section to learn more (expand by clicking the ᐅ symbol on the left side of this sentence)...This project uses a special format for pull requests titles. Don't worry, it's easy! This pull request title should be in this format:
If your pull request introduces breaking changes to the code, use this format:
where
Examples:
Need more examples? Want to learn more about this format? Check out the official docs. Note: If your pull request does multiple things such as adding a feature and makes changes to the CI server and fixes some bugs then you might want to consider splitting this pull request up into multiple smaller pull requests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The next deployment of the iOS SDK adds a config handler in the SDK initializer. So, maybe you can use that in the future?
This is exactly I am doing in this PR but in a different way. Once the iOS deployment is done, I would prefer changing this on the react native end as well. |
🎉 This PR is included in version 1.0.0-alpha.3 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
## 1.0.0-beta.1 (2022-09-15) ### Features * android updates in package ([#13](#13)) ([b708fce](b708fce)) * android: package updates ([e87c6eb](e87c6eb)) * android: setup config with initialization ([e915343](e915343)) * creating customerio react native package ([#1](#1)) ([2d2bdae](2d2bdae)) * device attributes and other configurable properties ([#4](#4)) ([bd79d96](bd79d96)) * identify and clear user identity ([#2](#2)) ([4430b66](4430b66)) * in-app functionality in react native package ([488c0c0](488c0c0)) * update package version ([8526a69](8526a69)) * updated to android sdk 3.0.0-alpha.2 ([91978d7](91978d7)) * updating ios sdk version in podspec ([1b1c26f](1b1c26f)) * user-agent updates in package ([efff4fc](efff4fc)) ### Bug Fixes * change in way to update config in ios ([#15](#15)) ([8680b28](8680b28)) * initialized sdk from storage using context ([e3e609a](e3e609a)) * push notifications integration ([#10](#10)) ([5d7752d](5d7752d)) ### Reverts * update package version ([e02e6e5](e02e6e5))
🎉 This PR is included in version 1.0.0-beta.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
## 1.0.0 (2022-10-24) ### Features * android updates in package ([#13](#13)) ([b708fce](b708fce)) * android: package updates ([e87c6eb](e87c6eb)) * android: setup config with initialization ([e915343](e915343)) * creating customerio react native package ([#1](#1)) ([2d2bdae](2d2bdae)) * device attributes and other configurable properties ([#4](#4)) ([bd79d96](bd79d96)) * identify and clear user identity ([#2](#2)) ([4430b66](4430b66)) * in-app functionality in react native package ([488c0c0](488c0c0)) * update package version ([8526a69](8526a69)) * updated to android sdk 3.0.0-alpha.2 ([91978d7](91978d7)) * updating ios sdk version in podspec ([1b1c26f](1b1c26f)) * user-agent updates in package ([efff4fc](efff4fc)) ### Bug Fixes * added support for android sdk 3.1.0 ([44a1b91](44a1b91)) * change in way to update config in ios ([#15](#15)) ([8680b28](8680b28)) * initialized sdk from storage using context ([e3e609a](e3e609a)) * push notifications integration ([#10](#10)) ([5d7752d](5d7752d)) * updating gist dependency version ([9f8ac3f](9f8ac3f)) ### Reverts * update package version ([e02e6e5](e02e6e5))
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
closes https://github.com/customerio/issues/issues/7791
Android SDK allows setting up config only during initialisation, but iOS SDK allows config setup later on too. To maintain consistency on both the platforms, react native package now allows setting up config on initialisation which is same for both the platforms.