react-native-netmera 1.7.8 → 1.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: Bug report
3
+ about: Describe a bug that needs to be fixed
4
+
5
+ ---
6
+
7
+ **Describe the bug**
8
+ <!--- A clear and concise description of what the bug is. -->
9
+
10
+ **To Reproduce**
11
+ Steps to reproduce the behavior:
12
+
13
+ **Expected behavior**
14
+ <!--- A clear and concise description of what you expected to happen. -->
15
+
16
+ **Testing**
17
+ <!--- A clear and concise description of how to test the fix. -->
18
+
19
+ **Screenshots**
20
+ <!--- If applicable, add screenshots to help explain your problem. -->
21
+
22
+ **Additional context**
23
+ <!--- Add any other context about the problem here. -->
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Feature
3
+ about: Describe a feature for this project
4
+ ---
5
+
6
+ **Is your feature related to a problem? Please describe.**
7
+ <!--- A clear and concise description of what the problem is. -->
8
+ <!--- Ex. I'm always frustrated when [...] -->
9
+
10
+ **Testing**
11
+ <!--- A clear and concise description of how to test the fix. -->
12
+
13
+ **Additional context**
14
+ <!--- Add any other context or screenshots about the feature here. -->
15
+
16
+ **Acceptance criteria**
17
+ <!--- A list of the conditions that a software product must meet to be accepted by a user, a customer, or other system. -->
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: Release
3
+ about: Describe a mobile app release.
4
+ ---
5
+ **Type of release.**
6
+ <!--- Is this a Pre Release or a Prod release? -->
7
+
8
+ **New features**
9
+ <!-- Replace ADD_TIME_PERIOD_HERE with the scope of the release -->
10
+ <!-- Add new release features below. -->
11
+ We have completed the mobile dev worked the platform team had scoped out for the month of ADD_TIME_PERIOD_HERE and now it is time to deploy a new release.
12
+ Details for this build are as follows:
13
+
14
+ **Additional context**
15
+ <!--- Add any other context or screenshots about the feature here. -->
16
+
17
+ **Acceptance criteria**
18
+ <!--- A list of the conditions that a software product must meet to be accepted by a user, a customer, or other system. -->
19
+ Testers report no issues.
@@ -0,0 +1,28 @@
1
+ ## Related Issue
2
+ <!--- PRs should be related to open issues. -->
3
+ <!--- If suggesting a new feature or change, please discuss it in an issue first. -->
4
+ <!--- If fixing a bug, there should be an issue describing it with steps to reproduce it. -->
5
+
6
+ <!--- Link to the issue here: -->
7
+ ISSUE LINK: https://app.asana.com/0/1203144541549209/ISSUE_NUMBER
8
+
9
+ ## Description
10
+ <!--- Describe your changes in detail -->
11
+
12
+
13
+ ## Types of changes
14
+ <!--- What types of changes does your code introduce? Delete options that are not relevant: -->
15
+
16
+ - [ ] Bug fix (non-breaking change which fixes an issue)
17
+ - [ ] New feature (non-breaking change which adds functionality)
18
+ - [ ] Breaking change (fix or feature that would cause existing functionality to change)
19
+
20
+ ## How Has This Been Tested?
21
+ <!--- Describe in detail how you tested your changes. -->
22
+ <!--- Include details of your testing environment, and the tests you ran to -->
23
+ <!--- see how your change affects other areas of the code, etc. -->
24
+
25
+ ## Screenshots or Sample Output
26
+ ~~~
27
+ PASTE_OUTPUT_HERE
28
+ ~~~
package/RNNetmera.podspec CHANGED
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
18
18
  s.requires_arc = true
19
19
 
20
20
  s.dependency 'React'
21
- s.dependency 'Netmera','3.23.11-WithoutDependency'
21
+ s.dependency 'Netmera','3.23.13-WithoutDependency'
22
22
  end
23
23
 
@@ -23,7 +23,7 @@ public class RNNetmera {
23
23
  static void setNetmeraHeaders() {
24
24
  ContentValues headerValues = new ContentValues();
25
25
  headerValues.put("X-netmera-framework", "react");
26
- headerValues.put("X-netmera-frameworkV", "1.7.8");
26
+ headerValues.put("X-netmera-frameworkV", "1.7.9");
27
27
  Netmera.setNetmeraHeaders(headerValues);
28
28
  }
29
29
 
package/ios/RNNetmera.m CHANGED
@@ -55,7 +55,7 @@ NSString *const ERROR_MESSAGE_UPDATE_USER = @"Error occurred while updating user
55
55
 
56
56
  + (void)setNetmeraHeaders {
57
57
  [Netmera setFramework:@"react"];
58
- [Netmera setFrameworkVersion:@"1.7.8"];
58
+ [Netmera setFrameworkVersion:@"1.7.9"];
59
59
  }
60
60
 
61
61
  + (void)setPushDelegate:(NSObject<NetmeraPushDelegate> *)delegate {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-netmera",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "description": "Netmera React Native SDK",
5
5
  "main": "index.ts",
6
6
  "author": "netmera",
@@ -1,53 +0,0 @@
1
- name: Sync Commits to Client Repo
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- jobs:
9
- sync_to_repo_a:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - name: Checkout repository
14
- uses: actions/checkout@v2
15
- with:
16
- fetch-depth: 0 # fetch the entire history
17
-
18
- - name: Configure Git
19
- run: |
20
- git config --global user.email "engineering@initialcode.com.tr"
21
- git config --global user.name "Initial Code"
22
-
23
- - name: Add Repo A as remote
24
- run: |
25
- eval `ssh-agent -s`
26
- ssh-add - <<< '${{ secrets.SSH_PRIVATE_KEY }}'
27
- git remote add repo-a "git@github.com:Netmera/netmera-sdk-react-native.git"
28
- git fetch repo-a
29
-
30
- - name: Pull latest changes from Repo A
31
- run: |
32
- eval `ssh-agent -s`
33
- ssh-add - <<< '${{ secrets.SSH_PRIVATE_KEY }}'
34
- git pull repo-a master --rebase || git rebase --abort
35
-
36
- - name: Remove .github folder
37
- run: |
38
- rm -rf .github
39
- git add -A
40
- git commit -m "Remove .github folder before pushing" || true
41
-
42
- - name: Resolve conflicts if any and continue rebase
43
- if: failure()
44
- run: |
45
- eval `ssh-agent -s`
46
- ssh-add - <<< '${{ secrets.SSH_PRIVATE_KEY }}'
47
- git rebase --continue || git rebase --skip || true
48
-
49
- - name: Push to Repo A
50
- run: |
51
- eval `ssh-agent -s`
52
- ssh-add - <<< '${{ secrets.SSH_PRIVATE_KEY }}'
53
- git push repo-a master:master --force