Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Vonage/vonage-node-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @vonage/server-sdk@3.14.1
Choose a base ref
...
head repository: Vonage/vonage-node-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @vonage/server-sdk@3.14.2
Choose a head ref
  • 15 commits
  • 30 files changed
  • 5 contributors

Commits on May 23, 2024

  1. build: fixed release action not being able to commit

    manchuck committed May 23, 2024
    Copy the full SHA
    6e6a13a View commit details
  2. docs: updated example markdown

    github-actions committed May 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8849284 View commit details
  3. docs: flattening output files for typedoc

    manchuck committed May 23, 2024
    Copy the full SHA
    5310f76 View commit details
  4. docs: updated example markdown

    github-actions committed May 23, 2024

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    da77deb View commit details

Commits on May 24, 2024

  1. docs: flattening output files for typedoc

    manchuck committed May 24, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    bf2aa90 View commit details

Commits on Jun 6, 2024

  1. chore: updated release log

    github-actions authored and manchuck committed Jun 6, 2024
    Copy the full SHA
    603a41b View commit details

Commits on Jun 11, 2024

  1. docs: correct incorrect redirect link on README (#936)

    froggy1014 authored Jun 11, 2024
    Copy the full SHA
    9737b15 View commit details
  2. fix(subaccounts): correct incorrect type on `BalanceTransferParameter…

    …s` (#937)
    froggy1014 authored Jun 11, 2024
    Copy the full SHA
    70f9c25 View commit details

Commits on Jun 17, 2024

  1. docs: updating status of verify v2

    manchuck committed Jun 17, 2024
    Copy the full SHA
    a14b999 View commit details
  2. test: adding test helper funcitons

    manchuck committed Jun 17, 2024
    Copy the full SHA
    159112c View commit details

Commits on Jun 18, 2024

  1. test: adding error testing and a nock clean

    manchuck committed Jun 18, 2024
    Copy the full SHA
    d65cef8 View commit details

Commits on Jun 19, 2024

  1. fix(video): Corrected video transition guide install instructions

    dragonmantank authored Jun 19, 2024
    Copy the full SHA
    68d3c3b View commit details
  2. fix(video): Updated list of supported video APIs in transition guide

    dragonmantank authored Jun 19, 2024
    Copy the full SHA
    f98252f View commit details

Commits on Jun 20, 2024

  1. fix(subaccounts): correct type on SubAccountCreateParameters (#940)

    froggy1014 authored Jun 20, 2024
    Copy the full SHA
    f7e7531 View commit details
  2. Publish

     - @Vonage/server-sdk@3.14.2
     - @vonage/subaccounts@1.8.1
     - @Vonage/verify@1.12.1
     - @vonage/verify2@1.11.1
     - @vonage/video@1.16.1
    manchuck committed Jun 20, 2024
    Copy the full SHA
    63bb429 View commit details
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
---
name: Vonage

on:
push:
branches: [ 3.x ]
branches:
- 3.x
pull_request:

jobs:
test:
runs-on: ${{ matrix.os }}
name: Test and build

strategy:
fail-fast: false
matrix:
51 changes: 41 additions & 10 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -6,15 +6,25 @@ on:
branches:
- 3.x

env:
GH_TOKEN: ${{ secrets.GH_TOKEN_COMMIT }}

jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
ref: '3.x'
fetch-depth: 0
token: ${{ secrets.GH_TOKEN_COMMIT }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x

@@ -24,20 +34,41 @@ jobs:
- name: Install typescript
run: npm install -g typescript

- name: Build Typescripts
- name: Build Typescript
run: npm run compile

- name: Build Typedoc
run: npm run typedoc

- name: Update markdown files
run: |
cd docs
../scripts/adjustMarkdown.sh
- name: Build example markdown
run: node scripts/generateExample.mjs

- name: Add TOC
run: (cd docs && npx markdown-index . > toc.md)
- name: Upload Documentation to Wiki
uses: SwiftDocOrg/github-wiki-publish-action@v1
- name: Final Adjustment to files
run: |
mv docs/packages.md docs/HOME.md
mv docs/EXAMPLES.md .
rm -rf docs/index.md docs/docs.json
- name: Sync Wiki to Docs
uses: newrelic/wiki-sync-action@main
with:
path: "docs"
env:
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_WIKI_PERSONAL_ACCESS_TOKEN }}
source: docs
destination: wiki
token: ${{ secrets.GH_TOKEN_COMMIT}}
gitAuthorName: github-actions
gitAuthorEmail: github-actions@github.com
branch: main

- name: Copy and commit example markdown
continue-on-error: true
run: |
git config --local user.name github-actions
git config --local user.email github-actions@github.com
git add EXAMPLES.md
git commit -m "docs: updated example markdown"
git push --force-with-lease
29 changes: 16 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -4,9 +4,9 @@ on:
release:
types:
- published
- created
- edited
- released

env:
GH_TOKEN: ${{ secrets.GH_TOKEN_COMMIT }}

jobs:
test-action:
@@ -16,21 +16,24 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: '3.x'
fetch-depth: 0
token: ${{ secrets.GH_TOKEN_COMMIT }}

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Update RELEASES.MD
uses: vonage/generate-release-log@1.0.0
uses: vonage/generate-release-log@1.0.2

- name: Debug
run: cat RELEASES.md

- name: Commit relase Log
uses: EndBug/add-and-commit@v9
with:
add: RELEASES.md
message: 'chore: updating release log'
- name: Commit release
run: |
git config --local user.name github-actions
git config --local user.email github-actions@github.com
git add RELEASES.md
git commit -m "chore: updated release log"
git push --force-with-lease
Loading