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
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
# Sets an output parameter if this is a release PR
- name: Check for release
id: release-check
run: echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
# For windows we have to use $env:
run: |-
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
if: "${{ startsWith(github.head_ref, 'release-') }}"
- name: Git checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -61,7 +64,10 @@ jobs:
# Sets an output parameter if this is a release PR
- name: Check for release
id: release-check
run: echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
# For windows we have to use $env:
run: |-
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
if: "${{ startsWith(github.head_ref, 'release-') }}"
# This improves Windows network performance, we need this since we open many ports in our tests
- name: Increase Windows port limit and reduce time wait delay
Expand All @@ -84,6 +90,7 @@ jobs:
if: '${{!steps.release-check.outputs.IS_RELEASE}}'
- name: Setup Deno
uses: denoland/setup-deno@v1
if: '${{!steps.release-check.outputs.IS_RELEASE}}'
with:
deno-version: v1.x
- name: Install core dependencies
Expand Down Expand Up @@ -124,11 +131,14 @@ jobs:
if: '${{ !steps.release-check.outputs.IS_RELEASE }}'
- name: Get test coverage flags
id: test-coverage-flags
# For windows we have to use $env:
run: |-
os=${{ matrix.os }}
node=$(node --version)
echo "os=${os/-latest/}" >> $GITHUB_OUTPUT
echo "os=${os/-latest/}" >> $env:GITHUB_OUTPUT
echo "node=node_${node/.*.*/}" >> $GITHUB_OUTPUT
echo "node=node_${node/.*.*/}" >> $env:GITHUB_OUTPUT
shell: bash
if: '${{ !steps.release-check.outputs.IS_RELEASE }}'
- uses: codecov/codecov-action@v3
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [12.1.0](https://github.com/netlify/cli/compare/v12.0.11...v12.1.0) (2022-11-04)


### Features

* support in-source configuration in edge functions ([#5197](https://github.com/netlify/cli/issues/5197)) ([0415efe](https://github.com/netlify/cli/commit/0415efe697d5cd19f6c6ff561b48cb9532cf82d2))


### Bug Fixes

* **deps:** update dependency @netlify/build to ^28.1.0 ([#5177](https://github.com/netlify/cli/issues/5177)) ([b4349df](https://github.com/netlify/cli/commit/b4349df28f25328d6ed877cc9f101edbb52295f1))
* **deps:** update dependency @netlify/edge-bundler to ^3.1.0 ([#5196](https://github.com/netlify/cli/issues/5196)) ([40f7ea0](https://github.com/netlify/cli/commit/40f7ea0b67dace18e8a40aaf0ac06053556e5241))
* **deps:** update dependency @netlify/edge-bundler to ^3.1.1 ([#5205](https://github.com/netlify/cli/issues/5205)) ([54a2d73](https://github.com/netlify/cli/commit/54a2d7365a5cfc3e7d3112d953b8693d0775276c))
* **deps:** update dependency @netlify/edge-bundler to v3 ([#5188](https://github.com/netlify/cli/issues/5188)) ([f850cfb](https://github.com/netlify/cli/commit/f850cfbc66ebbd725eb92889a78d45f31878ffc1))
* **deps:** update dependency @netlify/zip-it-and-ship-it to v8 ([#5198](https://github.com/netlify/cli/issues/5198)) ([36957fc](https://github.com/netlify/cli/commit/36957fcba3f6355985446c67d673ef96edd448f1))
* **deps:** update dependency stripe to v10.15.0 ([#5185](https://github.com/netlify/cli/issues/5185)) ([daae4a1](https://github.com/netlify/cli/commit/daae4a1cbc5a2017f88a13ea654d84ab3aa25273))
* **deps:** update netlify packages ([#5179](https://github.com/netlify/cli/issues/5179)) ([01db7db](https://github.com/netlify/cli/commit/01db7dbd82d31b913a9085028257bf9c9b8052c5))
* **deps:** update netlify packages ([#5195](https://github.com/netlify/cli/issues/5195)) ([678e979](https://github.com/netlify/cli/commit/678e9798e3cd468bcdebdc09b713e580a262d5f5))
* **deps:** update rust crate lambda_runtime to 0.7.0 ([#5186](https://github.com/netlify/cli/issues/5186)) ([791a398](https://github.com/netlify/cli/commit/791a398a0f6fb3a5754afe7129d5f0d12db6d493))
* ensure HMR requests can be streamed ([#5200](https://github.com/netlify/cli/issues/5200)) ([9741537](https://github.com/netlify/cli/commit/97415371d0010dd0091e9eabd63cb2f6ae8e3c52))
* fix one more instance of post_processing in broken test ([#5193](https://github.com/netlify/cli/issues/5193)) ([423be8f](https://github.com/netlify/cli/commit/423be8f20bfc5ffbbe6074316528bd826852bc40))

## [12.0.11](https://github.com/netlify/cli/compare/v12.0.10...v12.0.11) (2022-10-18)


Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "netlify-cli",
"description": "Netlify command line tool",
"version": "12.0.11",
"version": "12.1.0",
"author": "Netlify Inc.",
"type": "module",
"contributors": [
Expand Down