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: aperturerobotics/protobuf-es-lite
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.6
Choose a base ref
...
head repository: aperturerobotics/protobuf-es-lite
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.7
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 20, 2024

  1. .github: test on node v22

    Signed-off-by: Christian Stewart <christian@aperture.us>
    paralin committed Aug 20, 2024
    Copy the full SHA
    03a774e View commit details
  2. chore(deps): update all dependencies (#1)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 20, 2024
    Copy the full SHA
    8533bc0 View commit details
  3. release: v0.4.7

    Signed-off-by: Christian Stewart <christian@aperture.us>
    paralin committed Aug 20, 2024
    Copy the full SHA
    ed7960e View commit details
Showing with 432 additions and 470 deletions.
  1. +5 −5 .github/workflows/codeql-analysis.yml
  2. +2 −2 .github/workflows/dependency-review.yml
  3. +6 −3 .github/workflows/tests.yml
  4. +5 −5 package.json
  5. +414 −455 yarn.lock
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -28,21 +28,21 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'

- name: Initialize CodeQL
uses: github/codeql-action/init@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
uses: github/codeql-action/autobuild@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
uses: github/codeql-action/analyze@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 'Dependency Review'
uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -14,14 +14,17 @@ permissions:
jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node: [21.x]
node: [22.x]

timeout-minutes: 10

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aptre/protobuf-es-lite",
"description": "Lightweight Protobuf codegen for TypeScript and JavaScript.",
"version": "0.4.6",
"version": "0.4.7",
"license": "Apache-2.0",
"repository": {
"url": "git+ssh://git@github.com/aperturerobotics/protobuf-es-lite.git"
@@ -74,17 +74,17 @@
},
"devDependencies": {
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"lint-staged": ">=15.2.5",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rimraf": "^6.0.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
"vitest": "^2.0.0"
},
"lint-staged": {
"package.json": "prettier --write",
869 changes: 414 additions & 455 deletions yarn.lock

Large diffs are not rendered by default.