Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit 3f3dff3

Browse files
chore: Release v0.15.0 (#651)
1 parent 71f5e4a commit 3f3dff3

40 files changed

+1379
-2163
lines changed

.github/workflows/codeql.yml

Lines changed: 46 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ name: "CodeQL Advanced"
1313

1414
on:
1515
push:
16-
branches: [ "main" ]
16+
branches: ["main"]
1717
pull_request:
18-
branches: [ "main" ]
18+
branches: ["main"]
1919
schedule:
20-
- cron: '41 3 * * 3'
20+
- cron: "41 3 * * 3"
2121

2222
jobs:
2323
analyze:
@@ -44,10 +44,10 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
include:
47-
- language: go
48-
build-mode: autobuild
49-
- language: javascript-typescript
50-
build-mode: none
47+
- language: go
48+
build-mode: autobuild
49+
- language: javascript-typescript
50+
build-mode: none
5151
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
5252
# Use `c-cpp` to analyze code written in C, C++ or both
5353
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
@@ -57,39 +57,46 @@ jobs:
5757
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
5858
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5959
steps:
60-
- name: Checkout repository
61-
uses: actions/checkout@v4
60+
- name: Checkout repository
61+
uses: actions/checkout@v4
6262

63-
# Initializes the CodeQL tools for scanning.
64-
- name: Initialize CodeQL
65-
uses: github/codeql-action/init@v3
66-
with:
67-
languages: ${{ matrix.language }}
68-
build-mode: ${{ matrix.build-mode }}
69-
# If you wish to specify custom queries, you can do so here or in a config file.
70-
# By default, queries listed here will override any specified in a config file.
71-
# Prefix the list here with "+" to use these queries and those in the config file.
63+
- name: Setup Go
64+
if: matrix.language == 'go'
65+
uses: actions/setup-go@v5
66+
with:
67+
go-version-file: runtime/go.mod
68+
cache-dependency-path: runtime/go.sum
7269

73-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
74-
# queries: security-extended,security-and-quality
70+
# Initializes the CodeQL tools for scanning.
71+
- name: Initialize CodeQL
72+
uses: github/codeql-action/init@v3
73+
with:
74+
languages: ${{ matrix.language }}
75+
build-mode: ${{ matrix.build-mode }}
76+
# If you wish to specify custom queries, you can do so here or in a config file.
77+
# By default, queries listed here will override any specified in a config file.
78+
# Prefix the list here with "+" to use these queries and those in the config file.
7579

76-
# If the analyze step fails for one of the languages you are analyzing with
77-
# "We were unable to automatically build your code", modify the matrix above
78-
# to set the build mode to "manual" for that language. Then modify this step
79-
# to build your code.
80-
# ℹ️ Command-line programs to run using the OS shell.
81-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
82-
- if: matrix.build-mode == 'manual'
83-
shell: bash
84-
run: |
85-
echo 'If you are using a "manual" build mode for one or more of the' \
86-
'languages you are analyzing, replace this with the commands to build' \
87-
'your code, for example:'
88-
echo ' make bootstrap'
89-
echo ' make release'
90-
exit 1
80+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
81+
# queries: security-extended,security-and-quality
9182

92-
- name: Perform CodeQL Analysis
93-
uses: github/codeql-action/analyze@v3
94-
with:
95-
category: "/language:${{matrix.language}}"
83+
# If the analyze step fails for one of the languages you are analyzing with
84+
# "We were unable to automatically build your code", modify the matrix above
85+
# to set the build mode to "manual" for that language. Then modify this step
86+
# to build your code.
87+
# ℹ️ Command-line programs to run using the OS shell.
88+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
89+
- if: matrix.build-mode == 'manual'
90+
shell: bash
91+
run: |
92+
echo 'If you are using a "manual" build mode for one or more of the' \
93+
'languages you are analyzing, replace this with the commands to build' \
94+
'your code, for example:'
95+
echo ' make bootstrap'
96+
echo ' make release'
97+
exit 1
98+
99+
- name: Perform CodeQL Analysis
100+
uses: github/codeql-action/analyze@v3
101+
with:
102+
category: "/language:${{matrix.language}}"

.github/workflows/release-runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: goreleaser/goreleaser-action@v6
3939
with:
4040
distribution: goreleaser-pro
41-
version: 2.3.2
41+
version: "~> v2"
4242
args: release --clean -f ./runtime/.goreleaser.yaml
4343
env:
4444
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
# Change Log
22

3-
## UNRELEASED - Runtime
3+
## 2024-12-13 - Runtime 0.15.0
44

55
- fix: doc comments from object fields should be present in generated GraphQL schema [#630](https://github.com/hypermodeinc/modus/pull/630)
66
- feat: add neo4j support in modus [#636](https://github.com/hypermodeinc/modus/pull/636)
77
- perf: improve locking code [#637](https://github.com/hypermodeinc/modus/pull/637)
88
- fix: make jwk conversion warn to remove sentry overflow [#641](https://github.com/hypermodeinc/modus/pull/641)
99
- chore: update dockerfile [#642](https://github.com/hypermodeinc/modus/pull/642)
1010

11-
## UNRELEASED - Go SDK
11+
## 2024-12-13 - Go SDK 0.15.0
1212

1313
- fix: vector package should return generic type in computations [#628](https://github.com/hypermodeinc/modus/pull/628)
1414
- chore: Remove unused go package reference [#632](https://github.com/hypermodeinc/modus/pull/632)
1515
- feat: add neo4j support in modus [#636](https://github.com/hypermodeinc/modus/pull/636)
1616
- fix: support point types [#650](https://github.com/hypermodeinc/modus/pull/650)
1717

18-
19-
## UNRELEASED - AssemblyScript SDK
18+
## 2024-12-13 - AssemblyScript SDK 0.15.0
2019

2120
- fix: vector package should return generic type in computations [#628](https://github.com/hypermodeinc/modus/pull/628)
2221
- chore: Delete extraneous copy of Anthropic model interface [#631](https://github.com/hypermodeinc/modus/pull/631)

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.23.2
1+
go 1.23.4
22

33
use (
44
./lib/manifest

runtime/go.mod

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/hypermodeinc/modus/runtime
22

3-
go 1.23.0
3+
go 1.23.4
44

55
require (
6-
github.com/hypermodeinc/modus/lib/manifest v0.13.0
7-
github.com/hypermodeinc/modus/lib/metadata v0.14.0
6+
github.com/hypermodeinc/modus/lib/manifest v0.15.0
7+
github.com/hypermodeinc/modus/lib/metadata v0.15.0
88
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0 // indirect
99
)
1010

@@ -23,7 +23,7 @@ require (
2323
github.com/fatih/color v1.18.0
2424
github.com/getsentry/sentry-go v0.30.0
2525
github.com/go-viper/mapstructure/v2 v2.2.1
26-
github.com/goccy/go-json v0.10.3
26+
github.com/goccy/go-json v0.10.4
2727
github.com/gofrs/flock v0.12.1
2828
github.com/golang-jwt/jwt/v5 v5.2.1
2929
github.com/google/renameio v1.0.1
@@ -46,9 +46,9 @@ require (
4646
github.com/tidwall/sjson v1.2.5
4747
github.com/viterin/vek v0.4.2
4848
github.com/wundergraph/graphql-go-tools/execution v1.1.0
49-
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.134
50-
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
51-
google.golang.org/grpc v1.68.1
49+
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.135
50+
golang.org/x/exp v0.0.0-20241210194714-1829a127f884
51+
google.golang.org/grpc v1.69.0
5252
)
5353

5454
require (
@@ -84,7 +84,7 @@ require (
8484
github.com/gobwas/pool v0.2.1 // indirect
8585
github.com/gobwas/ws v1.4.0 // indirect
8686
github.com/gogo/protobuf v1.3.2 // indirect
87-
github.com/google/pprof v0.0.0-20241122213907-cbe949e5a41b // indirect
87+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
8888
github.com/hashicorp/golang-lru v1.0.2 // indirect
8989
github.com/jackc/pgpassfile v1.0.0 // indirect
9090
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
@@ -118,22 +118,23 @@ require (
118118
github.com/tidwall/pretty v1.2.1 // indirect
119119
github.com/viterin/partial v1.1.0 // indirect
120120
github.com/wundergraph/astjson v0.0.0-20241210135722-15ca0ac078f8 // indirect
121-
github.com/wundergraph/cosmo/composition-go v0.0.0-20241122111447-43fee4d6f40d // indirect
122-
github.com/wundergraph/cosmo/router v0.0.0-20241122111447-43fee4d6f40d // indirect
123-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
124-
go.opentelemetry.io/otel v1.32.0 // indirect
125-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
126-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
121+
github.com/wundergraph/cosmo/composition-go v0.0.0-20241212134135-c31c563d3cd8 // indirect
122+
github.com/wundergraph/cosmo/router v0.0.0-20241212134135-c31c563d3cd8 // indirect
123+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
124+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
125+
go.opentelemetry.io/otel v1.33.0 // indirect
126+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
127+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
127128
go.uber.org/atomic v1.11.0 // indirect
128129
go.uber.org/multierr v1.11.0 // indirect
129130
go.uber.org/zap v1.27.0 // indirect
130-
golang.org/x/crypto v0.30.0 // indirect
131+
golang.org/x/crypto v0.31.0 // indirect
131132
golang.org/x/net v0.32.0 // indirect
132133
golang.org/x/sync v0.10.0 // indirect
133134
golang.org/x/sys v0.28.0 // indirect
134135
golang.org/x/text v0.21.0 // indirect
135-
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
136-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
136+
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
137+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
137138
google.golang.org/protobuf v1.35.2 // indirect
138139
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
139140
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)