Skip to content

Commit

Permalink
Merge pull request #15 from contentstack/development
Browse files Browse the repository at this point in the history
DX | 21-08-2024 | Release
  • Loading branch information
cs-raj authored Aug 16, 2024
2 parents fb7cd1d + 5541780 commit 1d278fe
Show file tree
Hide file tree
Showing 6 changed files with 147 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
types: [opened]
jobs:
security:
security-jira:
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-')}}
runs-on: ubuntu-latest
steps:
Expand All @@ -26,3 +26,8 @@ jobs:
PR: ${{ github.event.pull_request.html_url }}
fields: "${{ secrets.JIRA_FIELDS }}"
- name: Transition issue
uses: atlassian/gajira-transition@v3
with:
issue: ${{ steps.create.outputs.issue }}
transition: ${{ secrets.JIRA_TRANSITION }}
11 changes: 11 additions & 0 deletions .github/workflows/sast-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: SAST Scan
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
security-sast:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Semgrep Scan
run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}:/src" returntocorp/semgrep semgrep scan --config auto
2 changes: 1 addition & 1 deletion .github/workflows/sca-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
security:
security-sca:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand Down
129 changes: 125 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Contentstack Ecosystem <ecosystem@contentstack.com>",
"name": "datasync-mongodb-sdk",
"version": "1.0.4",
"version": "1.0.5",
"description": "Mongodb query wrapper around contents synced via @contentstack/content-store-mongodb",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -29,6 +29,7 @@
"debug": "^4.3.4",
"jest": "^29.0.3",
"jsdoc": "^4.0.0",
"node-notifier": "^10.0.1",
"rimraf": "^2.6.3",
"ts-jest": "^29.0.2",
"tslint": "^5.18.0",
Expand Down
3 changes: 2 additions & 1 deletion src/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import {
merge,
mergeWith,
remove,
} from 'lodash'
import {
Expand Down Expand Up @@ -2125,7 +2126,7 @@ export class Stack {

schemas.forEach((schema) => {
// Entry references
entryReferences = merge(entryReferences, schema[this.types.references])
entryReferences = mergeWith(entryReferences, schema[this.types.references])
// tslint:disable-next-line: forin
for (const path in schema[this.types.assets]) {
paths.push(path)
Expand Down

0 comments on commit 1d278fe

Please sign in to comment.