Skip to content

Commit

Permalink
Merge branch 'main' into fix/relative-path-pattern-in-workspace-defin…
Browse files Browse the repository at this point in the history
…ition
  • Loading branch information
lukasholzer authored Jul 11, 2024
2 parents 7e4c617 + 3a237a7 commit 343174e
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: ['*']
# Must include the minimum deno version from the `DENO_VERSION_RANGE` constant in `node/bridge.ts`.
deno-version: ['v1.37.0', 'v1.x']
deno-version: ['v1.37.0', 'v1.44.4']
include:
- os: ubuntu-latest
node-version: '14.16.0'
deno-version: 'v1.x'
deno-version: 'v1.44.4'
fail-fast: false
steps:
# Increasing the maximum number of open files. See:
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: v1.44.4
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packages/build-info": "7.14.0",
"packages/build": "29.50.5",
"packages/edge-bundler": "12.2.0",
"packages/build": "29.50.6",
"packages/edge-bundler": "12.2.1",
"packages/cache-utils": "5.1.5",
"packages/config": "20.16.0",
"packages/framework-info": "9.8.13",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@
* dependencies
* @netlify/config bumped from ^20.8.0 to ^20.8.1

## [29.50.6](https://github.com/netlify/build/compare/build-v29.50.5...build-v29.50.6) (2024-07-11)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @netlify/edge-bundler bumped from 12.2.0 to 12.2.1

## [29.50.5](https://github.com/netlify/build/compare/build-v29.50.4...build-v29.50.5) (2024-07-04)


Expand Down
4 changes: 2 additions & 2 deletions packages/build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netlify/build",
"version": "29.50.5",
"version": "29.50.6",
"description": "Netlify build module",
"type": "module",
"exports": "./lib/index.js",
Expand Down Expand Up @@ -71,7 +71,7 @@
"@netlify/blobs": "^7.4.0",
"@netlify/cache-utils": "^5.1.5",
"@netlify/config": "^20.16.0",
"@netlify/edge-bundler": "12.2.0",
"@netlify/edge-bundler": "12.2.1",
"@netlify/framework-info": "^9.8.13",
"@netlify/functions-utils": "^5.2.73",
"@netlify/git-utils": "^5.1.1",
Expand Down
7 changes: 7 additions & 0 deletions packages/edge-bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [12.2.1](https://github.com/netlify/build/compare/edge-bundler-v12.2.0...edge-bundler-v12.2.1) (2024-07-11)


### Bug Fixes

* pin version of Deno CLI ([#5762](https://github.com/netlify/build/issues/5762)) ([379a44d](https://github.com/netlify/build/commit/379a44d70aaca1ebd887e8ce5e705fa794a4564f))

## [12.2.0](https://github.com/netlify/build/compare/edge-bundler-v12.1.1...edge-bundler-v12.2.0) (2024-07-04)


Expand Down
5 changes: 4 additions & 1 deletion packages/edge-bundler/node/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ import { getLogger, Logger } from './logger.js'
import { getBinaryExtension } from './platform.js'

const DENO_VERSION_FILE = 'version.txt'

// When updating DENO_VERSION_RANGE, ensure that the deno version installed in the
// build-image/buildbot does satisfy this range!
const DENO_VERSION_RANGE = '^1.37.0'
// We're pinning the range because of an issue with v1.45.0 of the Deno CLI:
// https://linear.app/netlify/issue/FRP-775/deno-cli-v1450-causing-issues
const DENO_VERSION_RANGE = '1.37.0 - 1.44.4'

type OnBeforeDownloadHook = () => void | Promise<void>
type OnAfterDownloadHook = (error?: Error) => void | Promise<void>
Expand Down
2 changes: 1 addition & 1 deletion packages/edge-bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@netlify/edge-bundler",
"version": "12.2.0",
"version": "12.2.1",
"description": "Intelligently prepare Netlify Edge Functions for deployment",
"type": "module",
"main": "./dist/node/index.js",
Expand Down

0 comments on commit 343174e

Please sign in to comment.