Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
if: ${{ matrix.lang == 'jvm' }}
run: sbt test
- name: Run Native Image Test Suites
if: ${{ (matrix.lang == 'jvm') && (matrix.java == '21') }}
if: ${{ (matrix.lang == 'jvm') && (matrix.java == '25') }}
run: sjsonnet/test/graalvm/run_test_suites.py
4 changes: 2 additions & 2 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
java-version: 21
java-version: 25
distribution: 'zulu'
- name: Set up environment variables
run: |
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: actions/checkout@v6
- name: Set up environment variables
run: |
echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV
echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
mkdir -p release
- uses: actions/download-artifact@v7
name: Download Artifacts
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
## 0.5.5 (Latest)
## 0.6.0 (Latest)
* From now on the Changelog is what's in the GitHub Releases page: https://github.com/databricks/sjsonnet/releases

## 0.5.10
* Add flag re-introduce broken assertions evaluation logic, to help with migrations
* 0.5.7 to 0.5.9 were broken releases with missing logic for the flag above

## 0.5.6
* Re-enable handling of unicode strings in std.base64 by @stephenamar-db in https://github.com/databricks/sjsonnet/pull/493

## 0.5.5
* Fix multiple assertion related bugs (inheritance, binding of super in inherited assertions, and timing of evaluation) by @JoshRosen in https://github.com/databricks/sjsonnet/pull/468
* Fix detection of duplicate fields with dynamic field name expressions by @JoshRosen in https://github.com/databricks/sjsonnet/pull/470
* chore: Make std.setInter accepts str. by @He-Pin in https://github.com/databricks/sjsonnet/pull/472
Expand Down
2 changes: 1 addition & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ trait SjsonnetCrossModule extends CrossScalaModule with ScalafmtModule {
def manifest = super
.manifest()
.add(
"Enable-Native-Access" -> "net.jpountz.util.Native"
"Enable-Native-Access" -> "ALL-UNNAMED"
)

def generatedSources = Task {
Expand Down
2 changes: 1 addition & 1 deletion sjsonnet/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-SNAPSHOT
0.6.0