Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Aug 12, 2022
1 parent e69548c commit be8a8e4
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Improved `PaginateResult` type to support Index Signature `unknown`.
- Improved `Paginator` type generic.
- Fixed `expired` middleware to remove the charset from the `Content-Type` header [#233].
- Updated `std` dependencies.

## [1.10.2] - 2022-08-11
### Added
Expand Down
2 changes: 1 addition & 1 deletion deps/assert.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/testing/asserts.ts";
export * from "https://deno.land/std@0.152.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion deps/base64.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/encoding/base64.ts";
export * from "https://deno.land/std@0.152.0/encoding/base64.ts";
2 changes: 1 addition & 1 deletion deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/fmt/colors.ts";
export * from "https://deno.land/std@0.152.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion deps/crypto.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/crypto/mod.ts";
export * from "https://deno.land/std@0.152.0/crypto/mod.ts";
2 changes: 1 addition & 1 deletion deps/flags.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/flags/mod.ts";
export * from "https://deno.land/std@0.152.0/flags/mod.ts";
2 changes: 1 addition & 1 deletion deps/front_matter.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/encoding/front_matter.ts";
export * from "https://deno.land/std@0.152.0/encoding/front_matter.ts";
2 changes: 1 addition & 1 deletion deps/fs.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/fs/mod.ts";
export * from "https://deno.land/std@0.152.0/fs/mod.ts";
2 changes: 1 addition & 1 deletion deps/hex.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/encoding/hex.ts";
export * from "https://deno.land/std@0.152.0/encoding/hex.ts";
6 changes: 3 additions & 3 deletions deps/http.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { serveFile } from "https://deno.land/std@0.151.0/http/file_server.ts";
export { Server } from "https://deno.land/std@0.151.0/http/server.ts";
export { serveFile } from "https://deno.land/std@0.152.0/http/file_server.ts";
export { Server } from "https://deno.land/std@0.152.0/http/server.ts";

export type { ConnInfo } from "https://deno.land/std@0.151.0/http/server.ts";
export type { ConnInfo } from "https://deno.land/std@0.152.0/http/server.ts";
2 changes: 1 addition & 1 deletion deps/jsonc.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/encoding/jsonc.ts";
export * from "https://deno.land/std@0.152.0/encoding/jsonc.ts";
2 changes: 1 addition & 1 deletion deps/media_types.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/media_types/mod.ts";
export * from "https://deno.land/std@0.152.0/media_types/mod.ts";
2 changes: 1 addition & 1 deletion deps/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/path/mod.ts";
export * from "https://deno.land/std@0.152.0/path/mod.ts";
2 changes: 1 addition & 1 deletion deps/snapshot.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/testing/snapshot.ts";
export * from "https://deno.land/std@0.152.0/testing/snapshot.ts";
2 changes: 1 addition & 1 deletion deps/yaml.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.151.0/encoding/yaml.ts";
export * from "https://deno.land/std@0.152.0/encoding/yaml.ts";

0 comments on commit be8a8e4

Please sign in to comment.