diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6783c6c0e..a2ce0f5b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,28 +47,29 @@ jobs: run: | git grep --name-only "// This module is browser compatible." | grep -v ".github/workflows" | xargs deno cache --config browser-compat.tsconfig.json - - name: Generate lcov - shell: bash - # TODO(kt3k): Excludes ubuntu for now because it panics while processing io/util.ts - # See https://github.com/denoland/deno/issues/10420 - if: matrix.os != 'ubuntu-latest' - # excludes tests, testdata, and generated sources from coverage report - run: | - deno coverage ./cov/ --lcov --exclude="test\\.(ts|js)|wasm\\.js|testdata|node/_tools|node/_module/cjs|node_modules" > cov.lcov + # TODO(bartlomieju): it appears coverage broke in Deno v1.17 release + # - name: Generate lcov + # shell: bash + # # TODO(kt3k): Excludes ubuntu for now because it panics while processing io/util.ts + # # See https://github.com/denoland/deno/issues/10420 + # if: matrix.os != 'ubuntu-latest' + # # excludes tests, testdata, and generated sources from coverage report + # run: | + # deno coverage ./cov/ --lcov --exclude="test\\.(ts|js)|wasm\\.js|testdata|node/_tools|node/_module/cjs|node_modules" > cov.lcov - - name: Upload coverage - uses: codecov/codecov-action@v1 - if: matrix.os != 'ubuntu-latest' - with: - name: ${{ matrix.os }}-${{ matrix.deno }} - files: cov.lcov + # - name: Upload coverage + # uses: codecov/codecov-action@v1 + # if: matrix.os != 'ubuntu-latest' + # with: + # name: ${{ matrix.os }}-${{ matrix.deno }} + # files: cov.lcov - - name: Remove coverage report - shell: bash - if: matrix.os != 'ubuntu-latest' - run: | - rm -rf ./cov/ - rm cov.lcov + # - name: Remove coverage report + # shell: bash + # if: matrix.os != 'ubuntu-latest' + # run: | + # rm -rf ./cov/ + # rm cov.lcov node: runs-on: ${{ matrix.os }} diff --git a/Releases.md b/Releases.md index 47cc8aa33..d38e7027f 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,30 @@ +### 0.118.0 / 2021.12.16 + +- [BREAKING] Remove 'findLast' from 'collections' module (#1527) +- [BREAKING] Remove 'findLastIndex' from 'collections' module (#1528) +- [BREAKING] Remove 'server_legacy' from 'http' module (#1648) +- [BREAKING] Remove 'ws' module (#1647) +- [BREAKING] Remove assertThrowsAsync from 'testing/' (#1646) +- [BREAKING] Remove Go-style address in 'http' module (#1660) +- [BREAKING] Remove onSignal from 'signals/' (#1644) +- feat(http): add onError option to serveListener and serveTls (#1679) +- feat(node): add child_process.fork (#1695) +- feat(node): add http.Agent (#1706) +- feat(node): add http.OutgoingMessage (#1705) +- feat(node): add http.request (#1712) +- feat(node): add missing url.parse (#1667) +- feat(node): add mock inspector module (#1688) +- feat(node): add mock zlib module (#1698) +- feat(node): add util.isDeepStrictEqual (#1556) +- feat(node): export fs.Stats class (#1696) +- feat(node/fs): add fs.access (#1687) +- feat(node/url): add url.resolveObject (#1691) +- feat(node/util): add util.deprecate (#1697) +- feat(toml): align keys by option (#1693) +- fix(datetime): fix bug for parse at the end of the month (#1676) +- fix(node/util/inspect): validate invalid options (#1672) +- fix(toml): parse declaration correctly (#1682) + ### 0.117.0 / 2021.12.03 - feat(http): introduce onError option on ServerInit (#1621) diff --git a/version.ts b/version.ts index 58eb08610..c92d4e5c1 100644 --- a/version.ts +++ b/version.ts @@ -5,4 +5,4 @@ * the cli's API is stable. In the future when std becomes stable, likely we * will match versions with cli as we have in the past. */ -export const VERSION = "0.117.0"; +export const VERSION = "0.118.0";