Skip to content

Commit

Permalink
0.118.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Dec 16, 2021
1 parent 068f16f commit 71c370b
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 23 deletions.
45 changes: 23 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- 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
# 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: Remove coverage report
# shell: bash
# if: matrix.os != 'ubuntu-latest'
# run: |
# rm -rf ./cov/
# rm cov.lcov

node:
runs-on: ${{ matrix.os }}
Expand Down
27 changes: 27 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit 71c370b

Please sign in to comment.