Skip to content

Commit 212f5a5

Browse files
Merge branch 'master' into fix/dx-672
2 parents 39b22ac + 631338a commit 212f5a5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+39
-11078
lines changed

.github/workflows/jira.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
types: [opened]
55
jobs:
6-
security:
6+
security-jira:
77
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
88
runs-on: ubuntu-latest
99
steps:
@@ -26,3 +26,8 @@ jobs:
2626
PR: ${{ github.event.pull_request.html_url }}
2727
2828
fields: "${{ secrets.JIRA_FIELDS }}"
29+
- name: Transition issue
30+
uses: atlassian/gajira-transition@v3
31+
with:
32+
issue: ${{ steps.create.outputs.issue }}
33+
transition: ${{ secrets.JIRA_TRANSITION }}

.github/workflows/publish-snapshot.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/workflows/sast-scan.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: SAST Scan
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
jobs:
6+
security-sast:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Semgrep Scan
11+
run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}:/src" returntocorp/semgrep semgrep scan --config auto

.github/workflows/sca-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
types: [opened, synchronize, reopened]
55
jobs:
6-
security:
6+
security-sca:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
@@ -19,6 +19,6 @@ jobs:
1919
assetUid="${{ secrets.ASSET_UID }}"
2020
EOF
2121
- uses: snyk/actions/setup@master
22-
- run: snyk test
22+
- run: snyk test --fail-on=all
2323
env:
2424
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ build/
2626

2727
# Local configuration file (sdk path, etc)
2828
local.properties
29-
gradle.properties
30-
/gradle.properties
29+
# gradle.properties
30+
# /gradle.properties
3131

3232

3333
# Proguard folder generated by Eclipse

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# CHANGELOG
22

3+
## Version 3.15.0
4+
5+
### Date: 20-May-2024
6+
7+
- Fixes and enhancements
8+
9+
---
10+
311
## Version 3.14.0
412

513
### Date: 13-May-2024
614

7-
- support of new sync api
8-
- initSeqSync in stack class
9-
- seqSync in stack class
1015
- GCP support implementation
1116

1217
---

contentstack/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android.buildFeatures.buildConfig true
1010
mavenPublishing {
1111
publishToMavenCentral(SonatypeHost.DEFAULT)
1212
signAllPublications()
13-
coordinates("com.contentstack.sdk", "android", "3.14.0")
13+
coordinates("com.contentstack.sdk", "android", "3.15.0")
1414

1515
pom {
1616
name = "contentstack-android"
@@ -146,6 +146,9 @@ dependencies {
146146
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
147147
exclude group: 'com.android.support', module: 'support-annotations'
148148
})
149+
150+
// implementation 'com.squareup.okio:okio:3.9.0'
151+
implementation 'com.github.rjeschke:txtmark:0.12'
149152
}
150153
tasks.register('clearJar', Delete) { delete 'build/libs/contentstack.jar' }
151154
tasks.register('unzip', Copy) {
@@ -160,4 +163,4 @@ tasks.register('createJar', Jar) {
160163
include 'com/contentstack/'
161164
//include 'META-INF/'
162165
}
163-
createJar.dependsOn(clearJar, unzip, build)
166+
createJar.dependsOn(clearJar, unzip, build)

0 commit comments

Comments
 (0)