Skip to content

Commit 7c68345

Browse files
authored
Merge pull request #6406 from Shopify/jc.bump-javy-versions
Bump Javy, Javy plugin, and function-runner versions
2 parents 8edc575 + 799820f commit 7c68345

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.changeset/tiny-hounds-knock.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/app': minor
3+
---
4+
5+
Update Javy, Javy plugin, and function-runner

packages/app/src/cli/services/function/binaries.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ describe('javy', () => {
166166

167167
describe('javy-plugin', () => {
168168
test('properties are set correctly', () => {
169-
expect(javyPlugin.name).toBe('shopify_functions_javy_v2')
169+
expect(javyPlugin.name).toBe('shopify_functions_javy_v3')
170170
expect(javyPlugin.version).match(/^v\d+$/)
171-
expect(javyPlugin.path).toMatch(/(\/|\\)shopify_functions_javy_v2.wasm$/)
171+
expect(javyPlugin.path).toMatch(/(\/|\\)shopify_functions_javy_v3.wasm$/)
172172
})
173173

174174
test('downloadUrl returns the correct URL', () => {

packages/app/src/cli/services/function/binaries.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ import fs from 'node:fs'
1010
import * as gzip from 'node:zlib'
1111
import {fileURLToPath} from 'node:url'
1212

13-
export const PREFERRED_FUNCTION_RUNNER_VERSION = 'v9.0.0'
13+
export const PREFERRED_FUNCTION_RUNNER_VERSION = 'v9.1.0'
1414

1515
// Javy dependencies.
16-
export const PREFERRED_JAVY_VERSION = 'v5.0.3'
16+
export const PREFERRED_JAVY_VERSION = 'v6.0.0'
1717
// The Javy plugin version should match the plugin version used in the
1818
// function-runner version specified above.
19-
export const PREFERRED_JAVY_PLUGIN_VERSION = 'v2'
19+
export const PREFERRED_JAVY_PLUGIN_VERSION = 'v3'
2020

2121
const BINARYEN_VERSION = '123.0.0'
2222

0 commit comments

Comments
 (0)