diff --git a/_tools/check_browser_compat.ts b/_tools/check_browser_compat.ts index 6f27adad51ad..d9d919cc50e8 100644 --- a/_tools/check_browser_compat.ts +++ b/_tools/check_browser_compat.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * This script adds a browser-compatible declaration to files that are diff --git a/_tools/check_circular_package_dependencies.ts b/_tools/check_circular_package_dependencies.ts index 09f4d92d448e..33ebd0deeb10 100644 --- a/_tools/check_circular_package_dependencies.ts +++ b/_tools/check_circular_package_dependencies.ts @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-console -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { createGraph, type ModuleGraphJson, diff --git a/_tools/check_docs.ts b/_tools/check_docs.ts index 67a40866e2f8..96c0e298680b 100644 --- a/_tools/check_docs.ts +++ b/_tools/check_docs.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * This script checks that all public symbols documentation aligns with the diff --git a/_tools/check_export_names.ts b/_tools/check_export_names.ts index ffab4c4129ab..280e07317a46 100644 --- a/_tools/check_export_names.ts +++ b/_tools/check_export_names.ts @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-console -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * This script adds kebab case checking for export names found in each `@std` diff --git a/_tools/check_import_map.ts b/_tools/check_import_map.ts index fa86c537f59f..57a479a0a289 100644 --- a/_tools/check_import_map.ts +++ b/_tools/check_import_map.ts @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-console -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import importMap from "../import_map.json" with { type: "json" }; import { getPackagesDenoJsons } from "./utils.ts"; diff --git a/_tools/check_mod_exports.ts b/_tools/check_mod_exports.ts index 9267e2c465d6..ab980cdb6a43 100644 --- a/_tools/check_mod_exports.ts +++ b/_tools/check_mod_exports.ts @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-console -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { walk } from "../fs/walk.ts"; import { relative } from "../path/relative.ts"; diff --git a/_tools/check_unstable_deps.ts b/_tools/check_unstable_deps.ts index 16c861d4015c..1f17fc0e0e3c 100644 --- a/_tools/check_unstable_deps.ts +++ b/_tools/check_unstable_deps.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-console /** diff --git a/_tools/lint_plugin.ts b/_tools/lint_plugin.ts index 5637d62de91a..d387d26dbb50 100644 --- a/_tools/lint_plugin.ts +++ b/_tools/lint_plugin.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // @ts-nocheck Deno.lint namespace does not pass type checking in Deno 1.x /** diff --git a/_tools/lint_plugin_test.ts b/_tools/lint_plugin_test.ts index 3b8edb24cb46..b233762afc9b 100644 --- a/_tools/lint_plugin_test.ts +++ b/_tools/lint_plugin_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // @ts-nocheck Deno.lint namespace does not pass type checking in Deno 1.x import { assertEquals } from "@std/assert/equals"; @@ -383,7 +383,7 @@ Deno.test("deno-style-guide/copyright-notice", { // Good assertLintPluginDiagnostics( ` -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. `, [], false, diff --git a/_tools/node_test_runner/deno_compat_hooks.mjs b/_tools/node_test_runner/deno_compat_hooks.mjs index b1dcf9408175..16955585b015 100644 --- a/_tools/node_test_runner/deno_compat_hooks.mjs +++ b/_tools/node_test_runner/deno_compat_hooks.mjs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { readFile } from "node:fs/promises"; import * as path from "node:path"; diff --git a/_tools/node_test_runner/register_deno_shim.mjs b/_tools/node_test_runner/register_deno_shim.mjs index 1a52d6ae0482..9555024b5919 100644 --- a/_tools/node_test_runner/register_deno_shim.mjs +++ b/_tools/node_test_runner/register_deno_shim.mjs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { Deno, testDefinitions } from "@deno/shim-deno-test"; import { register } from "node:module"; diff --git a/_tools/node_test_runner/run_test.mjs b/_tools/node_test_runner/run_test.mjs index 0162f10a29e4..2c5b85e0fd4a 100644 --- a/_tools/node_test_runner/run_test.mjs +++ b/_tools/node_test_runner/run_test.mjs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { test } from "node:test"; diff --git a/_tools/utils.ts b/_tools/utils.ts index afc8a3c8c13c..552966b68a2c 100644 --- a/_tools/utils.ts +++ b/_tools/utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export interface DenoJson { name: string; version: string; diff --git a/assert/almost_equals.ts b/assert/almost_equals.ts index 8e1c38c96792..8842bba0efa5 100644 --- a/assert/almost_equals.ts +++ b/assert/almost_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/almost_equals_test.ts b/assert/almost_equals_test.ts index cbe9c4073f44..462adab65c07 100644 --- a/assert/almost_equals_test.ts +++ b/assert/almost_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertAlmostEquals, AssertionError, assertThrows } from "./mod.ts"; Deno.test("assertAlmostEquals() matches values within default precision range", () => { diff --git a/assert/array_includes.ts b/assert/array_includes.ts index bcc14fefccd8..623e7e8920f6 100644 --- a/assert/array_includes.ts +++ b/assert/array_includes.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { equal } from "./equal.ts"; import { format } from "@std/internal/format"; diff --git a/assert/array_includes_test.ts b/assert/array_includes_test.ts index 6de2e248a98d..bf6a84d180bf 100644 --- a/assert/array_includes_test.ts +++ b/assert/array_includes_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertArrayIncludes, AssertionError, assertThrows } from "./mod.ts"; const fixture = ["deno", "iz", "luv"]; diff --git a/assert/assert.ts b/assert/assert.ts index 9da70a330d1a..e500efb51041 100644 --- a/assert/assert.ts +++ b/assert/assert.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/assert_test.ts b/assert/assert_test.ts index 58320d5f5744..8b14340d9fee 100644 --- a/assert/assert_test.ts +++ b/assert/assert_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, AssertionError, assertThrows } from "./mod.ts"; Deno.test("assert() throws if expr is falsy", () => { diff --git a/assert/assertion_error.ts b/assert/assertion_error.ts index 1b09720c5f1c..3f05d26d2e3f 100644 --- a/assert/assertion_error.ts +++ b/assert/assertion_error.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/assert/assertion_error_test.ts b/assert/assertion_error_test.ts index 8aaa20552600..b41f75249682 100644 --- a/assert/assertion_error_test.ts +++ b/assert/assertion_error_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertIsError, assertStrictEquals } from "./mod.ts"; Deno.test("AssertionError", () => { diff --git a/assert/equal.ts b/assert/equal.ts index 6cb80560b9a4..ce66424d2c07 100644 --- a/assert/equal.ts +++ b/assert/equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. type KeyedCollection = Set | Map; diff --git a/assert/equal_test.ts b/assert/equal_test.ts index cecb09fb92ac..5cb300930baf 100644 --- a/assert/equal_test.ts +++ b/assert/equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertFalse, assertThrows, equal } from "./mod.ts"; Deno.test("equal() different zero", () => { diff --git a/assert/equals.ts b/assert/equals.ts index 4ca43875ab09..e1a077a81686 100644 --- a/assert/equals.ts +++ b/assert/equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { equal } from "./equal.ts"; import { buildMessage } from "@std/internal/build-message"; diff --git a/assert/equals_test.ts b/assert/equals_test.ts index 2f9bd29b9908..8f23661d6b2f 100644 --- a/assert/equals_test.ts +++ b/assert/equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, AssertionError, assertThrows } from "./mod.ts"; import { bold, diff --git a/assert/exists.ts b/assert/exists.ts index c906026a8417..01ce977fae33 100644 --- a/assert/exists.ts +++ b/assert/exists.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/exists_test.ts b/assert/exists_test.ts index 79cbda3bdc72..761e2e5c1d21 100644 --- a/assert/exists_test.ts +++ b/assert/exists_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertExists, diff --git a/assert/fail.ts b/assert/fail.ts index 0d3488d498e7..3c84083853c3 100644 --- a/assert/fail.ts +++ b/assert/fail.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/fail_test.ts b/assert/fail_test.ts index ef313b1fc2c2..fc2644395399 100644 --- a/assert/fail_test.ts +++ b/assert/fail_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertThrows, fail } from "./mod.ts"; Deno.test("AssertFail", function () { diff --git a/assert/false.ts b/assert/false.ts index 99c74cab5507..7db993ab5f24 100644 --- a/assert/false.ts +++ b/assert/false.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/false_test.ts b/assert/false_test.ts index fbafdbe6a0b8..397ab2a48073 100644 --- a/assert/false_test.ts +++ b/assert/false_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertFalse, assertThrows } from "./mod.ts"; Deno.test("assertFalse() matches with falsy values", () => { diff --git a/assert/greater.ts b/assert/greater.ts index d3d8aa73463c..c536b3234cd5 100644 --- a/assert/greater.ts +++ b/assert/greater.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "@std/internal/format"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/greater_or_equal.ts b/assert/greater_or_equal.ts index dbd8642045b4..ac8991805eea 100644 --- a/assert/greater_or_equal.ts +++ b/assert/greater_or_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "@std/internal/format"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/greater_or_equal_test.ts b/assert/greater_or_equal_test.ts index 66aa91ebeae7..e09099efd60d 100644 --- a/assert/greater_or_equal_test.ts +++ b/assert/greater_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertGreaterOrEqual, assertThrows } from "./mod.ts"; Deno.test("assertGreaterOrEqual() matches when actual value is greater or equal than expected value", () => { diff --git a/assert/greater_test.ts b/assert/greater_test.ts index be8873ec2898..c77eb6d0ddbf 100644 --- a/assert/greater_test.ts +++ b/assert/greater_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertGreater, assertThrows } from "./mod.ts"; Deno.test("assertGreaterOrEqual() matches when actual value is greater than expected value", () => { diff --git a/assert/instance_of.ts b/assert/instance_of.ts index 5856df063200..e5ac81dc0168 100644 --- a/assert/instance_of.ts +++ b/assert/instance_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/instance_of_test.ts b/assert/instance_of_test.ts index f774621bdcbd..107c4a2b9378 100644 --- a/assert/instance_of_test.ts +++ b/assert/instance_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertInstanceOf, AssertionError, assertThrows } from "./mod.ts"; Deno.test({ diff --git a/assert/is_error.ts b/assert/is_error.ts index 22dab3f30904..9a214be49e47 100644 --- a/assert/is_error.ts +++ b/assert/is_error.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; import { stripAnsiCode } from "@std/internal/styles"; diff --git a/assert/is_error_test.ts b/assert/is_error_test.ts index f94129bfa564..a76750605fca 100644 --- a/assert/is_error_test.ts +++ b/assert/is_error_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertIsError, assertThrows } from "./mod.ts"; class CustomError extends Error {} diff --git a/assert/less.ts b/assert/less.ts index 4436bd2df1e1..1ea4608eb1bf 100644 --- a/assert/less.ts +++ b/assert/less.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "@std/internal/format"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/less_or_equal.ts b/assert/less_or_equal.ts index 6569eb62c34e..c7e34d4b880d 100644 --- a/assert/less_or_equal.ts +++ b/assert/less_or_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "@std/internal/format"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/less_or_equal_test.ts b/assert/less_or_equal_test.ts index 714a44468cd7..11af2239ff26 100644 --- a/assert/less_or_equal_test.ts +++ b/assert/less_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertLessOrEqual, assertThrows } from "./mod.ts"; Deno.test("assertLessOrEqual", () => { diff --git a/assert/less_test.ts b/assert/less_test.ts index e6398c2169dd..b33bd41a7a5c 100644 --- a/assert/less_test.ts +++ b/assert/less_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertLess, assertThrows } from "./mod.ts"; Deno.test("assertLess", () => { diff --git a/assert/match.ts b/assert/match.ts index 8c49ffa7dc54..7294417819f6 100644 --- a/assert/match.ts +++ b/assert/match.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/match_test.ts b/assert/match_test.ts index da5f089c0764..a732dd6e8bf6 100644 --- a/assert/match_test.ts +++ b/assert/match_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertThrows } from "./throws.ts"; import { AssertionError, assertMatch } from "./mod.ts"; diff --git a/assert/mod.ts b/assert/mod.ts index 2f891813359e..23ea2a590e4e 100644 --- a/assert/mod.ts +++ b/assert/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** A library of assertion functions. diff --git a/assert/not_equals.ts b/assert/not_equals.ts index 70bdab6033a4..07164446f645 100644 --- a/assert/not_equals.ts +++ b/assert/not_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { equal } from "./equal.ts"; diff --git a/assert/not_equals_test.ts b/assert/not_equals_test.ts index 5a9b53f94c9a..c2dfb5b52522 100644 --- a/assert/not_equals_test.ts +++ b/assert/not_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertNotEquals, assertThrows } from "./mod.ts"; Deno.test("assertNotEquals()", () => { diff --git a/assert/not_instance_of.ts b/assert/not_instance_of.ts index 01bfdde07d49..a6af200a4bea 100644 --- a/assert/not_instance_of.ts +++ b/assert/not_instance_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertFalse } from "./false.ts"; diff --git a/assert/not_instance_of_test.ts b/assert/not_instance_of_test.ts index 5905e3659631..34eadb5ac53d 100644 --- a/assert/not_instance_of_test.ts +++ b/assert/not_instance_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertNotInstanceOf, assertThrows } from "./mod.ts"; Deno.test({ diff --git a/assert/not_match.ts b/assert/not_match.ts index 533ed170b735..b22def9ff103 100644 --- a/assert/not_match.ts +++ b/assert/not_match.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/not_match_test.ts b/assert/not_match_test.ts index a52cea6827b5..9c94c43ac28b 100644 --- a/assert/not_match_test.ts +++ b/assert/not_match_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertNotMatch, assertThrows } from "./mod.ts"; Deno.test("assertNotMatch()", () => { diff --git a/assert/not_strict_equals.ts b/assert/not_strict_equals.ts index 2c62099c59d9..8ac06f2a051a 100644 --- a/assert/not_strict_equals.ts +++ b/assert/not_strict_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; import { format } from "@std/internal/format"; diff --git a/assert/not_strict_equals_test.ts b/assert/not_strict_equals_test.ts index 0083e44624cc..78f3fc2d9e3a 100644 --- a/assert/not_strict_equals_test.ts +++ b/assert/not_strict_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertNotStrictEquals, assertThrows } from "./mod.ts"; Deno.test({ diff --git a/assert/object_match.ts b/assert/object_match.ts index 040039366097..60a7cc6f4cb1 100644 --- a/assert/object_match.ts +++ b/assert/object_match.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertEquals } from "./equals.ts"; diff --git a/assert/object_match_test.ts b/assert/object_match_test.ts index faabe2c205db..20042fefa064 100644 --- a/assert/object_match_test.ts +++ b/assert/object_match_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertObjectMatch, assertThrows } from "./mod.ts"; const sym = Symbol("foo"); diff --git a/assert/rejects.ts b/assert/rejects.ts index b61aa317d762..c23eb7596218 100644 --- a/assert/rejects.ts +++ b/assert/rejects.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; import { assertIsError } from "./is_error.ts"; diff --git a/assert/rejects_test.ts b/assert/rejects_test.ts index c4c065743001..7f55cfe09e29 100644 --- a/assert/rejects_test.ts +++ b/assert/rejects_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, AssertionError, assertRejects } from "./mod.ts"; Deno.test("assertRejects() with return type", async () => { diff --git a/assert/strict_equals.ts b/assert/strict_equals.ts index 724b7a2fe378..30d64f72f12c 100644 --- a/assert/strict_equals.ts +++ b/assert/strict_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { buildMessage } from "@std/internal/build-message"; import { diff } from "@std/internal/diff"; diff --git a/assert/strict_equals_test.ts b/assert/strict_equals_test.ts index f416cd2078e5..c981cf8b3282 100644 --- a/assert/strict_equals_test.ts +++ b/assert/strict_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertStrictEquals, assertThrows } from "./mod.ts"; Deno.test({ diff --git a/assert/string_includes.ts b/assert/string_includes.ts index 9791d460b7c8..8de0bb4820e5 100644 --- a/assert/string_includes.ts +++ b/assert/string_includes.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/string_includes_test.ts b/assert/string_includes_test.ts index 9a224281a9ed..c11c54544a81 100644 --- a/assert/string_includes_test.ts +++ b/assert/string_includes_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/assert/throws.ts b/assert/throws.ts index 392ff912c49f..bd72dd939fdf 100644 --- a/assert/throws.ts +++ b/assert/throws.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertIsError } from "./is_error.ts"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/throws_test.ts b/assert/throws_test.ts index d18451879ae9..b3569a451fa6 100644 --- a/assert/throws_test.ts +++ b/assert/throws_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/assert/unimplemented.ts b/assert/unimplemented.ts index 93557b8d3f8f..9434d2f6ab11 100644 --- a/assert/unimplemented.ts +++ b/assert/unimplemented.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/unimplemented_test.ts b/assert/unimplemented_test.ts index 32be8362a699..349f893c8f17 100644 --- a/assert/unimplemented_test.ts +++ b/assert/unimplemented_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertThrows, unimplemented } from "./mod.ts"; Deno.test("unimplemented() throws", function () { diff --git a/assert/unreachable.ts b/assert/unreachable.ts index 5784699a6712..c2e3f5deec30 100644 --- a/assert/unreachable.ts +++ b/assert/unreachable.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/unreachable_test.ts b/assert/unreachable_test.ts index 6c7ab675ded4..d38c2a4497d6 100644 --- a/assert/unreachable_test.ts +++ b/assert/unreachable_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertThrows, unreachable } from "./mod.ts"; Deno.test("unreachable()", () => { diff --git a/assert/unstable_equals.ts b/assert/unstable_equals.ts index e76f087926de..7235e94efd0e 100644 --- a/assert/unstable_equals.ts +++ b/assert/unstable_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertEquals as _assertEquals } from "./equals.ts"; import { truncateDiff } from "@std/internal/truncate-build-message"; diff --git a/assert/unstable_equals_test.ts b/assert/unstable_equals_test.ts index ea7cbc502dca..b5ffdd61990e 100644 --- a/assert/unstable_equals_test.ts +++ b/assert/unstable_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertThrows } from "./mod.ts"; import { assertEquals } from "./unstable_equals.ts"; import { DIFF_CONTEXT_LENGTH } from "@std/internal/truncate-build-message"; diff --git a/assert/unstable_never.ts b/assert/unstable_never.ts index 276ff69b7296..609e893ec9d6 100644 --- a/assert/unstable_never.ts +++ b/assert/unstable_never.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "@std/internal/format"; import { AssertionError } from "./assertion_error.ts"; diff --git a/assert/unstable_never_test.ts b/assert/unstable_never_test.ts index 400962f87ee3..0b7518778db1 100644 --- a/assert/unstable_never_test.ts +++ b/assert/unstable_never_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AssertionError, assertThrows } from "./mod.ts"; import { assertNever } from "./unstable_never.ts"; diff --git a/assert/unstable_strict_equals.ts b/assert/unstable_strict_equals.ts index e424a3dff7e9..0396620dc635 100644 --- a/assert/unstable_strict_equals.ts +++ b/assert/unstable_strict_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertStrictEquals as _assertStrictEquals } from "./strict_equals.ts"; import { truncateDiff } from "@std/internal/truncate-build-message"; diff --git a/async/_util.ts b/async/_util.ts index f1a461633800..ec481db7d17e 100644 --- a/async/_util.ts +++ b/async/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export function exponentialBackoffWithJitter( diff --git a/async/_util_test.ts b/async/_util_test.ts index 07d2ff959b39..5426ebb48755 100644 --- a/async/_util_test.ts +++ b/async/_util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { exponentialBackoffWithJitter } from "./_util.ts"; import { assertEquals } from "@std/assert"; diff --git a/async/abortable.ts b/async/abortable.ts index 703e29e26e10..4d3f8f9acf96 100644 --- a/async/abortable.ts +++ b/async/abortable.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // TODO(iuioiua): Remove `ignore` directives from following snippets diff --git a/async/abortable_test.ts b/async/abortable_test.ts index 018bacf3b9a0..f7065a212598 100644 --- a/async/abortable_test.ts +++ b/async/abortable_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { abortable } from "./abortable.ts"; diff --git a/async/deadline.ts b/async/deadline.ts index 635d9feeb6a4..35eca08e516e 100644 --- a/async/deadline.ts +++ b/async/deadline.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { abortable } from "./abortable.ts"; diff --git a/async/deadline_test.ts b/async/deadline_test.ts index 72b58bb60f17..4c496d7b200e 100644 --- a/async/deadline_test.ts +++ b/async/deadline_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { delay } from "./delay.ts"; import { deadline } from "./deadline.ts"; diff --git a/async/debounce.ts b/async/debounce.ts index f2299f3dfb2d..2b0ef84eb517 100644 --- a/async/debounce.ts +++ b/async/debounce.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/async/debounce_test.ts b/async/debounce_test.ts index 057f827f68ed..bafbb00fb7ad 100644 --- a/async/debounce_test.ts +++ b/async/debounce_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertStrictEquals } from "@std/assert"; import { debounce, type DebouncedFunction } from "./debounce.ts"; import { delay } from "./delay.ts"; diff --git a/async/delay.ts b/async/delay.ts index 86697c791dbf..6ab904c867f6 100644 --- a/async/delay.ts +++ b/async/delay.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode delay}. */ diff --git a/async/delay_test.ts b/async/delay_test.ts index b55fd0591662..bc9e0077d4bd 100644 --- a/async/delay_test.ts +++ b/async/delay_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { delay } from "./delay.ts"; import { assert, diff --git a/async/mod.ts b/async/mod.ts index 1cbfe120d712..4d6be7ab8b31 100644 --- a/async/mod.ts +++ b/async/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/async/mux_async_iterator.ts b/async/mux_async_iterator.ts index 0c1c3da1e627..2be7a07577d9 100644 --- a/async/mux_async_iterator.ts +++ b/async/mux_async_iterator.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. interface TaggedYieldedValue { diff --git a/async/mux_async_iterator_test.ts b/async/mux_async_iterator_test.ts index 7acf3fa14bcd..2c63f89e90b8 100644 --- a/async/mux_async_iterator_test.ts +++ b/async/mux_async_iterator_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { MuxAsyncIterator } from "./mux_async_iterator.ts"; diff --git a/async/pool.ts b/async/pool.ts index d8a9f853b29a..08e469a66033 100644 --- a/async/pool.ts +++ b/async/pool.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Error message emitted from the thrown error while mapping. */ diff --git a/async/pool_test.ts b/async/pool_test.ts index 643c43b7c781..4adc5cf67b38 100644 --- a/async/pool_test.ts +++ b/async/pool_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { delay } from "./delay.ts"; import { pooledMap } from "./pool.ts"; import { diff --git a/async/retry.ts b/async/retry.ts index cc1fe9c2395a..6a7e7ff61958 100644 --- a/async/retry.ts +++ b/async/retry.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { exponentialBackoffWithJitter } from "./_util.ts"; diff --git a/async/retry_test.ts b/async/retry_test.ts index 3b582ff79be4..5a267a2529a5 100644 --- a/async/retry_test.ts +++ b/async/retry_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { retry, RetryError } from "./retry.ts"; import { assertEquals, assertRejects } from "@std/assert"; import { FakeTime } from "@std/testing/time"; diff --git a/async/tee.ts b/async/tee.ts index 1aa9348c8b30..1aa66b82cb9d 100644 --- a/async/tee.ts +++ b/async/tee.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/async/tee_test.ts b/async/tee_test.ts index 00e29cf8b9c7..1d9cd345b2b7 100644 --- a/async/tee_test.ts +++ b/async/tee_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { tee } from "./tee.ts"; import { assertEquals } from "@std/assert"; diff --git a/async/unstable_circuit_breaker.ts b/async/unstable_circuit_breaker.ts index 436a8d20fdda..7a06e89c72b7 100644 --- a/async/unstable_circuit_breaker.ts +++ b/async/unstable_circuit_breaker.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/async/unstable_circuit_breaker_test.ts b/async/unstable_circuit_breaker_test.ts index b3e9a5c5d7fc..3807a4d9ba41 100644 --- a/async/unstable_circuit_breaker_test.ts +++ b/async/unstable_circuit_breaker_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/async/unstable_mux_async_iterator.ts b/async/unstable_mux_async_iterator.ts index 0b9ad6f77504..9f63a8e1155c 100644 --- a/async/unstable_mux_async_iterator.ts +++ b/async/unstable_mux_async_iterator.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { MuxAsyncIterator as MuxAsyncIterator_ } from "./mux_async_iterator.ts"; diff --git a/async/unstable_mux_async_iterator_test.ts b/async/unstable_mux_async_iterator_test.ts index f73a452db80c..5507f24b4b48 100644 --- a/async/unstable_mux_async_iterator_test.ts +++ b/async/unstable_mux_async_iterator_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { MuxAsyncIterator } from "./unstable_mux_async_iterator.ts"; diff --git a/async/unstable_retry.ts b/async/unstable_retry.ts index 480033766def..5150c6fb27bb 100644 --- a/async/unstable_retry.ts +++ b/async/unstable_retry.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { exponentialBackoffWithJitter } from "./_util.ts"; diff --git a/async/unstable_retry_test.ts b/async/unstable_retry_test.ts index 083232e687b5..cac0066b1697 100644 --- a/async/unstable_retry_test.ts +++ b/async/unstable_retry_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { retry } from "./unstable_retry.ts"; import { RetryError } from "./retry.ts"; diff --git a/async/unstable_semaphore.ts b/async/unstable_semaphore.ts index 195f32d68813..a5276332414b 100644 --- a/async/unstable_semaphore.ts +++ b/async/unstable_semaphore.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Internal node for the FIFO waiting queue. */ diff --git a/async/unstable_semaphore_test.ts b/async/unstable_semaphore_test.ts index d09764512fa2..3802b52c836c 100644 --- a/async/unstable_semaphore_test.ts +++ b/async/unstable_semaphore_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/async/unstable_throttle.ts b/async/unstable_throttle.ts index 24b2546d08db..9ab7f0fae795 100644 --- a/async/unstable_throttle.ts +++ b/async/unstable_throttle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode throttle} */ diff --git a/async/unstable_throttle_test.ts b/async/unstable_throttle_test.ts index fe5a497f09cd..2f3c88629153 100644 --- a/async/unstable_throttle_test.ts +++ b/async/unstable_throttle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertGreater, diff --git a/async/unstable_wait_for.ts b/async/unstable_wait_for.ts index 1de4729ac18d..748742426fe9 100644 --- a/async/unstable_wait_for.ts +++ b/async/unstable_wait_for.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { deadline } from "./deadline.ts"; diff --git a/async/unstable_wait_for_test.ts b/async/unstable_wait_for_test.ts index be691a94e22f..868e2d9c0147 100644 --- a/async/unstable_wait_for_test.ts +++ b/async/unstable_wait_for_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertFalse, diff --git a/bytes/_types.ts b/bytes/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/bytes/_types.ts +++ b/bytes/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/bytes/concat.ts b/bytes/concat.ts index 553f4d147ef0..cfd43ecd782d 100644 --- a/bytes/concat.ts +++ b/bytes/concat.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Uint8Array_ } from "./_types.ts"; diff --git a/bytes/concat_test.ts b/bytes/concat_test.ts index 8e76765d4d1c..b455aaa9afa7 100644 --- a/bytes/concat_test.ts +++ b/bytes/concat_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { concat } from "./concat.ts"; diff --git a/bytes/copy.ts b/bytes/copy.ts index 1d85b762e711..29488fddf266 100644 --- a/bytes/copy.ts +++ b/bytes/copy.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/copy_test.ts b/bytes/copy_test.ts index 6a241914693d..54dcacbc2993 100644 --- a/bytes/copy_test.ts +++ b/bytes/copy_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { copy } from "./copy.ts"; diff --git a/bytes/ends_with.ts b/bytes/ends_with.ts index a9774fbeca67..dbd36c154eb1 100644 --- a/bytes/ends_with.ts +++ b/bytes/ends_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/ends_with_test.ts b/bytes/ends_with_test.ts index cbe9c45fe111..86655a2eedf0 100644 --- a/bytes/ends_with_test.ts +++ b/bytes/ends_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { endsWith } from "./ends_with.ts"; diff --git a/bytes/equals.ts b/bytes/equals.ts index 90f4c0c250c4..a23f026816f8 100644 --- a/bytes/equals.ts +++ b/bytes/equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/equals_test.ts b/bytes/equals_test.ts index 6f985d8a3c24..fdcb04643992 100644 --- a/bytes/equals_test.ts +++ b/bytes/equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { equals } from "./equals.ts"; import { assert, assertEquals, assertNotEquals } from "@std/assert"; diff --git a/bytes/includes_needle.ts b/bytes/includes_needle.ts index 90ecb5aaf4fb..b9deed16ac3e 100644 --- a/bytes/includes_needle.ts +++ b/bytes/includes_needle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { indexOfNeedle } from "./index_of_needle.ts"; diff --git a/bytes/includes_needle_test.ts b/bytes/includes_needle_test.ts index 720954d3d191..cb3cd59dc79d 100644 --- a/bytes/includes_needle_test.ts +++ b/bytes/includes_needle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { includesNeedle } from "./includes_needle.ts"; import { assert } from "@std/assert"; diff --git a/bytes/index_of_needle.ts b/bytes/index_of_needle.ts index 988965f9c39f..74cf9e6eb922 100644 --- a/bytes/index_of_needle.ts +++ b/bytes/index_of_needle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/index_of_needle_test.ts b/bytes/index_of_needle_test.ts index 3927bb3b9caf..2d263585340c 100644 --- a/bytes/index_of_needle_test.ts +++ b/bytes/index_of_needle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { indexOfNeedle } from "./index_of_needle.ts"; import { assertEquals } from "@std/assert"; diff --git a/bytes/last_index_of_needle.ts b/bytes/last_index_of_needle.ts index 1b70c172d3ca..5d59c4b75df5 100644 --- a/bytes/last_index_of_needle.ts +++ b/bytes/last_index_of_needle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/last_index_of_needle_test.ts b/bytes/last_index_of_needle_test.ts index 776a9bc1d3f2..38049cccac17 100644 --- a/bytes/last_index_of_needle_test.ts +++ b/bytes/last_index_of_needle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { lastIndexOfNeedle } from "./last_index_of_needle.ts"; diff --git a/bytes/mod.ts b/bytes/mod.ts index e4d1085f3496..ddcf3493e40e 100644 --- a/bytes/mod.ts +++ b/bytes/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/repeat.ts b/bytes/repeat.ts index b15d45af59f7..b8d6e5a9970a 100644 --- a/bytes/repeat.ts +++ b/bytes/repeat.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { copy } from "./copy.ts"; import type { Uint8Array_ } from "./_types.ts"; diff --git a/bytes/repeat_test.ts b/bytes/repeat_test.ts index 21a631ddddaa..3db1e5975e12 100644 --- a/bytes/repeat_test.ts +++ b/bytes/repeat_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { repeat } from "./repeat.ts"; diff --git a/bytes/starts_with.ts b/bytes/starts_with.ts index 628014d15adb..3a73516bb098 100644 --- a/bytes/starts_with.ts +++ b/bytes/starts_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/bytes/starts_with_test.ts b/bytes/starts_with_test.ts index 0cb9c001ac86..4a0cb175ae77 100644 --- a/bytes/starts_with_test.ts +++ b/bytes/starts_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { startsWith } from "./starts_with.ts"; diff --git a/cache/_serialize_arg_list.ts b/cache/_serialize_arg_list.ts index 6435ee796656..4bf95b86792c 100644 --- a/cache/_serialize_arg_list.ts +++ b/cache/_serialize_arg_list.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { MemoizationCache } from "./memoize.ts"; /** diff --git a/cache/_serialize_arg_list_test.ts b/cache/_serialize_arg_list_test.ts index e90b9886607e..0e9f7479c1b2 100644 --- a/cache/_serialize_arg_list_test.ts +++ b/cache/_serialize_arg_list_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { _serializeArgList } from "./_serialize_arg_list.ts"; import { delay } from "@std/async"; diff --git a/cache/lru_cache.ts b/cache/lru_cache.ts index c9fef931bff7..8eb8de1ea6cd 100644 --- a/cache/lru_cache.ts +++ b/cache/lru_cache.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { MemoizationCache } from "./memoize.ts"; diff --git a/cache/lru_cache_test.ts b/cache/lru_cache_test.ts index 678f9a7b6dc5..fd6d88f01abf 100644 --- a/cache/lru_cache_test.ts +++ b/cache/lru_cache_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { LruCache } from "./lru_cache.ts"; diff --git a/cache/memoize.ts b/cache/memoize.ts index 5141bd82dcd0..32b6058797f6 100644 --- a/cache/memoize.ts +++ b/cache/memoize.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // deno-lint-ignore no-unused-vars diff --git a/cache/memoize_test.ts b/cache/memoize_test.ts index 210045db994d..fe03aad76edb 100644 --- a/cache/memoize_test.ts +++ b/cache/memoize_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertAlmostEquals, diff --git a/cache/mod.ts b/cache/mod.ts index 2b8bea6730d3..e257897e869e 100644 --- a/cache/mod.ts +++ b/cache/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/cache/ttl_cache.ts b/cache/ttl_cache.ts index 6b14af005e31..6601d653e834 100644 --- a/cache/ttl_cache.ts +++ b/cache/ttl_cache.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { MemoizationCache } from "./memoize.ts"; diff --git a/cache/ttl_cache_test.ts b/cache/ttl_cache_test.ts index 16ce85d46d29..e72cdc02fbf3 100644 --- a/cache/ttl_cache_test.ts +++ b/cache/ttl_cache_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { TtlCache } from "./ttl_cache.ts"; import { assertEquals } from "@std/assert"; import { FakeTime } from "@std/testing/time"; diff --git a/cbor/_array_decoded_stream.ts b/cbor/_array_decoded_stream.ts index b904db7f0475..1da612a474a6 100644 --- a/cbor/_array_decoded_stream.ts +++ b/cbor/_array_decoded_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { ReleaseLock } from "./_common.ts"; import type { CborStreamOutput } from "./types.ts"; diff --git a/cbor/_array_decoded_stream_test.ts b/cbor/_array_decoded_stream_test.ts index de0e8132bcba..6ca009e23bf0 100644 --- a/cbor/_array_decoded_stream_test.ts +++ b/cbor/_array_decoded_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { CborArrayDecodedStream } from "./_array_decoded_stream.ts"; diff --git a/cbor/_byte_decoded_stream.ts b/cbor/_byte_decoded_stream.ts index 01e3456f7d7d..c7e298b19398 100644 --- a/cbor/_byte_decoded_stream.ts +++ b/cbor/_byte_decoded_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { ReleaseLock } from "./_common.ts"; diff --git a/cbor/_byte_decoded_stream_test.ts b/cbor/_byte_decoded_stream_test.ts index 2462d4e5a259..bc48bdbb75bd 100644 --- a/cbor/_byte_decoded_stream_test.ts +++ b/cbor/_byte_decoded_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/_common.ts b/cbor/_common.ts index ed8a98eeda2a..1bf661bb6f59 100644 --- a/cbor/_common.ts +++ b/cbor/_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export type ReleaseLock = (value?: unknown) => void; diff --git a/cbor/_common_decode.ts b/cbor/_common_decode.ts index a33f853f16fc..0147f61e2674 100644 --- a/cbor/_common_decode.ts +++ b/cbor/_common_decode.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { concat } from "@std/bytes"; import { CborTag } from "./tag.ts"; diff --git a/cbor/_common_encode.ts b/cbor/_common_encode.ts index f05c04ef4138..b038bd86eb4a 100644 --- a/cbor/_common_encode.ts +++ b/cbor/_common_encode.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { CborTag } from "./tag.ts"; import type { CborType } from "./types.ts"; diff --git a/cbor/_common_test.ts b/cbor/_common_test.ts index 454f042bfd50..5015f59abdd7 100644 --- a/cbor/_common_test.ts +++ b/cbor/_common_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export function random(start: number, end: number): number { return Math.floor(Math.random() * (end - start) + start); diff --git a/cbor/_map_decoded_stream.ts b/cbor/_map_decoded_stream.ts index 5cbe8f08c98a..79e11adf3d19 100644 --- a/cbor/_map_decoded_stream.ts +++ b/cbor/_map_decoded_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { ReleaseLock } from "./_common.ts"; import type { CborMapStreamOutput } from "./types.ts"; diff --git a/cbor/_map_decoded_stream_test.ts b/cbor/_map_decoded_stream_test.ts index bb764ccffaae..018a7943d58f 100644 --- a/cbor/_map_decoded_stream_test.ts +++ b/cbor/_map_decoded_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { random } from "./_common_test.ts"; diff --git a/cbor/_text_decoded_stream.ts b/cbor/_text_decoded_stream.ts index 9b099bd461da..2ead099e0dec 100644 --- a/cbor/_text_decoded_stream.ts +++ b/cbor/_text_decoded_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { ReleaseLock } from "./_common.ts"; diff --git a/cbor/_text_decoded_stream_test.ts b/cbor/_text_decoded_stream_test.ts index d962b5e7ae3a..b70303b7dbaf 100644 --- a/cbor/_text_decoded_stream_test.ts +++ b/cbor/_text_decoded_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { random } from "./_common_test.ts"; diff --git a/cbor/array_encoder_stream.ts b/cbor/array_encoder_stream.ts index 670d72284f12..70e416cc072f 100644 --- a/cbor/array_encoder_stream.ts +++ b/cbor/array_encoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { CborSequenceEncoderStream } from "./sequence_encoder_stream.ts"; diff --git a/cbor/array_encoder_stream_test.ts b/cbor/array_encoder_stream_test.ts index b5fc20d798f3..92a21fe10c52 100644 --- a/cbor/array_encoder_stream_test.ts +++ b/cbor/array_encoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/byte_encoder_stream.ts b/cbor/byte_encoder_stream.ts index c102c93c1e17..df675b423632 100644 --- a/cbor/byte_encoder_stream.ts +++ b/cbor/byte_encoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { numberToArray } from "./_common.ts"; diff --git a/cbor/byte_encoder_stream_test.ts b/cbor/byte_encoder_stream_test.ts index 9d94d3ba2654..3441b8e9de41 100644 --- a/cbor/byte_encoder_stream_test.ts +++ b/cbor/byte_encoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/decode_cbor.ts b/cbor/decode_cbor.ts index c1b6f1a5cb89..0eb2c9b9e34f 100644 --- a/cbor/decode_cbor.ts +++ b/cbor/decode_cbor.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { decode } from "./_common_decode.ts"; import type { CborType } from "./types.ts"; diff --git a/cbor/decode_cbor_sequence.ts b/cbor/decode_cbor_sequence.ts index e3cd17445572..46def2704370 100644 --- a/cbor/decode_cbor_sequence.ts +++ b/cbor/decode_cbor_sequence.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { decode } from "./_common_decode.ts"; import type { CborType } from "./types.ts"; diff --git a/cbor/decode_cbor_sequence_test.ts b/cbor/decode_cbor_sequence_test.ts index dac779f3505c..54c048940bb7 100644 --- a/cbor/decode_cbor_sequence_test.ts +++ b/cbor/decode_cbor_sequence_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { decodeCborSequence } from "./decode_cbor_sequence.ts"; diff --git a/cbor/decode_cbor_test.ts b/cbor/decode_cbor_test.ts index 3a9dc3647874..8478867dd6a6 100644 --- a/cbor/decode_cbor_test.ts +++ b/cbor/decode_cbor_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { random } from "./_common_test.ts"; diff --git a/cbor/encode_cbor.ts b/cbor/encode_cbor.ts index f40504b490e8..8483d3a410a9 100644 --- a/cbor/encode_cbor.ts +++ b/cbor/encode_cbor.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { calcEncodingSize, encode } from "./_common_encode.ts"; import type { CborType } from "./types.ts"; diff --git a/cbor/encode_cbor_sequence.ts b/cbor/encode_cbor_sequence.ts index 2afe78f81c53..2a3f3661f8af 100644 --- a/cbor/encode_cbor_sequence.ts +++ b/cbor/encode_cbor_sequence.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { calcEncodingSize, encode } from "./_common_encode.ts"; import type { CborType } from "./types.ts"; diff --git a/cbor/encode_cbor_sequence_test.ts b/cbor/encode_cbor_sequence_test.ts index 156dd348a31d..24200c4264a7 100644 --- a/cbor/encode_cbor_sequence_test.ts +++ b/cbor/encode_cbor_sequence_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { encodeCborSequence } from "./encode_cbor_sequence.ts"; diff --git a/cbor/encode_cbor_test.ts b/cbor/encode_cbor_test.ts index 2958dc72af8a..0e71085be55d 100644 --- a/cbor/encode_cbor_test.ts +++ b/cbor/encode_cbor_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/map_encoder_stream.ts b/cbor/map_encoder_stream.ts index f91b793f3c80..0ace07a992b4 100644 --- a/cbor/map_encoder_stream.ts +++ b/cbor/map_encoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { encodeCbor } from "./encode_cbor.ts"; diff --git a/cbor/map_encoder_stream_test.ts b/cbor/map_encoder_stream_test.ts index e0b6ff3222bb..14f067508a19 100644 --- a/cbor/map_encoder_stream_test.ts +++ b/cbor/map_encoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/mod.ts b/cbor/mod.ts index c47ad8148103..18fab468986b 100644 --- a/cbor/mod.ts +++ b/cbor/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Concise Binary Object Representation (CBOR) is a binary data serialization diff --git a/cbor/sequence_decoder_stream.ts b/cbor/sequence_decoder_stream.ts index 50a7ea41bb9f..47340bebb12c 100644 --- a/cbor/sequence_decoder_stream.ts +++ b/cbor/sequence_decoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { arrayToNumber, type ReleaseLock } from "./_common.ts"; diff --git a/cbor/sequence_decoder_stream_test.ts b/cbor/sequence_decoder_stream_test.ts index 4cf9e8a5e4b3..98f11ba3c58e 100644 --- a/cbor/sequence_decoder_stream_test.ts +++ b/cbor/sequence_decoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { CborArrayDecodedStream } from "./_array_decoded_stream.ts"; diff --git a/cbor/sequence_encoder_stream.ts b/cbor/sequence_encoder_stream.ts index 70b1d3c0b923..990c57c4d166 100644 --- a/cbor/sequence_encoder_stream.ts +++ b/cbor/sequence_encoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { numberToArray } from "./_common.ts"; diff --git a/cbor/sequence_encoder_stream_test.ts b/cbor/sequence_encoder_stream_test.ts index d229c4a21fcc..7d6bc1080ecc 100644 --- a/cbor/sequence_encoder_stream_test.ts +++ b/cbor/sequence_encoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/tag.ts b/cbor/tag.ts index 7f8b4ebc4b84..497ba62482cf 100644 --- a/cbor/tag.ts +++ b/cbor/tag.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { CborStreamInput, CborStreamOutput, CborType } from "./types.ts"; diff --git a/cbor/text_encoder_stream.ts b/cbor/text_encoder_stream.ts index 0064b405ff48..9e6847c57195 100644 --- a/cbor/text_encoder_stream.ts +++ b/cbor/text_encoder_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "@std/streams/unstable-to-byte-stream"; import { numberToArray } from "./_common.ts"; diff --git a/cbor/text_encoder_stream_test.ts b/cbor/text_encoder_stream_test.ts index 2eb684715aa8..3c9551628ce4 100644 --- a/cbor/text_encoder_stream_test.ts +++ b/cbor/text_encoder_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/cbor/types.ts b/cbor/types.ts index a92b3f6049fc..d75b773650a9 100644 --- a/cbor/types.ts +++ b/cbor/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { CborArrayDecodedStream } from "./_array_decoded_stream.ts"; import type { CborByteDecodedStream } from "./_byte_decoded_stream.ts"; diff --git a/cli/_prompt_select.ts b/cli/_prompt_select.ts index 8090f0753b07..dd70f3606c15 100644 --- a/cli/_prompt_select.ts +++ b/cli/_prompt_select.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { PromptEntry } from "./unstable_prompt_select.ts"; diff --git a/cli/_run_length.ts b/cli/_run_length.ts index 446a94995b0b..7ea15fd46d03 100644 --- a/cli/_run_length.ts +++ b/cli/_run_length.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export function runLengthEncode(arr: number[]) { const data: number[] = []; diff --git a/cli/_run_length_test.ts b/cli/_run_length_test.ts index 5972da44c82b..51f389db2e14 100644 --- a/cli/_run_length_test.ts +++ b/cli/_run_length_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { runLengthDecode, runLengthEncode } from "./_run_length.ts"; import { assertEquals, assertThrows } from "@std/assert"; diff --git a/cli/_tools/compare_with_rust.ts b/cli/_tools/compare_with_rust.ts index 33951b75e305..e759c017cca0 100644 --- a/cli/_tools/compare_with_rust.ts +++ b/cli/_tools/compare_with_rust.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Run this test with `deno test --unstable-ffi -A compare_with_rust.ts` import { unicodeWidth } from "../unicode_width.ts"; diff --git a/cli/_tools/generate_data.ts b/cli/_tools/generate_data.ts index 6bb89c136426..1a6299c93123 100755 --- a/cli/_tools/generate_data.ts +++ b/cli/_tools/generate_data.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-net --allow-read --allow-write -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Ported from unicode_width rust crate, Copyright (c) 2015 The Rust Project Developers. MIT license. import { assert } from "../../assert/assert.ts"; diff --git a/cli/_types.ts b/cli/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/cli/_types.ts +++ b/cli/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/cli/_unit.ts b/cli/_unit.ts index a51cc23b19d6..e25da824422c 100644 --- a/cli/_unit.ts +++ b/cli/_unit.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. type Unit = | "KiB" diff --git a/cli/mod.ts b/cli/mod.ts index 4bba1ffc5bb3..c62f273f89c7 100644 --- a/cli/mod.ts +++ b/cli/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Tools for creating interactive command line tools. diff --git a/cli/parse_args.ts b/cli/parse_args.ts index ac2447fd83be..451d23c548d0 100644 --- a/cli/parse_args.ts +++ b/cli/parse_args.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/cli/parse_args_test.ts b/cli/parse_args_test.ts index 1e427e8d9d76..03ff1c9de6ac 100644 --- a/cli/parse_args_test.ts +++ b/cli/parse_args_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { type Args, parseArgs, type ParseOptions } from "./parse_args.ts"; import { assertType, type IsExact } from "@std/testing/types"; diff --git a/cli/prompt_secret.ts b/cli/prompt_secret.ts index 2e69bedfdd5d..d8c489095814 100644 --- a/cli/prompt_secret.ts +++ b/cli/prompt_secret.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isWindows } from "@std/internal/os"; const encoder = new TextEncoder(); diff --git a/cli/prompt_secret_test.ts b/cli/prompt_secret_test.ts index 2215f33ad488..2004678451f1 100644 --- a/cli/prompt_secret_test.ts +++ b/cli/prompt_secret_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { promptSecret } from "./prompt_secret.ts"; diff --git a/cli/testdata/unicode_width_crate/src/lib.rs b/cli/testdata/unicode_width_crate/src/lib.rs index c699a664d878..7624eb917d74 100644 --- a/cli/testdata/unicode_width_crate/src/lib.rs +++ b/cli/testdata/unicode_width_crate/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. use libc::c_char; use std::ffi::CStr; diff --git a/cli/unicode_width.ts b/cli/unicode_width.ts index fad246f7f356..064d90ae81b8 100644 --- a/cli/unicode_width.ts +++ b/cli/unicode_width.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // Ported from unicode_width rust crate, Copyright (c) 2015 The Rust Project Developers. MIT license. diff --git a/cli/unicode_width_test.ts b/cli/unicode_width_test.ts index f8113e620f2f..806cc3da46d6 100644 --- a/cli/unicode_width_test.ts +++ b/cli/unicode_width_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { unicodeWidth } from "./unicode_width.ts"; import { assertEquals } from "@std/assert"; diff --git a/cli/unstable_ansi.ts b/cli/unstable_ansi.ts index 375f460b9831..cf81177d24d8 100644 --- a/cli/unstable_ansi.ts +++ b/cli/unstable_ansi.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Ansi is a module that offers export function s and variables that returns diff --git a/cli/unstable_progress_bar.ts b/cli/unstable_progress_bar.ts index cd18da086997..5ab0a7b20361 100644 --- a/cli/unstable_progress_bar.ts +++ b/cli/unstable_progress_bar.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { formatUnitFraction } from "./_unit.ts"; diff --git a/cli/unstable_progress_bar_stream.ts b/cli/unstable_progress_bar_stream.ts index 9390b4dc19a8..0384db880430 100644 --- a/cli/unstable_progress_bar_stream.ts +++ b/cli/unstable_progress_bar_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { ProgressBar, diff --git a/cli/unstable_progress_bar_stream_test.ts b/cli/unstable_progress_bar_stream_test.ts index 6f8d6886340a..a81cfbaa9e68 100644 --- a/cli/unstable_progress_bar_stream_test.ts +++ b/cli/unstable_progress_bar_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { ProgressBarStream } from "./unstable_progress_bar_stream.ts"; diff --git a/cli/unstable_progress_bar_test.ts b/cli/unstable_progress_bar_test.ts index a9603e48bad9..ca41a079f731 100644 --- a/cli/unstable_progress_bar_test.ts +++ b/cli/unstable_progress_bar_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { ProgressBar } from "./unstable_progress_bar.ts"; diff --git a/cli/unstable_prompt_multiple_select.ts b/cli/unstable_prompt_multiple_select.ts index 159884b03ab5..27faf971eebe 100644 --- a/cli/unstable_prompt_multiple_select.ts +++ b/cli/unstable_prompt_multiple_select.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { handlePromptSelect } from "./_prompt_select.ts"; diff --git a/cli/unstable_prompt_multiple_select_test.ts b/cli/unstable_prompt_multiple_select_test.ts index daac87ac4d8a..dcff09333f5a 100644 --- a/cli/unstable_prompt_multiple_select_test.ts +++ b/cli/unstable_prompt_multiple_select_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { promptMultipleSelect } from "./unstable_prompt_multiple_select.ts"; diff --git a/cli/unstable_prompt_select.ts b/cli/unstable_prompt_select.ts index 590a247344c1..e60fb1aa1606 100644 --- a/cli/unstable_prompt_select.ts +++ b/cli/unstable_prompt_select.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { handlePromptSelect } from "./_prompt_select.ts"; diff --git a/cli/unstable_prompt_select_test.ts b/cli/unstable_prompt_select_test.ts index 6c98775bc37b..a31078995842 100644 --- a/cli/unstable_prompt_select_test.ts +++ b/cli/unstable_prompt_select_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { promptSelect } from "./unstable_prompt_select.ts"; diff --git a/cli/unstable_spinner.ts b/cli/unstable_spinner.ts index 6d0c103e3089..095c6be269c6 100644 --- a/cli/unstable_spinner.ts +++ b/cli/unstable_spinner.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. const encoder = new TextEncoder(); diff --git a/cli/unstable_spinner_test.ts b/cli/unstable_spinner_test.ts index 5871d1b76da8..b8c6575d2be9 100644 --- a/cli/unstable_spinner_test.ts +++ b/cli/unstable_spinner_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { Spinner } from "./unstable_spinner.ts"; import { restore, stub } from "@std/testing/mock"; diff --git a/collections/_utils.ts b/collections/_utils.ts index 74fc6fbc31c1..f14c625198f5 100644 --- a/collections/_utils.ts +++ b/collections/_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/_utils_test.ts b/collections/_utils_test.ts index fefbf7224df7..cb7b4bc5eff5 100644 --- a/collections/_utils_test.ts +++ b/collections/_utils_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { filterInPlace } from "./_utils.ts"; import { assert, assertEquals } from "@std/assert"; diff --git a/collections/aggregate_groups.ts b/collections/aggregate_groups.ts index bcbb7758476e..e9ca10440c60 100644 --- a/collections/aggregate_groups.ts +++ b/collections/aggregate_groups.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { mapEntries } from "./map_entries.ts"; diff --git a/collections/aggregate_groups_test.ts b/collections/aggregate_groups_test.ts index efad4fa56875..9f693106fdc1 100644 --- a/collections/aggregate_groups_test.ts +++ b/collections/aggregate_groups_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { aggregateGroups } from "./aggregate_groups.ts"; diff --git a/collections/associate_by.ts b/collections/associate_by.ts index 6dc9134882a5..7035936c86a7 100644 --- a/collections/associate_by.ts +++ b/collections/associate_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/associate_by_test.ts b/collections/associate_by_test.ts index f8a33dfaa27b..4d3fc757dcec 100644 --- a/collections/associate_by_test.ts +++ b/collections/associate_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { associateBy } from "./associate_by.ts"; diff --git a/collections/associate_with.ts b/collections/associate_with.ts index b09ca9444928..94034e2f1be0 100644 --- a/collections/associate_with.ts +++ b/collections/associate_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/associate_with_test.ts b/collections/associate_with_test.ts index 4e34aa85e28a..2d1fcb3d19cd 100644 --- a/collections/associate_with_test.ts +++ b/collections/associate_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { associateWith } from "./associate_with.ts"; diff --git a/collections/chunk.ts b/collections/chunk.ts index 3cfb5db9ce08..dd4f39911db4 100644 --- a/collections/chunk.ts +++ b/collections/chunk.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/chunk_test.ts b/collections/chunk_test.ts index 445944687f06..93659b3768c4 100644 --- a/collections/chunk_test.ts +++ b/collections/chunk_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { chunk } from "./chunk.ts"; diff --git a/collections/deep_merge.ts b/collections/deep_merge.ts index 48b8acbaf6e2..db3df770be79 100644 --- a/collections/deep_merge.ts +++ b/collections/deep_merge.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { filterInPlace } from "./_utils.ts"; diff --git a/collections/deep_merge_test.ts b/collections/deep_merge_test.ts index cdcbb8a364d7..e9378b45e333 100644 --- a/collections/deep_merge_test.ts +++ b/collections/deep_merge_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertStrictEquals } from "@std/assert"; import { deepMerge } from "./deep_merge.ts"; diff --git a/collections/distinct.ts b/collections/distinct.ts index 39d5b31f9df8..96932558c70b 100644 --- a/collections/distinct.ts +++ b/collections/distinct.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/distinct_by.ts b/collections/distinct_by.ts index 94482cc0e3ce..99dcd46099de 100644 --- a/collections/distinct_by.ts +++ b/collections/distinct_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/distinct_by_test.ts b/collections/distinct_by_test.ts index 8fc4d8568bfd..064e6c7c30b5 100644 --- a/collections/distinct_by_test.ts +++ b/collections/distinct_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { distinctBy } from "./distinct_by.ts"; diff --git a/collections/distinct_test.ts b/collections/distinct_test.ts index c2c067638014..c1bc312a43cf 100644 --- a/collections/distinct_test.ts +++ b/collections/distinct_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { distinct } from "./distinct.ts"; diff --git a/collections/drop_last_while.ts b/collections/drop_last_while.ts index f65b0cb3b788..41d2d14cabe3 100644 --- a/collections/drop_last_while.ts +++ b/collections/drop_last_while.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/drop_last_while_test.ts b/collections/drop_last_while_test.ts index ec1e0883fe67..21ce4972704a 100644 --- a/collections/drop_last_while_test.ts +++ b/collections/drop_last_while_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { dropLastWhile } from "./drop_last_while.ts"; import { assertEquals } from "@std/assert"; diff --git a/collections/drop_while.ts b/collections/drop_while.ts index 3b345d613f1c..bf0e3e5a2a1b 100644 --- a/collections/drop_while.ts +++ b/collections/drop_while.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/drop_while_test.ts b/collections/drop_while_test.ts index f6eacb907dee..3bacb6d8056e 100644 --- a/collections/drop_while_test.ts +++ b/collections/drop_while_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { dropWhile } from "./drop_while.ts"; diff --git a/collections/filter_entries.ts b/collections/filter_entries.ts index 0d48c50e7225..20f6cdcee609 100644 --- a/collections/filter_entries.ts +++ b/collections/filter_entries.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/filter_entries_test.ts b/collections/filter_entries_test.ts index 21af939ae08c..32d7130a53b2 100644 --- a/collections/filter_entries_test.ts +++ b/collections/filter_entries_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { filterEntries } from "./filter_entries.ts"; diff --git a/collections/filter_keys.ts b/collections/filter_keys.ts index aac6851bc325..bcbc5be29dc6 100644 --- a/collections/filter_keys.ts +++ b/collections/filter_keys.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/filter_keys_test.ts b/collections/filter_keys_test.ts index d543aebdfff6..f70cd171af27 100644 --- a/collections/filter_keys_test.ts +++ b/collections/filter_keys_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { filterKeys } from "./filter_keys.ts"; diff --git a/collections/filter_values.ts b/collections/filter_values.ts index 734cc2409b7e..86c764902c5d 100644 --- a/collections/filter_values.ts +++ b/collections/filter_values.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/filter_values_test.ts b/collections/filter_values_test.ts index c415e2286d5c..74efb096b135 100644 --- a/collections/filter_values_test.ts +++ b/collections/filter_values_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { filterValues } from "./filter_values.ts"; diff --git a/collections/find_single.ts b/collections/find_single.ts index d9e94dd3af18..a009d2ff13f6 100644 --- a/collections/find_single.ts +++ b/collections/find_single.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/find_single_test.ts b/collections/find_single_test.ts index b627416b4ed3..cffb4f98da28 100644 --- a/collections/find_single_test.ts +++ b/collections/find_single_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { findSingle } from "./find_single.ts"; diff --git a/collections/first_not_nullish_of.ts b/collections/first_not_nullish_of.ts index 01cc329aba4f..1859ccc49f89 100644 --- a/collections/first_not_nullish_of.ts +++ b/collections/first_not_nullish_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/first_not_nullish_of_test.ts b/collections/first_not_nullish_of_test.ts index 32fdf4fad4a1..50650fb8a74f 100644 --- a/collections/first_not_nullish_of_test.ts +++ b/collections/first_not_nullish_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { firstNotNullishOf } from "./first_not_nullish_of.ts"; diff --git a/collections/includes_value.ts b/collections/includes_value.ts index 96e5ccd72932..56f54566b9af 100644 --- a/collections/includes_value.ts +++ b/collections/includes_value.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/includes_value_test.ts b/collections/includes_value_test.ts index 802b5b90bd33..22ad99a1966d 100644 --- a/collections/includes_value_test.ts +++ b/collections/includes_value_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { includesValue } from "./includes_value.ts"; import { assert, assertEquals } from "@std/assert"; diff --git a/collections/intersect.ts b/collections/intersect.ts index eeca13b7e2e0..714813d83aba 100644 --- a/collections/intersect.ts +++ b/collections/intersect.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/intersect_test.ts b/collections/intersect_test.ts index a82c2523e55b..42c3157e999e 100644 --- a/collections/intersect_test.ts +++ b/collections/intersect_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { intersect } from "./intersect.ts"; diff --git a/collections/invert.ts b/collections/invert.ts index fa8bfc210c4e..1bb3b9513239 100644 --- a/collections/invert.ts +++ b/collections/invert.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Return type for {@linkcode invert}. */ diff --git a/collections/invert_by.ts b/collections/invert_by.ts index 2c0dccd00ee4..4f6d112dec7c 100644 --- a/collections/invert_by.ts +++ b/collections/invert_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Return type for {@linkcode invertBy}. */ diff --git a/collections/invert_by_test.ts b/collections/invert_by_test.ts index 1304ddbbe510..1cab3661d031 100644 --- a/collections/invert_by_test.ts +++ b/collections/invert_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { invertBy } from "./invert_by.ts"; diff --git a/collections/invert_test.ts b/collections/invert_test.ts index 2b1876d0980f..82d3eeb53beb 100644 --- a/collections/invert_test.ts +++ b/collections/invert_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { invert, type InvertResult } from "./invert.ts"; diff --git a/collections/join_to_string.ts b/collections/join_to_string.ts index e5e3b675bed6..4bd833190dcf 100644 --- a/collections/join_to_string.ts +++ b/collections/join_to_string.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode joinToString}. */ diff --git a/collections/join_to_string_test.ts b/collections/join_to_string_test.ts index 6ee12ac7d9dd..00eb82634a99 100644 --- a/collections/join_to_string_test.ts +++ b/collections/join_to_string_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { joinToString } from "./join_to_string.ts"; diff --git a/collections/map_entries.ts b/collections/map_entries.ts index 9b36f9fc766c..9f3a062b97f6 100644 --- a/collections/map_entries.ts +++ b/collections/map_entries.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/map_entries_test.ts b/collections/map_entries_test.ts index 529c2031286b..9b113ad01370 100644 --- a/collections/map_entries_test.ts +++ b/collections/map_entries_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { mapEntries } from "./map_entries.ts"; diff --git a/collections/map_keys.ts b/collections/map_keys.ts index fe8c45b54fcb..9cd19df4b099 100644 --- a/collections/map_keys.ts +++ b/collections/map_keys.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/map_keys_test.ts b/collections/map_keys_test.ts index d11d3cae1ba4..9cbecc9f9a1b 100644 --- a/collections/map_keys_test.ts +++ b/collections/map_keys_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { mapKeys } from "./map_keys.ts"; diff --git a/collections/map_not_nullish.ts b/collections/map_not_nullish.ts index 0ffa87994410..b28ff5ac10f2 100644 --- a/collections/map_not_nullish.ts +++ b/collections/map_not_nullish.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/map_not_nullish_test.ts b/collections/map_not_nullish_test.ts index e6efbc4ae786..6c25ec280d3b 100644 --- a/collections/map_not_nullish_test.ts +++ b/collections/map_not_nullish_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { mapNotNullish } from "./map_not_nullish.ts"; diff --git a/collections/map_values.ts b/collections/map_values.ts index 8e4525c70fe4..f12df1cf76e3 100644 --- a/collections/map_values.ts +++ b/collections/map_values.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/map_values_test.ts b/collections/map_values_test.ts index aab0df51b879..44c1c312b75c 100644 --- a/collections/map_values_test.ts +++ b/collections/map_values_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { mapValues } from "./map_values.ts"; diff --git a/collections/max_by.ts b/collections/max_by.ts index 968875e2d824..6eb864a05d21 100644 --- a/collections/max_by.ts +++ b/collections/max_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/max_by_test.ts b/collections/max_by_test.ts index e5b4b95a0e83..4ae2538994eb 100644 --- a/collections/max_by_test.ts +++ b/collections/max_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { maxBy } from "./max_by.ts"; diff --git a/collections/max_of.ts b/collections/max_of.ts index 17a5101c91d6..ea621eff2ec1 100644 --- a/collections/max_of.ts +++ b/collections/max_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/max_of_test.ts b/collections/max_of_test.ts index f93852aa6ada..e15ddfdb1fb1 100644 --- a/collections/max_of_test.ts +++ b/collections/max_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { maxOf } from "./max_of.ts"; import { assertEquals } from "@std/assert"; diff --git a/collections/max_with.ts b/collections/max_with.ts index 62d9ebb3ce4b..8ab54b61eb4c 100644 --- a/collections/max_with.ts +++ b/collections/max_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/max_with_test.ts b/collections/max_with_test.ts index 33e5e38c53c8..eac7cee6903b 100644 --- a/collections/max_with_test.ts +++ b/collections/max_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { maxWith } from "./max_with.ts"; diff --git a/collections/min_by.ts b/collections/min_by.ts index dee32c2ee4df..e1983335b1bb 100644 --- a/collections/min_by.ts +++ b/collections/min_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/min_by_test.ts b/collections/min_by_test.ts index b52c338e411c..f6c79656efec 100644 --- a/collections/min_by_test.ts +++ b/collections/min_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { minBy } from "./min_by.ts"; diff --git a/collections/min_of.ts b/collections/min_of.ts index 0cbe51d9202a..538f02076065 100644 --- a/collections/min_of.ts +++ b/collections/min_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/min_of_test.ts b/collections/min_of_test.ts index 7f98528ea508..6c583c257df2 100644 --- a/collections/min_of_test.ts +++ b/collections/min_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { minOf } from "./min_of.ts"; import { assertEquals } from "@std/assert"; diff --git a/collections/min_with.ts b/collections/min_with.ts index 44e1515ce6f1..443da6e35068 100644 --- a/collections/min_with.ts +++ b/collections/min_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/min_with_test.ts b/collections/min_with_test.ts index ab37482454c7..8bdc2b6e266f 100644 --- a/collections/min_with_test.ts +++ b/collections/min_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { minWith } from "./min_with.ts"; diff --git a/collections/mod.ts b/collections/mod.ts index e76c656ba911..d74a8ed54b96 100644 --- a/collections/mod.ts +++ b/collections/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/omit.ts b/collections/omit.ts index d8c51fc7fd2b..575728e2cfb2 100644 --- a/collections/omit.ts +++ b/collections/omit.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/omit_test.ts b/collections/omit_test.ts index b1946ff38c53..87a9b81966e9 100644 --- a/collections/omit_test.ts +++ b/collections/omit_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertNotStrictEquals } from "@std/assert"; import { omit } from "./omit.ts"; diff --git a/collections/partition.ts b/collections/partition.ts index 1aa03a469cc9..09a4d2137031 100644 --- a/collections/partition.ts +++ b/collections/partition.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/partition_entries.ts b/collections/partition_entries.ts index a136171ebfc8..fc66dcaceb3f 100644 --- a/collections/partition_entries.ts +++ b/collections/partition_entries.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/partition_entries_test.ts b/collections/partition_entries_test.ts index 057b625fd26f..d4fc2d1c835c 100644 --- a/collections/partition_entries_test.ts +++ b/collections/partition_entries_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { partitionEntries } from "./partition_entries.ts"; diff --git a/collections/partition_test.ts b/collections/partition_test.ts index 49a2c1c1a58f..79b06dfc01e0 100644 --- a/collections/partition_test.ts +++ b/collections/partition_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { partition } from "./partition.ts"; diff --git a/collections/permutations.ts b/collections/permutations.ts index 2570425197d2..cbe34c4fbe0b 100644 --- a/collections/permutations.ts +++ b/collections/permutations.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/permutations_test.ts b/collections/permutations_test.ts index 17360161f4a0..9f87f1d83206 100644 --- a/collections/permutations_test.ts +++ b/collections/permutations_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { permutations } from "./permutations.ts"; diff --git a/collections/pick.ts b/collections/pick.ts index 90f117a230d4..a90ebaef5383 100644 --- a/collections/pick.ts +++ b/collections/pick.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/pick_test.ts b/collections/pick_test.ts index 19465026e1a6..3c0a7308d0fd 100644 --- a/collections/pick_test.ts +++ b/collections/pick_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertNotStrictEquals } from "@std/assert"; import { pick } from "./pick.ts"; diff --git a/collections/reduce_groups.ts b/collections/reduce_groups.ts index 2df6cdb2b3f7..191cdcc5a498 100644 --- a/collections/reduce_groups.ts +++ b/collections/reduce_groups.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { mapValues } from "./map_values.ts"; diff --git a/collections/reduce_groups_test.ts b/collections/reduce_groups_test.ts index b8b152c1a190..59db8852dc26 100644 --- a/collections/reduce_groups_test.ts +++ b/collections/reduce_groups_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { reduceGroups } from "./reduce_groups.ts"; diff --git a/collections/running_reduce.ts b/collections/running_reduce.ts index ce1445f1b77a..13031797bd5b 100644 --- a/collections/running_reduce.ts +++ b/collections/running_reduce.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/running_reduce_test.ts b/collections/running_reduce_test.ts index b14d50fea4c8..766eb5f583aa 100644 --- a/collections/running_reduce_test.ts +++ b/collections/running_reduce_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { runningReduce } from "./running_reduce.ts"; diff --git a/collections/sample.ts b/collections/sample.ts index 07206e287b4d..80c4a03b614c 100644 --- a/collections/sample.ts +++ b/collections/sample.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/sample_test.ts b/collections/sample_test.ts index fc51534da86c..39fe1b89923b 100644 --- a/collections/sample_test.ts +++ b/collections/sample_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { sample } from "./sample.ts"; diff --git a/collections/sliding_windows.ts b/collections/sliding_windows.ts index 87f3ad5bb40c..afb862fdf69a 100644 --- a/collections/sliding_windows.ts +++ b/collections/sliding_windows.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode slidingWindows}. */ diff --git a/collections/sliding_windows_test.ts b/collections/sliding_windows_test.ts index af32ae35bba6..b1711f30509a 100644 --- a/collections/sliding_windows_test.ts +++ b/collections/sliding_windows_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { slidingWindows } from "./sliding_windows.ts"; diff --git a/collections/sort_by.ts b/collections/sort_by.ts index a9c2d1b474d3..c9d9258d954b 100644 --- a/collections/sort_by.ts +++ b/collections/sort_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Order option for {@linkcode SortByOptions}. */ diff --git a/collections/sort_by_test.ts b/collections/sort_by_test.ts index 3260fa67caae..896e2ee7bd11 100644 --- a/collections/sort_by_test.ts +++ b/collections/sort_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { sortBy } from "./sort_by.ts"; diff --git a/collections/sum_of.ts b/collections/sum_of.ts index 349a31268fd7..e0237badcf2f 100644 --- a/collections/sum_of.ts +++ b/collections/sum_of.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/sum_of_test.ts b/collections/sum_of_test.ts index f20b4ac3ae81..21876f6c8a5a 100644 --- a/collections/sum_of_test.ts +++ b/collections/sum_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { sumOf } from "./sum_of.ts"; diff --git a/collections/take_last_while.ts b/collections/take_last_while.ts index 5d11ef28113a..d50efdae6d2c 100644 --- a/collections/take_last_while.ts +++ b/collections/take_last_while.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/take_last_while_test.ts b/collections/take_last_while_test.ts index 74557b91f69b..6d032e53c840 100644 --- a/collections/take_last_while_test.ts +++ b/collections/take_last_while_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { takeLastWhile } from "./take_last_while.ts"; diff --git a/collections/take_while.ts b/collections/take_while.ts index ba9b51cadf6a..b02dcac0ec23 100644 --- a/collections/take_while.ts +++ b/collections/take_while.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/take_while_test.ts b/collections/take_while_test.ts index ff27e261b9e3..00e9bc32adce 100644 --- a/collections/take_while_test.ts +++ b/collections/take_while_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { takeWhile } from "./take_while.ts"; diff --git a/collections/union.ts b/collections/union.ts index 4b633faf1807..983b8849249a 100644 --- a/collections/union.ts +++ b/collections/union.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/union_test.ts b/collections/union_test.ts index 12a0916298d3..edf37e5e42a2 100644 --- a/collections/union_test.ts +++ b/collections/union_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { union } from "./union.ts"; diff --git a/collections/unstable_binary_search.ts b/collections/unstable_binary_search.ts index 1842e2466e83..88d05562a785 100644 --- a/collections/unstable_binary_search.ts +++ b/collections/unstable_binary_search.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/unstable_binary_search_test.ts b/collections/unstable_binary_search_test.ts index cfa1445adafa..6b96ff3da581 100644 --- a/collections/unstable_binary_search_test.ts +++ b/collections/unstable_binary_search_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { binarySearch } from "./unstable_binary_search.ts"; import { assertSpyCalls, spy } from "@std/testing/mock"; diff --git a/collections/unstable_cycle.ts b/collections/unstable_cycle.ts index 8d550cbd5552..998562fb6ff0 100644 --- a/collections/unstable_cycle.ts +++ b/collections/unstable_cycle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/unstable_cycle_test.ts b/collections/unstable_cycle_test.ts index 73a0f4ad5f3e..f9fb285081ba 100644 --- a/collections/unstable_cycle_test.ts +++ b/collections/unstable_cycle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { cycle } from "./unstable_cycle.ts"; diff --git a/collections/unzip.ts b/collections/unzip.ts index 0c0af9faa9b7..58148d5765a3 100644 --- a/collections/unzip.ts +++ b/collections/unzip.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/unzip_test.ts b/collections/unzip_test.ts index 51ea997f046b..8daf1443fad6 100644 --- a/collections/unzip_test.ts +++ b/collections/unzip_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { unzip } from "./unzip.ts"; diff --git a/collections/without_all.ts b/collections/without_all.ts index f980fa3eaf6d..6cfed608df45 100644 --- a/collections/without_all.ts +++ b/collections/without_all.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/collections/without_all_test.ts b/collections/without_all_test.ts index 0dd313a652cf..ce0c7e483681 100644 --- a/collections/without_all_test.ts +++ b/collections/without_all_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { withoutAll } from "./without_all.ts"; diff --git a/collections/zip.ts b/collections/zip.ts index 61677b772c71..facd261c5037 100644 --- a/collections/zip.ts +++ b/collections/zip.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { minOf } from "./min_of.ts"; diff --git a/collections/zip_test.ts b/collections/zip_test.ts index 2bcd9994bcd4..16a02ec12313 100644 --- a/collections/zip_test.ts +++ b/collections/zip_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { zip } from "./zip.ts"; diff --git a/crypto/_benches/bench.ts b/crypto/_benches/bench.ts index 06ea9ba53ccc..bc0a164e9e63 100644 --- a/crypto/_benches/bench.ts +++ b/crypto/_benches/bench.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno bench -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { crypto as stdCrypto, type DIGEST_ALGORITHM_NAMES } from "../mod.ts"; import nodeCrypto from "node:crypto"; diff --git a/crypto/_wasm/lib/deno_std_wasm_crypto.mjs b/crypto/_wasm/lib/deno_std_wasm_crypto.mjs index 2c05a695f4a5..f1304ed0ff91 100644 --- a/crypto/_wasm/lib/deno_std_wasm_crypto.mjs +++ b/crypto/_wasm/lib/deno_std_wasm_crypto.mjs @@ -4,7 +4,7 @@ // deno-fmt-ignore-file // @ts-self-types="./deno_std_wasm_crypto.d.mts" -// source-hash: d95bd455345df847c7e21b7e9c6e95daac2b615e +// source-hash: a14f834506611f6189f040ce4b6c86e0f86386cd import * as imports from "./deno_std_wasm_crypto.internal.mjs"; const bytes = base64decode("\ AGFzbQEAAAABjAInYAJ/fwF/YAN/f38AYAJ/fwBgA39/fwF/YAF/AGAEf39/fwBgBX9/f39/AGAFf3\ diff --git a/crypto/_wasm/mod.ts b/crypto/_wasm/mod.ts index 8a5ed5dcab42..080cabf67cca 100644 --- a/crypto/_wasm/mod.ts +++ b/crypto/_wasm/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export { digest, DigestContext } from "./lib/deno_std_wasm_crypto.mjs"; /** diff --git a/crypto/_wasm/src/digest.rs b/crypto/_wasm/src/digest.rs index 2148e374ee76..ed2fd8ca5966 100644 --- a/crypto/_wasm/src/digest.rs +++ b/crypto/_wasm/src/digest.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. use digest::{Digest, DynDigest, ExtendableOutput, Update}; use typenum::{U16, U20, U28, U32, U48}; diff --git a/crypto/_wasm/src/fnv.rs b/crypto/_wasm/src/fnv.rs index 9593f028bcd7..4021149fdf2d 100644 --- a/crypto/_wasm/src/fnv.rs +++ b/crypto/_wasm/src/fnv.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. const BASIS_32: u32 = 2166136261; const PRIME_32: u32 = 16777619; diff --git a/crypto/_wasm/src/lib.rs b/crypto/_wasm/src/lib.rs index f9fca8e292c4..59b666d255f4 100644 --- a/crypto/_wasm/src/lib.rs +++ b/crypto/_wasm/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. use derive_more::{From, Into}; use js_sys::Uint8Array; use wasm_bindgen::prelude::*; diff --git a/crypto/_wasm/test.ts b/crypto/_wasm/test.ts index 6653f5b6d78e..9c437c9fff09 100644 --- a/crypto/_wasm/test.ts +++ b/crypto/_wasm/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { digest } from "./mod.ts"; diff --git a/crypto/crypto.ts b/crypto/crypto.ts index 5b651ad45a71..5283e5876cf7 100644 --- a/crypto/crypto.ts +++ b/crypto/crypto.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/crypto/crypto_test.ts b/crypto/crypto_test.ts index 8f00d5975b22..128298811829 100644 --- a/crypto/crypto_test.ts +++ b/crypto/crypto_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/crypto/mod.ts b/crypto/mod.ts index 9a09e29a2820..43113d4a0c5e 100644 --- a/crypto/mod.ts +++ b/crypto/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/crypto/testdata/digest_large_inputs.ts b/crypto/testdata/digest_large_inputs.ts index e9590e018c56..b5fb26e651c8 100644 --- a/crypto/testdata/digest_large_inputs.ts +++ b/crypto/testdata/digest_large_inputs.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { crypto as stdCrypto } from "../crypto.ts"; import { __wbindgen_memory } from "../_wasm/lib/deno_std_wasm_crypto.internal.mjs"; import { encodeHex } from "../../encoding/hex.ts"; diff --git a/crypto/testdata/digest_many_calls.ts b/crypto/testdata/digest_many_calls.ts index d92f95be5c96..e3a9686f0faf 100644 --- a/crypto/testdata/digest_many_calls.ts +++ b/crypto/testdata/digest_many_calls.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { crypto as stdCrypto } from "../crypto.ts"; import { __wbindgen_memory } from "../_wasm/lib/deno_std_wasm_crypto.internal.mjs"; import { encodeHex } from "../../encoding/hex.ts"; diff --git a/crypto/timing_safe_equal.ts b/crypto/timing_safe_equal.ts index e29b906fe59f..05cf15764cee 100644 --- a/crypto/timing_safe_equal.ts +++ b/crypto/timing_safe_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. function toDataView( diff --git a/crypto/timing_safe_equal_test.ts b/crypto/timing_safe_equal_test.ts index dc8d7adf42e8..66dd0ad9059b 100644 --- a/crypto/timing_safe_equal_test.ts +++ b/crypto/timing_safe_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { timingSafeEqual } from "./timing_safe_equal.ts"; diff --git a/csv/_io.ts b/csv/_io.ts index dd164927ec86..5e80959c55b0 100644 --- a/csv/_io.ts +++ b/csv/_io.ts @@ -2,7 +2,7 @@ // https://github.com/golang/go/blob/go1.12.5/src/encoding/csv/ // Copyright 2011 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { codePointLength } from "./_shared.ts"; diff --git a/csv/_shared.ts b/csv/_shared.ts index f25bf9ec135f..0e5c0e9b52a5 100644 --- a/csv/_shared.ts +++ b/csv/_shared.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Gives the length of a string in Unicode code points diff --git a/csv/mod.ts b/csv/mod.ts index f4b20660da52..9758a2dc0318 100644 --- a/csv/mod.ts +++ b/csv/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/csv/parse.ts b/csv/parse.ts index 28d8ea380c40..2ad28afd411e 100644 --- a/csv/parse.ts +++ b/csv/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/csv/parse_stream.ts b/csv/parse_stream.ts index 2ca523e8d101..b94b9d9e0687 100644 --- a/csv/parse_stream.ts +++ b/csv/parse_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/csv/parse_stream_test.ts b/csv/parse_stream_test.ts index 906cff0ed7ce..7eb95feff5d0 100644 --- a/csv/parse_stream_test.ts +++ b/csv/parse_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { CsvParseStream } from "./parse_stream.ts"; import type { CsvParseStreamOptions } from "./parse_stream.ts"; import { assert, assertEquals, assertRejects } from "@std/assert"; diff --git a/csv/parse_test.ts b/csv/parse_test.ts index 6b2d482ec21d..1912758b8100 100644 --- a/csv/parse_test.ts +++ b/csv/parse_test.ts @@ -2,7 +2,7 @@ // https://github.com/golang/go/blob/2cc15b1/src/encoding/csv/reader_test.go // Copyright 2011 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { parse, type ParseOptions } from "./parse.ts"; diff --git a/csv/stringify.ts b/csv/stringify.ts index 6ab7a33da081..a15855c3f4e9 100644 --- a/csv/stringify.ts +++ b/csv/stringify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Array index or record key corresponding to a value for a data object. */ diff --git a/csv/stringify_stream.ts b/csv/stringify_stream.ts index 93070bf56f8b..5301f8f75674 100644 --- a/csv/stringify_stream.ts +++ b/csv/stringify_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { stringify } from "./stringify.ts"; diff --git a/csv/stringify_stream_test.ts b/csv/stringify_stream_test.ts index b6e5de7cf0a7..89c6d74f3b64 100644 --- a/csv/stringify_stream_test.ts +++ b/csv/stringify_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { CsvStringifyStream } from "./stringify_stream.ts"; import { assertEquals, assertRejects } from "@std/assert"; diff --git a/csv/stringify_test.ts b/csv/stringify_test.ts index a1ce042a9719..1bd93b64b8d3 100644 --- a/csv/stringify_test.ts +++ b/csv/stringify_test.ts @@ -2,7 +2,7 @@ // https://github.com/golang/go/blob/2cc15b1/src/encoding/csv/reader_test.go // Copyright 2011 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/csv/unstable_stringify.ts b/csv/unstable_stringify.ts index 44fb5281c41c..ce1d041a6836 100644 --- a/csv/unstable_stringify.ts +++ b/csv/unstable_stringify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { stringify as stableStringify } from "./stringify.ts"; diff --git a/csv/unstable_stringify_test.ts b/csv/unstable_stringify_test.ts index 441d3da74a03..f9ab4622be30 100644 --- a/csv/unstable_stringify_test.ts +++ b/csv/unstable_stringify_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { stringify } from "./unstable_stringify.ts"; diff --git a/data_structures/_binary_search_node.ts b/data_structures/_binary_search_node.ts index f91ba2ff4911..d16787a7d097 100644 --- a/data_structures/_binary_search_node.ts +++ b/data_structures/_binary_search_node.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export type Direction = "left" | "right"; diff --git a/data_structures/_binary_search_node_test.ts b/data_structures/_binary_search_node_test.ts index 161eed04ea16..490446a52c80 100644 --- a/data_structures/_binary_search_node_test.ts +++ b/data_structures/_binary_search_node_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertStrictEquals } from "@std/assert"; import { BinarySearchNode } from "./_binary_search_node.ts"; diff --git a/data_structures/_binary_search_tree_internals.ts b/data_structures/_binary_search_tree_internals.ts index be6d4d6035f4..f015bb04f99e 100644 --- a/data_structures/_binary_search_tree_internals.ts +++ b/data_structures/_binary_search_tree_internals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { BinarySearchNode } from "./_binary_search_node.ts"; diff --git a/data_structures/_red_black_node.ts b/data_structures/_red_black_node.ts index d5e9ec26a700..65ebb1927fd6 100644 --- a/data_structures/_red_black_node.ts +++ b/data_structures/_red_black_node.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { BinarySearchNode, type Direction } from "./_binary_search_node.ts"; diff --git a/data_structures/_red_black_node_test.ts b/data_structures/_red_black_node_test.ts index bd4d1374778d..031fbf71fb58 100644 --- a/data_structures/_red_black_node_test.ts +++ b/data_structures/_red_black_node_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertStrictEquals } from "@std/assert"; import { RedBlackNode } from "./_red_black_node.ts"; diff --git a/data_structures/_test_utils.ts b/data_structures/_test_utils.ts index 3c26b5e66f08..dc6dec00c1b2 100644 --- a/data_structures/_test_utils.ts +++ b/data_structures/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export class MyMath { multiply(a: number, b: number): number { return a * b; diff --git a/data_structures/binary_heap.ts b/data_structures/binary_heap.ts index a3fc19ecf09f..c18ffffab3c6 100644 --- a/data_structures/binary_heap.ts +++ b/data_structures/binary_heap.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { descend } from "./comparators.ts"; diff --git a/data_structures/binary_heap_test.ts b/data_structures/binary_heap_test.ts index 1aa667b28ee8..d34e97dfb940 100644 --- a/data_structures/binary_heap_test.ts +++ b/data_structures/binary_heap_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { BinaryHeap } from "./binary_heap.ts"; import { ascend, descend } from "./comparators.ts"; diff --git a/data_structures/binary_search_tree.ts b/data_structures/binary_search_tree.ts index 209653d79ec8..e4356fcc3ae8 100644 --- a/data_structures/binary_search_tree.ts +++ b/data_structures/binary_search_tree.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { ascend } from "./comparators.ts"; diff --git a/data_structures/binary_search_tree_test.ts b/data_structures/binary_search_tree_test.ts index 4ae14e4f170d..eed4c12fc934 100644 --- a/data_structures/binary_search_tree_test.ts +++ b/data_structures/binary_search_tree_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/data_structures/comparators.ts b/data_structures/comparators.ts index 00377b19bcc9..90cda792b9c0 100644 --- a/data_structures/comparators.ts +++ b/data_structures/comparators.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/data_structures/comparators_test.ts b/data_structures/comparators_test.ts index 967a0eb4ff2f..909f147b5471 100644 --- a/data_structures/comparators_test.ts +++ b/data_structures/comparators_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { ascend, descend } from "./comparators.ts"; diff --git a/data_structures/mod.ts b/data_structures/mod.ts index cd606c43f1bf..4454bdd9fb48 100644 --- a/data_structures/mod.ts +++ b/data_structures/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/data_structures/red_black_tree.ts b/data_structures/red_black_tree.ts index 21c0751ee76b..ba4cc46c699f 100644 --- a/data_structures/red_black_tree.ts +++ b/data_structures/red_black_tree.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { ascend } from "./comparators.ts"; diff --git a/data_structures/red_black_tree_test.ts b/data_structures/red_black_tree_test.ts index 9b518588833f..6eb2b420227c 100644 --- a/data_structures/red_black_tree_test.ts +++ b/data_structures/red_black_tree_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertStrictEquals, assertThrows } from "@std/assert"; import { RedBlackTree } from "./red_black_tree.ts"; import { ascend, descend } from "./comparators.ts"; diff --git a/data_structures/unstable_2d_array.ts b/data_structures/unstable_2d_array.ts index 4e0cf0b86a91..1d7d5be705b8 100644 --- a/data_structures/unstable_2d_array.ts +++ b/data_structures/unstable_2d_array.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; /** diff --git a/data_structures/unstable_2d_array_test.ts b/data_structures/unstable_2d_array_test.ts index 0dfc3f8f85fe..fcac5385ab11 100644 --- a/data_structures/unstable_2d_array_test.ts +++ b/data_structures/unstable_2d_array_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { D2Array } from "./unstable_2d_array.ts"; diff --git a/data_structures/unstable_bidirectional_map.ts b/data_structures/unstable_bidirectional_map.ts index d166de9dd4b4..0d65c0985e34 100644 --- a/data_structures/unstable_bidirectional_map.ts +++ b/data_structures/unstable_bidirectional_map.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/data_structures/unstable_bidirectional_map_test.ts b/data_structures/unstable_bidirectional_map_test.ts index af09719bf712..1d7d49954d36 100644 --- a/data_structures/unstable_bidirectional_map_test.ts +++ b/data_structures/unstable_bidirectional_map_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { BidirectionalMap } from "./unstable_bidirectional_map.ts"; diff --git a/data_structures/unstable_binary_search_tree.ts b/data_structures/unstable_binary_search_tree.ts index 147c11a99dda..10552775859f 100644 --- a/data_structures/unstable_binary_search_tree.ts +++ b/data_structures/unstable_binary_search_tree.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { BinarySearchNode, Direction } from "./_binary_search_node.ts"; diff --git a/data_structures/unstable_binary_search_tree_test.ts b/data_structures/unstable_binary_search_tree_test.ts index 8e12761a5f1f..e1b99dc239b5 100644 --- a/data_structures/unstable_binary_search_tree_test.ts +++ b/data_structures/unstable_binary_search_tree_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "../assert/equals.ts"; import { BinarySearchTree } from "./unstable_binary_search_tree.ts"; diff --git a/datetime/_date_time_formatter.ts b/datetime/_date_time_formatter.ts index 5df590b778a5..dea7cffde213 100644 --- a/datetime/_date_time_formatter.ts +++ b/datetime/_date_time_formatter.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. function digits(value: string | number, count = 2): string { diff --git a/datetime/_date_time_formatter_test.ts b/datetime/_date_time_formatter_test.ts index 6d34788baf33..8d24aca93c55 100644 --- a/datetime/_date_time_formatter_test.ts +++ b/datetime/_date_time_formatter_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { FakeTime } from "@std/testing/time"; import { DateTimeFormatter } from "./_date_time_formatter.ts"; diff --git a/datetime/constants.ts b/datetime/constants.ts index a61a09ab3544..d96f92cbbf02 100644 --- a/datetime/constants.ts +++ b/datetime/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/datetime/day_of_year.ts b/datetime/day_of_year.ts index dcd291384517..85914f65ba98 100644 --- a/datetime/day_of_year.ts +++ b/datetime/day_of_year.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DAY } from "./constants.ts"; diff --git a/datetime/day_of_year_test.ts b/datetime/day_of_year_test.ts index 9d1e7aa6725d..fdd545e03b75 100644 --- a/datetime/day_of_year_test.ts +++ b/datetime/day_of_year_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { dayOfYear, dayOfYearUtc } from "./day_of_year.ts"; diff --git a/datetime/difference.ts b/datetime/difference.ts index 171e4d0a116d..7dfd98b6b088 100644 --- a/datetime/difference.ts +++ b/datetime/difference.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DAY, HOUR, MINUTE, SECOND, WEEK } from "./constants.ts"; diff --git a/datetime/difference_test.ts b/datetime/difference_test.ts index a36207372dc4..b7bf49de7ee9 100644 --- a/datetime/difference_test.ts +++ b/datetime/difference_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { difference } from "./difference.ts"; diff --git a/datetime/format.ts b/datetime/format.ts index 353ac9372bd3..9aeed2f782e8 100644 --- a/datetime/format.ts +++ b/datetime/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DateTimeFormatter } from "./_date_time_formatter.ts"; diff --git a/datetime/format_test.ts b/datetime/format_test.ts index e9915ea14b2d..3823142c7803 100644 --- a/datetime/format_test.ts +++ b/datetime/format_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { format } from "./format.ts"; diff --git a/datetime/is_leap.ts b/datetime/is_leap.ts index 661e6cba25a4..b3030dba11f9 100644 --- a/datetime/is_leap.ts +++ b/datetime/is_leap.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. function isYearNumberALeapYear(yearNumber: number): boolean { diff --git a/datetime/is_leap_test.ts b/datetime/is_leap_test.ts index 6dd53c03e926..dc5a9e96c100 100644 --- a/datetime/is_leap_test.ts +++ b/datetime/is_leap_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { isLeap, isUtcLeap } from "./is_leap.ts"; diff --git a/datetime/mod.ts b/datetime/mod.ts index 64908228ba05..c1f84256955e 100644 --- a/datetime/mod.ts +++ b/datetime/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/datetime/parse.ts b/datetime/parse.ts index 9175833e00e4..cfa6f03b076f 100644 --- a/datetime/parse.ts +++ b/datetime/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DateTimeFormatter } from "./_date_time_formatter.ts"; diff --git a/datetime/parse_test.ts b/datetime/parse_test.ts index 6dfaa3a117fe..d344afbfb1da 100644 --- a/datetime/parse_test.ts +++ b/datetime/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { FakeTime } from "@std/testing/time"; import { parse } from "./parse.ts"; diff --git a/datetime/week_of_year.ts b/datetime/week_of_year.ts index f1b748651105..716cd105e47a 100644 --- a/datetime/week_of_year.ts +++ b/datetime/week_of_year.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DAY, WEEK } from "./constants.ts"; diff --git a/datetime/week_of_year_test.ts b/datetime/week_of_year_test.ts index ac76a13d14c7..c5234ed9cf35 100644 --- a/datetime/week_of_year_test.ts +++ b/datetime/week_of_year_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { weekOfYear } from "./week_of_year.ts"; diff --git a/dotenv/load.ts b/dotenv/load.ts index 546fd4160ecf..6799ad7e2802 100644 --- a/dotenv/load.ts +++ b/dotenv/load.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { loadSync } from "./mod.ts"; diff --git a/dotenv/load_test.ts b/dotenv/load_test.ts index f629277eb53a..e0e3c36e5f74 100644 --- a/dotenv/load_test.ts +++ b/dotenv/load_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as path from "@std/path"; diff --git a/dotenv/mod.ts b/dotenv/mod.ts index c59e2e156bf7..8dd2d6508e44 100644 --- a/dotenv/mod.ts +++ b/dotenv/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Parses and loads environment variables from a `.env` file into the current diff --git a/dotenv/mod_test.ts b/dotenv/mod_test.ts index 5779c1aeb3a1..a3076e44ca52 100644 --- a/dotenv/mod_test.ts +++ b/dotenv/mod_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/dotenv/parse.ts b/dotenv/parse.ts index 0f6c9d99c2d4..63d25b3c8fef 100644 --- a/dotenv/parse.ts +++ b/dotenv/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. type LineParseResult = { key: string; diff --git a/dotenv/parse_test.ts b/dotenv/parse_test.ts index 36d414e67d68..e825b9728284 100644 --- a/dotenv/parse_test.ts +++ b/dotenv/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; diff --git a/dotenv/stringify.ts b/dotenv/stringify.ts index aee30b4298e8..63539cf7e3b4 100644 --- a/dotenv/stringify.ts +++ b/dotenv/stringify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/dotenv/stringify_test.ts b/dotenv/stringify_test.ts index 90c839ca893d..b24a17b1794c 100644 --- a/dotenv/stringify_test.ts +++ b/dotenv/stringify_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { stringify } from "./stringify.ts"; diff --git a/encoding/_common16.ts b/encoding/_common16.ts index bfb91fffd177..400eeb3abb5a 100644 --- a/encoding/_common16.ts +++ b/encoding/_common16.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Uint8Array_ } from "./_types.ts"; export type { Uint8Array_ }; diff --git a/encoding/_common32.ts b/encoding/_common32.ts index a8bbdb054300..667d7e9c2735 100644 --- a/encoding/_common32.ts +++ b/encoding/_common32.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Uint8Array_ } from "./_types.ts"; export type { Uint8Array_ }; diff --git a/encoding/_common64.ts b/encoding/_common64.ts index e0a13c3b7bf2..1b899661622c 100644 --- a/encoding/_common64.ts +++ b/encoding/_common64.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Uint8Array_ } from "./_types.ts"; export type { Uint8Array_ }; diff --git a/encoding/_common_detach.ts b/encoding/_common_detach.ts index d3c11ab1326d..c1c369f07dea 100644 --- a/encoding/_common_detach.ts +++ b/encoding/_common_detach.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Uint8Array_ } from "./_types.ts"; export type { Uint8Array_ }; diff --git a/encoding/_random_slice_stream.ts b/encoding/_random_slice_stream.ts index 1981f365426a..a229455b34c6 100644 --- a/encoding/_random_slice_stream.ts +++ b/encoding/_random_slice_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. type Sliceable = { diff --git a/encoding/_types.ts b/encoding/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/encoding/_types.ts +++ b/encoding/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/encoding/_validate_binary_like.ts b/encoding/_validate_binary_like.ts index 81234af39d00..e9570fddc65d 100644 --- a/encoding/_validate_binary_like.ts +++ b/encoding/_validate_binary_like.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. const encoder = new TextEncoder(); diff --git a/encoding/_validate_binary_like_test.ts b/encoding/_validate_binary_like_test.ts index 5937a5830b99..c25696964224 100644 --- a/encoding/_validate_binary_like_test.ts +++ b/encoding/_validate_binary_like_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { validateBinaryLike } from "./_validate_binary_like.ts"; diff --git a/encoding/ascii85.ts b/encoding/ascii85.ts index 043ac92f670f..61d09ae3450c 100644 --- a/encoding/ascii85.ts +++ b/encoding/ascii85.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Uint8Array_ } from "./_types.ts"; diff --git a/encoding/ascii85_test.ts b/encoding/ascii85_test.ts index e2965c823bfd..0a80f5c8374f 100644 --- a/encoding/ascii85_test.ts +++ b/encoding/ascii85_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { type Ascii85Standard, diff --git a/encoding/base32.ts b/encoding/base32.ts index 5deb60900758..2687ea49d8a1 100644 --- a/encoding/base32.ts +++ b/encoding/base32.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2014 Jameson Little. MIT License. // This module is browser compatible. diff --git a/encoding/base32_test.ts b/encoding/base32_test.ts index e8906b5db2ac..2a8cefed83d7 100644 --- a/encoding/base32_test.ts +++ b/encoding/base32_test.ts @@ -1,6 +1,6 @@ // Test cases copied from https://github.com/LinusU/base32-encode/blob/master/test.js // Copyright (c) 2016-2017 Linus Unnebäck. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertExists, assertThrows } from "@std/assert"; import { decodeBase32, encodeBase32 } from "./base32.ts"; diff --git a/encoding/base58.ts b/encoding/base58.ts index 42c346e79ad9..e23a376fb1e7 100644 --- a/encoding/base58.ts +++ b/encoding/base58.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/base58_test.ts b/encoding/base58_test.ts index a4ecdb92e1d1..23aaaf69732c 100644 --- a/encoding/base58_test.ts +++ b/encoding/base58_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { decodeBase58, encodeBase58 } from "./base58.ts"; diff --git a/encoding/base64.ts b/encoding/base64.ts index 9101750399a7..dba3bf04c650 100644 --- a/encoding/base64.ts +++ b/encoding/base64.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/base64_test.ts b/encoding/base64_test.ts index 26581c508e17..fdd9717defb0 100644 --- a/encoding/base64_test.ts +++ b/encoding/base64_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { decodeBase64, encodeBase64 } from "./base64.ts"; diff --git a/encoding/base64url.ts b/encoding/base64url.ts index 0a19582e66f3..6f82fbbc092d 100644 --- a/encoding/base64url.ts +++ b/encoding/base64url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/base64url_test.ts b/encoding/base64url_test.ts index f7bd20c5a12e..28643a1a8b68 100644 --- a/encoding/base64url_test.ts +++ b/encoding/base64url_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { decodeBase64Url, encodeBase64Url } from "./base64url.ts"; diff --git a/encoding/hex.ts b/encoding/hex.ts index 0661a5029ea9..1e002b4da34d 100644 --- a/encoding/hex.ts +++ b/encoding/hex.ts @@ -1,6 +1,6 @@ // Copyright 2009 The Go Authors. All rights reserved. // https://github.com/golang/go/blob/master/LICENSE -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/hex_test.ts b/encoding/hex_test.ts index d3dbc2432941..21af0a38edf9 100644 --- a/encoding/hex_test.ts +++ b/encoding/hex_test.ts @@ -3,7 +3,7 @@ // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { decodeHex, encodeHex } from "./hex.ts"; diff --git a/encoding/mod.ts b/encoding/mod.ts index 85b2018c0b44..a9a5a9227c65 100644 --- a/encoding/mod.ts +++ b/encoding/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_base32.ts b/encoding/unstable_base32.ts index e1d948f54dc7..a97f55e2b0f1 100644 --- a/encoding/unstable_base32.ts +++ b/encoding/unstable_base32.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_base32_stream.ts b/encoding/unstable_base32_stream.ts index 29e186839491..3ee013812ed7 100644 --- a/encoding/unstable_base32_stream.ts +++ b/encoding/unstable_base32_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_base32_stream_test.ts b/encoding/unstable_base32_stream_test.ts index 8fb5a00d4daf..39b170a2fbe1 100644 --- a/encoding/unstable_base32_stream_test.ts +++ b/encoding/unstable_base32_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toText } from "@std/streams"; diff --git a/encoding/unstable_base32_test.ts b/encoding/unstable_base32_test.ts index 629ce0dc0f08..c73311457cdb 100644 --- a/encoding/unstable_base32_test.ts +++ b/encoding/unstable_base32_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/encoding/unstable_base64.ts b/encoding/unstable_base64.ts index aebb833bf9f5..958488e152be 100644 --- a/encoding/unstable_base64.ts +++ b/encoding/unstable_base64.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_base64_stream.ts b/encoding/unstable_base64_stream.ts index 8163ccead19a..5195f9a3ca3f 100644 --- a/encoding/unstable_base64_stream.ts +++ b/encoding/unstable_base64_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_base64_stream_test.ts b/encoding/unstable_base64_stream_test.ts index a406e23fc23a..c716bda7ec15 100644 --- a/encoding/unstable_base64_stream_test.ts +++ b/encoding/unstable_base64_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toText } from "@std/streams"; diff --git a/encoding/unstable_base64_test.ts b/encoding/unstable_base64_test.ts index 2464f372ede6..387d4626cb54 100644 --- a/encoding/unstable_base64_test.ts +++ b/encoding/unstable_base64_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/encoding/unstable_hex.ts b/encoding/unstable_hex.ts index 4415ca5b96a5..c1e101839a1c 100644 --- a/encoding/unstable_hex.ts +++ b/encoding/unstable_hex.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_hex_stream.ts b/encoding/unstable_hex_stream.ts index e2e036643673..d58c3f88d150 100644 --- a/encoding/unstable_hex_stream.ts +++ b/encoding/unstable_hex_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/encoding/unstable_hex_stream_test.ts b/encoding/unstable_hex_stream_test.ts index 845acec59005..e8744cc234e7 100644 --- a/encoding/unstable_hex_stream_test.ts +++ b/encoding/unstable_hex_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toText } from "@std/streams"; diff --git a/encoding/unstable_hex_test.ts b/encoding/unstable_hex_test.ts index 52376cc26082..f8903fb29fe6 100644 --- a/encoding/unstable_hex_test.ts +++ b/encoding/unstable_hex_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/encoding/varint.ts b/encoding/varint.ts index f8069f639fcb..de7f1a748080 100644 --- a/encoding/varint.ts +++ b/encoding/varint.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2020 Keith Cirkel. All rights reserved. MIT license. // Copyright 2023 Skye "MierenManz". All rights reserved. MIT license. /** diff --git a/encoding/varint_test.ts b/encoding/varint_test.ts index 1230879a6154..8a4ba06021f3 100644 --- a/encoding/varint_test.ts +++ b/encoding/varint_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2020 Keith Cirkel. All rights reserved. MIT license. // This implementation is a port of https://deno.land/x/varint@v2.0.0 by @keithamus diff --git a/expect/_any_test.ts b/expect/_any_test.ts index 90058ec12fd0..a66a5ca56c66 100644 --- a/expect/_any_test.ts +++ b/expect/_any_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_anything_test.ts b/expect/_anything_test.ts index b17d88962147..88b59de191b3 100644 --- a/expect/_anything_test.ts +++ b/expect/_anything_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_array_containing_test.ts b/expect/_array_containing_test.ts index 3ac92a366157..94995439d196 100644 --- a/expect/_array_containing_test.ts +++ b/expect/_array_containing_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_assert_equals.ts b/expect/_assert_equals.ts index 7a90c1bea5d6..f08b432e098d 100644 --- a/expect/_assert_equals.ts +++ b/expect/_assert_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_assert_equals_test.ts b/expect/_assert_equals_test.ts index ef2a0df8618c..f2460a339e0c 100644 --- a/expect/_assert_equals_test.ts +++ b/expect/_assert_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_assert_is_error.ts b/expect/_assert_is_error.ts index f3abdce84eaf..f0d31a7d2dc5 100644 --- a/expect/_assert_is_error.ts +++ b/expect/_assert_is_error.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { AssertionError } from "@std/assert/assertion-error"; import { stripAnsiCode } from "@std/internal/styles"; diff --git a/expect/_assert_not_equals.ts b/expect/_assert_not_equals.ts index 84236eb83f55..5716f09a9f9a 100644 --- a/expect/_assert_not_equals.ts +++ b/expect/_assert_not_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_assert_not_equals_test.ts b/expect/_assert_not_equals_test.ts index 6f293b4efa09..399f75335e98 100644 --- a/expect/_assert_not_equals_test.ts +++ b/expect/_assert_not_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_assertions.ts b/expect/_assertions.ts index a6ed836b2d7e..9b452657e0a4 100644 --- a/expect/_assertions.ts +++ b/expect/_assertions.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getAssertionState } from "@std/internal/assertion-state"; diff --git a/expect/_assertions_test.ts b/expect/_assertions_test.ts index 6e33fe4abc44..71da80211945 100644 --- a/expect/_assertions_test.ts +++ b/expect/_assertions_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as path from "@std/path"; import { assertStringIncludes } from "@std/assert"; diff --git a/expect/_asymmetric_matchers.ts b/expect/_asymmetric_matchers.ts index 0f16aa451421..009ce6d3f95d 100644 --- a/expect/_asymmetric_matchers.ts +++ b/expect/_asymmetric_matchers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any import { getCustomEqualityTesters } from "./_custom_equality_tester.ts"; diff --git a/expect/_build_message.ts b/expect/_build_message.ts index 35960478fd82..4678a46eb106 100644 --- a/expect/_build_message.ts +++ b/expect/_build_message.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { buildMessage } from "@std/internal/build-message"; import { diff } from "@std/internal/diff"; diff --git a/expect/_close_to_test.ts b/expect/_close_to_test.ts index 97fa50eb81a0..7658b4f031b4 100644 --- a/expect/_close_to_test.ts +++ b/expect/_close_to_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_custom_equality_tester.ts b/expect/_custom_equality_tester.ts index 6e2b886cf297..589d42421b77 100644 --- a/expect/_custom_equality_tester.ts +++ b/expect/_custom_equality_tester.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Tester } from "./_types.ts"; diff --git a/expect/_custom_equality_tester_test.ts b/expect/_custom_equality_tester_test.ts index b7f24b70b287..be5c5388615a 100644 --- a/expect/_custom_equality_tester_test.ts +++ b/expect/_custom_equality_tester_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_equal.ts b/expect/_equal.ts index ec7985f37001..10f7875e2986 100644 --- a/expect/_equal.ts +++ b/expect/_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_equal_test.ts b/expect/_equal_test.ts index 1153ed7693b2..3f28cae5790d 100644 --- a/expect/_equal_test.ts +++ b/expect/_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This file is copied from `std/assert`. diff --git a/expect/_extend.ts b/expect/_extend.ts index 78e14ae08480..d1888613395a 100644 --- a/expect/_extend.ts +++ b/expect/_extend.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Matchers } from "./_types.ts"; diff --git a/expect/_extend_test.ts b/expect/_extend_test.ts index 98352b437fba..79d634e68443 100644 --- a/expect/_extend_test.ts +++ b/expect/_extend_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import type { Async, Expected, MatcherContext, Tester } from "./_types.ts"; diff --git a/expect/_inspect_args.ts b/expect/_inspect_args.ts index c5fd7148f1d6..d062ea54422e 100644 --- a/expect/_inspect_args.ts +++ b/expect/_inspect_args.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file export function inspectArgs(args: unknown[]): string { diff --git a/expect/_matchers.ts b/expect/_matchers.ts index b03da0d2f29e..eb637b4c2e4b 100644 --- a/expect/_matchers.ts +++ b/expect/_matchers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertNotStrictEquals } from "@std/assert/not-strict-equals"; import { assertStrictEquals } from "@std/assert/strict-equals"; diff --git a/expect/_mock_util.ts b/expect/_mock_util.ts index c41735c2b10b..c88c31d15f66 100644 --- a/expect/_mock_util.ts +++ b/expect/_mock_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any export const MOCK_SYMBOL = Symbol.for("@MOCK"); diff --git a/expect/_object_containing_test.ts b/expect/_object_containing_test.ts index 62cb0de3f166..67bf6208d866 100644 --- a/expect/_object_containing_test.ts +++ b/expect/_object_containing_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { Buffer } from "node:buffer"; import { Buffer as DenoBuffer } from "@std/io/buffer"; diff --git a/expect/_serializer.ts b/expect/_serializer.ts index 81e58537936a..e88d12923909 100644 --- a/expect/_serializer.ts +++ b/expect/_serializer.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { SnapshotPlugin } from "./_types.ts"; diff --git a/expect/_serializer_test.ts b/expect/_serializer_test.ts index dee19a7c64a0..afeebab10d87 100644 --- a/expect/_serializer_test.ts +++ b/expect/_serializer_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { addSerializer, getSerializer } from "./_serializer.ts"; diff --git a/expect/_string_containing_test.ts b/expect/_string_containing_test.ts index 2e961e0a95f8..8114183ac793 100644 --- a/expect/_string_containing_test.ts +++ b/expect/_string_containing_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_string_matching_test.ts b/expect/_string_matching_test.ts index d98cf9693915..52e1b7cc714b 100644 --- a/expect/_string_matching_test.ts +++ b/expect/_string_matching_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; diff --git a/expect/_to_be_close_to_test.ts b/expect/_to_be_close_to_test.ts index 819e99a36724..c1f76681d763 100644 --- a/expect/_to_be_close_to_test.ts +++ b/expect/_to_be_close_to_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_defined_test.ts b/expect/_to_be_defined_test.ts index 120c04f4398f..755a7e9308ef 100644 --- a/expect/_to_be_defined_test.ts +++ b/expect/_to_be_defined_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any import { expect } from "./expect.ts"; diff --git a/expect/_to_be_falsy_test.ts b/expect/_to_be_falsy_test.ts index ed2b1d706558..27bbbfc87291 100644 --- a/expect/_to_be_falsy_test.ts +++ b/expect/_to_be_falsy_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_greater_than_or_equal_test.ts b/expect/_to_be_greater_than_or_equal_test.ts index a4c523e00d30..a12d37d798fb 100644 --- a/expect/_to_be_greater_than_or_equal_test.ts +++ b/expect/_to_be_greater_than_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_greater_than_test.ts b/expect/_to_be_greater_than_test.ts index 6c9c103a0b97..0898fa4c0e53 100644 --- a/expect/_to_be_greater_than_test.ts +++ b/expect/_to_be_greater_than_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_instance_of_test.ts b/expect/_to_be_instance_of_test.ts index 7e103eebb007..6ef9e78dedfe 100644 --- a/expect/_to_be_instance_of_test.ts +++ b/expect/_to_be_instance_of_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_less_than_or_equal_test.ts b/expect/_to_be_less_than_or_equal_test.ts index bd1ef8bb12cc..d52db146e4ba 100644 --- a/expect/_to_be_less_than_or_equal_test.ts +++ b/expect/_to_be_less_than_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_less_than_test.ts b/expect/_to_be_less_than_test.ts index 805eaa80b241..bdb74746952b 100644 --- a/expect/_to_be_less_than_test.ts +++ b/expect/_to_be_less_than_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_nan_test.ts b/expect/_to_be_nan_test.ts index 661b30160237..a62d9178c946 100644 --- a/expect/_to_be_nan_test.ts +++ b/expect/_to_be_nan_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_null_test.ts b/expect/_to_be_null_test.ts index 10b27d7308a8..9ab9f0d9f446 100644 --- a/expect/_to_be_null_test.ts +++ b/expect/_to_be_null_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_test.ts b/expect/_to_be_test.ts index 17d2d4a378c0..44f95e19ba81 100644 --- a/expect/_to_be_test.ts +++ b/expect/_to_be_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_truthy_test.ts b/expect/_to_be_truthy_test.ts index 9362538113f9..0e4eaa129ac4 100644 --- a/expect/_to_be_truthy_test.ts +++ b/expect/_to_be_truthy_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_be_undefined_test.ts b/expect/_to_be_undefined_test.ts index 3d7e2ff52c52..863ffe7e59f3 100644 --- a/expect/_to_be_undefined_test.ts +++ b/expect/_to_be_undefined_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_contain_equal_test.ts b/expect/_to_contain_equal_test.ts index 30ded87fae8f..0bc83d0d6320 100644 --- a/expect/_to_contain_equal_test.ts +++ b/expect/_to_contain_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_contain_test.ts b/expect/_to_contain_test.ts index 8834bd0fc4a2..d13ad4dd3d1f 100644 --- a/expect/_to_contain_test.ts +++ b/expect/_to_contain_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_equal_test.ts b/expect/_to_equal_test.ts index 7673fd278594..555884b33599 100644 --- a/expect/_to_equal_test.ts +++ b/expect/_to_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { bold, gray, green, red, stripAnsiCode, yellow } from "@std/fmt/colors"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_have_been_called_test.ts b/expect/_to_have_been_called_test.ts index 324e045fdc4d..191a4cfe6c39 100644 --- a/expect/_to_have_been_called_test.ts +++ b/expect/_to_have_been_called_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertThrows } from "@std/assert"; import { expect } from "./expect.ts"; diff --git a/expect/_to_have_been_called_times_test.ts b/expect/_to_have_been_called_times_test.ts index 5cbcc7603cd0..f5baebc9ccbe 100644 --- a/expect/_to_have_been_called_times_test.ts +++ b/expect/_to_have_been_called_times_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_been_called_with_test.ts b/expect/_to_have_been_called_with_test.ts index 1b8197e1dc17..147f28e76215 100644 --- a/expect/_to_have_been_called_with_test.ts +++ b/expect/_to_have_been_called_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_been_last_called_with_test.ts b/expect/_to_have_been_last_called_with_test.ts index f4037026188a..af181c7db4c1 100644 --- a/expect/_to_have_been_last_called_with_test.ts +++ b/expect/_to_have_been_last_called_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_been_nth_called_with_test.ts b/expect/_to_have_been_nth_called_with_test.ts index da289bfed1cc..9e6bdc334743 100644 --- a/expect/_to_have_been_nth_called_with_test.ts +++ b/expect/_to_have_been_nth_called_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_last_returned_with_test.ts b/expect/_to_have_last_returned_with_test.ts index cd1303da953f..1efc0aec88a5 100644 --- a/expect/_to_have_last_returned_with_test.ts +++ b/expect/_to_have_last_returned_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_length_test.ts b/expect/_to_have_length_test.ts index 4f02bca32f8b..a25ac634b287 100644 --- a/expect/_to_have_length_test.ts +++ b/expect/_to_have_length_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_have_nth_returned_with_test.ts b/expect/_to_have_nth_returned_with_test.ts index 70000117ab02..c528f368096e 100644 --- a/expect/_to_have_nth_returned_with_test.ts +++ b/expect/_to_have_nth_returned_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_property_test.ts b/expect/_to_have_property_test.ts index 4277b8f67819..77d828442a34 100644 --- a/expect/_to_have_property_test.ts +++ b/expect/_to_have_property_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_have_returned_test.ts b/expect/_to_have_returned_test.ts index 9259e82bbf3b..56adadd0cf3e 100644 --- a/expect/_to_have_returned_test.ts +++ b/expect/_to_have_returned_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_returned_times_test.ts b/expect/_to_have_returned_times_test.ts index fa01c461b294..69ff729da5f8 100644 --- a/expect/_to_have_returned_times_test.ts +++ b/expect/_to_have_returned_times_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_have_returned_with.ts b/expect/_to_have_returned_with.ts index 36d1609c2569..31bba96c3085 100644 --- a/expect/_to_have_returned_with.ts +++ b/expect/_to_have_returned_with.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { MatcherContext, MatchResult } from "./_types.ts"; import { AssertionError } from "@std/assert/assertion-error"; diff --git a/expect/_to_have_returned_with_test.ts b/expect/_to_have_returned_with_test.ts index 706a0daa294c..b5c1e8001397 100644 --- a/expect/_to_have_returned_with_test.ts +++ b/expect/_to_have_returned_with_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { fn } from "./fn.ts"; diff --git a/expect/_to_match_object_test.ts b/expect/_to_match_object_test.ts index 82ccab32dd62..4063c1ef8f24 100644 --- a/expect/_to_match_object_test.ts +++ b/expect/_to_match_object_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { diff --git a/expect/_to_match_test.ts b/expect/_to_match_test.ts index a5eb8b8ef1d4..539081abf6c9 100644 --- a/expect/_to_match_test.ts +++ b/expect/_to_match_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_strict_equal_test.ts b/expect/_to_strict_equal_test.ts index 2cd286c6377f..3e411db399d8 100644 --- a/expect/_to_strict_equal_test.ts +++ b/expect/_to_strict_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_to_throw_test.ts b/expect/_to_throw_test.ts index 1c1f1a4bc0b9..0e6f010b3d8e 100644 --- a/expect/_to_throw_test.ts +++ b/expect/_to_throw_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertThrows } from "@std/assert"; diff --git a/expect/_types.ts b/expect/_types.ts index 3988d69fb9bb..1c3f9e09f8b6 100644 --- a/expect/_types.ts +++ b/expect/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any export interface MatcherContext { diff --git a/expect/_utils.ts b/expect/_utils.ts index bdc5974d7ada..e7e0bc59d2ee 100644 --- a/expect/_utils.ts +++ b/expect/_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. MIT license. import type { EqualOptions, EqualOptionUtil } from "./_types.ts"; diff --git a/expect/expect.ts b/expect/expect.ts index cd9d24a0ff2c..831dc4086ae0 100644 --- a/expect/expect.ts +++ b/expect/expect.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // Copyright 2019 Allain Lalonde. All rights reserved. ISC License. // Copyright (c) Meta Platforms, Inc. and affiliates. diff --git a/expect/fn.ts b/expect/fn.ts index d69295b56f15..b1ea2fb7d936 100644 --- a/expect/fn.ts +++ b/expect/fn.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // Copyright 2019 Allain Lalonde. All rights reserved. ISC License. // deno-lint-ignore-file no-explicit-any ban-types diff --git a/expect/mod.ts b/expect/mod.ts index 69e744b8c8c8..2fc91396d9ba 100644 --- a/expect/mod.ts +++ b/expect/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2019 Allain Lalonde. All rights reserved. ISC License. // This module is browser compatible. diff --git a/expect/test.ts b/expect/test.ts index f65947bbcba9..1cec404b2abc 100644 --- a/expect/test.ts +++ b/expect/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { expect } from "./expect.ts"; import { AssertionError, assertRejects, assertThrows } from "@std/assert"; diff --git a/fmt/bytes.ts b/fmt/bytes.ts index d844e68ec664..b27ba4ba4272 100644 --- a/fmt/bytes.ts +++ b/fmt/bytes.ts @@ -1,7 +1,7 @@ // Copyright 2014-2021 Sindre Sorhus. All rights reserved. MIT license. // Copyright 2021 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2021 Giuseppe Eletto. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/fmt/bytes_test.ts b/fmt/bytes_test.ts index 5b47204e0f66..f0375aef2976 100644 --- a/fmt/bytes_test.ts +++ b/fmt/bytes_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2014-2021 Sindre Sorhus. All rights reserved. MIT license. // Copyright 2021 Yoshiya Hinosawa. All rights reserved. MIT license. diff --git a/fmt/colors.ts b/fmt/colors.ts index fd1b52581eeb..098ccaeae664 100644 --- a/fmt/colors.ts +++ b/fmt/colors.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // A module to print ANSI terminal colors. Inspired by chalk, kleur, and colors // on npm. diff --git a/fmt/colors_test.ts b/fmt/colors_test.ts index 284c59425f0b..bdd2cde34d37 100644 --- a/fmt/colors_test.ts +++ b/fmt/colors_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as c from "./colors.ts"; diff --git a/fmt/duration.ts b/fmt/duration.ts index c4e8c11dccaf..c8d2a968ef2d 100644 --- a/fmt/duration.ts +++ b/fmt/duration.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/fmt/duration_test.ts b/fmt/duration_test.ts index 4d65e715c1db..c54ebe52d419 100644 --- a/fmt/duration_test.ts +++ b/fmt/duration_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertExists, assertThrows } from "@std/assert"; import { format } from "./duration.ts"; import type { FormatOptions } from "./duration.ts"; diff --git a/fmt/printf.ts b/fmt/printf.ts index 4b45f859ba9a..20f72bdc7fab 100644 --- a/fmt/printf.ts +++ b/fmt/printf.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * {@linkcode sprintf} and {@linkcode printf} for printing formatted strings to diff --git a/fmt/printf_test.ts b/fmt/printf_test.ts index 28d5403c70b4..94427f425653 100644 --- a/fmt/printf_test.ts +++ b/fmt/printf_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // // A number of test-cases based on: // diff --git a/front_matter/_formats.ts b/front_matter/_formats.ts index 21d3f53c633f..8537d8e312d6 100644 --- a/front_matter/_formats.ts +++ b/front_matter/_formats.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Supported format for front matter. `"unknown"` is used when auto format diff --git a/front_matter/_shared.ts b/front_matter/_shared.ts index d368bd8e7bb8..118df9835d9e 100644 --- a/front_matter/_shared.ts +++ b/front_matter/_shared.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export function extractFrontMatter( input: string, diff --git a/front_matter/any.ts b/front_matter/any.ts index e0f573bf0fdf..421beef506fc 100644 --- a/front_matter/any.ts +++ b/front_matter/any.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extract as extractToml } from "./toml.ts"; diff --git a/front_matter/any_test.ts b/front_matter/any_test.ts index f259448bcdee..5c8e9d5564ce 100644 --- a/front_matter/any_test.ts +++ b/front_matter/any_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { extract } from "@std/front-matter/any"; import { assertEquals } from "../assert/equals.ts"; diff --git a/front_matter/json.ts b/front_matter/json.ts index f8126828d99b..50a67bdb9818 100644 --- a/front_matter/json.ts +++ b/front_matter/json.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extractFrontMatter } from "./_shared.ts"; diff --git a/front_matter/json_test.ts b/front_matter/json_test.ts index 82121665bfac..70cf511cbc54 100644 --- a/front_matter/json_test.ts +++ b/front_matter/json_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertThrows } from "../assert/throws.ts"; import { extract } from "./json.ts"; diff --git a/front_matter/mod.ts b/front_matter/mod.ts index 6c290ab50751..f32e1bff78fc 100644 --- a/front_matter/mod.ts +++ b/front_matter/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) Jason Campbell. MIT license // This module is browser compatible. diff --git a/front_matter/test.ts b/front_matter/test.ts index aa0351809840..362d2279e24c 100644 --- a/front_matter/test.ts +++ b/front_matter/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { EXTRACT_REGEXP_MAP, type Format } from "./_formats.ts"; diff --git a/front_matter/test_test.ts b/front_matter/test_test.ts index a4a8b814de8f..eaf65c5af7d8 100644 --- a/front_matter/test_test.ts +++ b/front_matter/test_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertFalse, assertThrows } from "@std/assert"; diff --git a/front_matter/toml.ts b/front_matter/toml.ts index 65eca7526568..e0d4c5556228 100644 --- a/front_matter/toml.ts +++ b/front_matter/toml.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extractFrontMatter } from "./_shared.ts"; diff --git a/front_matter/toml_test.ts b/front_matter/toml_test.ts index 9427ae6fa34f..9e4770ca15b8 100644 --- a/front_matter/toml_test.ts +++ b/front_matter/toml_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertThrows } from "../assert/throws.ts"; import { extract } from "./toml.ts"; diff --git a/front_matter/types.ts b/front_matter/types.ts index 624696e8fbaa..5d55a05d326e 100644 --- a/front_matter/types.ts +++ b/front_matter/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Return type for {@linkcode extract} function. */ diff --git a/front_matter/unstable_yaml.ts b/front_matter/unstable_yaml.ts index aac8c539443a..10532b9dbf78 100644 --- a/front_matter/unstable_yaml.ts +++ b/front_matter/unstable_yaml.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extractFrontMatter } from "./_shared.ts"; diff --git a/front_matter/yaml.ts b/front_matter/yaml.ts index f1a74c951a2e..42ad1ab53a5e 100644 --- a/front_matter/yaml.ts +++ b/front_matter/yaml.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extractFrontMatter } from "./_shared.ts"; diff --git a/front_matter/yaml_test.ts b/front_matter/yaml_test.ts index e555d018b01c..d8d584d295b6 100644 --- a/front_matter/yaml_test.ts +++ b/front_matter/yaml_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { extract } from "./yaml.ts"; import { extract as unstableExtract } from "./unstable_yaml.ts"; diff --git a/fs/_create_walk_entry.ts b/fs/_create_walk_entry.ts index 85dce0f3f54e..c897169b019a 100644 --- a/fs/_create_walk_entry.ts +++ b/fs/_create_walk_entry.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { basename } from "@std/path/basename"; diff --git a/fs/_get_file_info_type.ts b/fs/_get_file_info_type.ts index f1dfa70832f3..4fdda5f4ff2b 100644 --- a/fs/_get_file_info_type.ts +++ b/fs/_get_file_info_type.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. export type PathType = "file" | "dir" | "symlink"; diff --git a/fs/_get_file_info_type_test.ts b/fs/_get_file_info_type_test.ts index d8d9b707c1b5..59a4d04f9b78 100644 --- a/fs/_get_file_info_type_test.ts +++ b/fs/_get_file_info_type_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { assertEquals } from "@std/assert"; diff --git a/fs/_get_fs_flag.ts b/fs/_get_fs_flag.ts index 2fbabeb7cbf7..7130afbd1363 100644 --- a/fs/_get_fs_flag.ts +++ b/fs/_get_fs_flag.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs } from "./_utils.ts"; import type { WriteFileOptions } from "./unstable_types.ts"; diff --git a/fs/_is_same_path.ts b/fs/_is_same_path.ts index 9c74f2accd95..0b071b18fb11 100644 --- a/fs/_is_same_path.ts +++ b/fs/_is_same_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { resolve } from "@std/path/resolve"; diff --git a/fs/_is_same_path_test.ts b/fs/_is_same_path_test.ts index 505ffd89d8b9..4b74ea575262 100644 --- a/fs/_is_same_path_test.ts +++ b/fs/_is_same_path_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { assertEquals } from "@std/assert"; diff --git a/fs/_is_subdir.ts b/fs/_is_subdir.ts index 4fb1cd74f7fa..4cd9924c00bd 100644 --- a/fs/_is_subdir.ts +++ b/fs/_is_subdir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { resolve } from "@std/path/resolve"; diff --git a/fs/_is_subdir_test.ts b/fs/_is_subdir_test.ts index 1fb91eff2fd4..31adaf450012 100644 --- a/fs/_is_subdir_test.ts +++ b/fs/_is_subdir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { assertEquals } from "@std/assert"; diff --git a/fs/_map_error.ts b/fs/_map_error.ts index 223f5a7ca0f9..52c6b01f7beb 100644 --- a/fs/_map_error.ts +++ b/fs/_map_error.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as errors from "./unstable_errors.js"; diff --git a/fs/_node_fs_file.ts b/fs/_node_fs_file.ts index bbc1dd28717d..a914d635d760 100644 --- a/fs/_node_fs_file.ts +++ b/fs/_node_fs_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, getNodeStream, getNodeTty, getNodeUtil } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/_node_fs_file_test.ts b/fs/_node_fs_file_test.ts index ad57c8533280..3de50ccb1580 100644 --- a/fs/_node_fs_file_test.ts +++ b/fs/_node_fs_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import { open, openSync } from "./unstable_open.ts"; diff --git a/fs/_to_dir_entry.ts b/fs/_to_dir_entry.ts index 7397e851f61c..3f689add956a 100644 --- a/fs/_to_dir_entry.ts +++ b/fs/_to_dir_entry.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { DirEntry } from "./unstable_types.ts"; diff --git a/fs/_to_file_info.ts b/fs/_to_file_info.ts index 29b57e682563..6132d024cadf 100644 --- a/fs/_to_file_info.ts +++ b/fs/_to_file_info.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { FileInfo } from "./unstable_types.ts"; import { isWindows } from "@std/internal/os"; diff --git a/fs/_to_path_string.ts b/fs/_to_path_string.ts index 08e43e3eeacf..246a5a4403ae 100644 --- a/fs/_to_path_string.ts +++ b/fs/_to_path_string.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. import { fromFileUrl } from "@std/path/from-file-url"; diff --git a/fs/_utils.ts b/fs/_utils.ts index 118d911633c7..cdf46e4d24ac 100644 --- a/fs/_utils.ts +++ b/fs/_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any /** diff --git a/fs/copy.ts b/fs/copy.ts index d88be3b4b6bf..9d713c6e68d0 100644 --- a/fs/copy.ts +++ b/fs/copy.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { basename } from "@std/path/basename"; import { join } from "@std/path/join"; diff --git a/fs/copy_test.ts b/fs/copy_test.ts index a6274989f826..3a6982abb4d4 100644 --- a/fs/copy_test.ts +++ b/fs/copy_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import * as path from "@std/path"; import { copy, copySync } from "./copy.ts"; diff --git a/fs/empty_dir.ts b/fs/empty_dir.ts index 2f674face921..bb64015973f8 100644 --- a/fs/empty_dir.ts +++ b/fs/empty_dir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { join } from "@std/path/join"; import { toPathString } from "./_to_path_string.ts"; diff --git a/fs/empty_dir_test.ts b/fs/empty_dir_test.ts index 497deced851e..c4722ca1f17d 100644 --- a/fs/empty_dir_test.ts +++ b/fs/empty_dir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, diff --git a/fs/ensure_dir.ts b/fs/ensure_dir.ts index 9990020475a0..7f74679a6dae 100644 --- a/fs/ensure_dir.ts +++ b/fs/ensure_dir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getFileInfoType } from "./_get_file_info_type.ts"; /** diff --git a/fs/ensure_dir_test.ts b/fs/ensure_dir_test.ts index c1d3ba4e7ae2..5d352783ba84 100644 --- a/fs/ensure_dir_test.ts +++ b/fs/ensure_dir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import * as path from "@std/path"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; diff --git a/fs/ensure_file.ts b/fs/ensure_file.ts index bb7ddd703eaf..d17be82f4f4e 100644 --- a/fs/ensure_file.ts +++ b/fs/ensure_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { dirname } from "@std/path/dirname"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; import { getFileInfoType } from "./_get_file_info_type.ts"; diff --git a/fs/ensure_file_test.ts b/fs/ensure_file_test.ts index 202547d7e222..c636f9076323 100644 --- a/fs/ensure_file_test.ts +++ b/fs/ensure_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertRejects, assertThrows } from "@std/assert"; import * as path from "@std/path"; import { ensureFile, ensureFileSync } from "./ensure_file.ts"; diff --git a/fs/ensure_link.ts b/fs/ensure_link.ts index 8e461eaa5706..878ff4880104 100644 --- a/fs/ensure_link.ts +++ b/fs/ensure_link.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { dirname } from "@std/path/dirname"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; import { toPathString } from "./_to_path_string.ts"; diff --git a/fs/ensure_link_test.ts b/fs/ensure_link_test.ts index 5c1929e82569..b010346a6dab 100644 --- a/fs/ensure_link_test.ts +++ b/fs/ensure_link_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // TODO(axetroy): Add test for Windows once symlink is implemented for Windows. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import * as path from "@std/path"; diff --git a/fs/ensure_symlink.ts b/fs/ensure_symlink.ts index 0cfb84483a38..52186d63f207 100644 --- a/fs/ensure_symlink.ts +++ b/fs/ensure_symlink.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { dirname } from "@std/path/dirname"; import { resolve } from "@std/path/resolve"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; diff --git a/fs/ensure_symlink_test.ts b/fs/ensure_symlink_test.ts index b416ed96292e..0a4d6b812fa3 100644 --- a/fs/ensure_symlink_test.ts +++ b/fs/ensure_symlink_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // TODO(axetroy): Add test for Windows once symlink is implemented for Windows. import { assert, diff --git a/fs/eol.ts b/fs/eol.ts index 007137528f97..c50982fbe06a 100644 --- a/fs/eol.ts +++ b/fs/eol.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** End-of-line character for POSIX platforms such as macOS and Linux. */ diff --git a/fs/eol_test.ts b/fs/eol_test.ts index ee4a32f08688..52de55536023 100644 --- a/fs/eol_test.ts +++ b/fs/eol_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { CRLF, detect, format, LF } from "./eol.ts"; diff --git a/fs/exists.ts b/fs/exists.ts index 66db40726950..2f416e466f85 100644 --- a/fs/exists.ts +++ b/fs/exists.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** Options for {@linkcode exists} and {@linkcode existsSync.} */ export interface ExistsOptions { diff --git a/fs/exists_test.ts b/fs/exists_test.ts index ac532dec9e47..f1114fffd1b7 100644 --- a/fs/exists_test.ts +++ b/fs/exists_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertStringIncludes } from "@std/assert"; import * as path from "@std/path"; import { exists, existsSync } from "./exists.ts"; diff --git a/fs/expand_glob.ts b/fs/expand_glob.ts index bce4329f9685..59c3b5a78f0e 100644 --- a/fs/expand_glob.ts +++ b/fs/expand_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { type GlobOptions, globToRegExp } from "@std/path/glob-to-regexp"; import { joinGlobs } from "@std/path/join-globs"; import { isGlob } from "@std/path/is-glob"; diff --git a/fs/expand_glob_test.ts b/fs/expand_glob_test.ts index 148fde20e4cd..f9386c58b8d4 100644 --- a/fs/expand_glob_test.ts +++ b/fs/expand_glob_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/fs/mod.ts b/fs/mod.ts index 6fc7e393d8ec..40a2dc0b519c 100644 --- a/fs/mod.ts +++ b/fs/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Helpers for working with the filesystem. diff --git a/fs/move.ts b/fs/move.ts index 134e0db3492d..fe9175857dcf 100644 --- a/fs/move.ts +++ b/fs/move.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isSubdir } from "./_is_subdir.ts"; import { isSamePath } from "./_is_same_path.ts"; diff --git a/fs/move_test.ts b/fs/move_test.ts index 9b6c67ea012d..312a879d4840 100644 --- a/fs/move_test.ts +++ b/fs/move_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import * as path from "@std/path"; import { move, moveSync } from "./move.ts"; diff --git a/fs/unstable_chmod.ts b/fs/unstable_chmod.ts index 43a95a7b4897..f76611debf03 100644 --- a/fs/unstable_chmod.ts +++ b/fs/unstable_chmod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_chmod_test.ts b/fs/unstable_chmod_test.ts index 0b648bac50a7..2e3c6635fef1 100644 --- a/fs/unstable_chmod_test.ts +++ b/fs/unstable_chmod_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, diff --git a/fs/unstable_chown.ts b/fs/unstable_chown.ts index fb8e11b1b329..32b2a908e5a7 100644 --- a/fs/unstable_chown.ts +++ b/fs/unstable_chown.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_chown_test.ts b/fs/unstable_chown_test.ts index d58bc754f53c..cb02087fae45 100644 --- a/fs/unstable_chown_test.ts +++ b/fs/unstable_chown_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import { chown, chownSync } from "./unstable_chown.ts"; diff --git a/fs/unstable_copy_file.ts b/fs/unstable_copy_file.ts index 5df13ac2d82a..d31cb39249f3 100644 --- a/fs/unstable_copy_file.ts +++ b/fs/unstable_copy_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { mapError } from "./_map_error.ts"; import { getNodeFs, isDeno } from "./_utils.ts"; diff --git a/fs/unstable_copy_file_test.ts b/fs/unstable_copy_file_test.ts index 4259e91dd14f..185856fb44af 100644 --- a/fs/unstable_copy_file_test.ts +++ b/fs/unstable_copy_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { rm, stat, writeFile } from "node:fs/promises"; diff --git a/fs/unstable_create.ts b/fs/unstable_create.ts index 32022084d0e7..c0db03147c14 100644 --- a/fs/unstable_create.ts +++ b/fs/unstable_create.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_create_test.ts b/fs/unstable_create_test.ts index 97e9ea8b0ad3..70e242775c1e 100644 --- a/fs/unstable_create_test.ts +++ b/fs/unstable_create_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import { create, createSync } from "./unstable_create.ts"; diff --git a/fs/unstable_errors.d.ts b/fs/unstable_errors.d.ts index 24b2c9602267..184a9a78fbd6 100644 --- a/fs/unstable_errors.d.ts +++ b/fs/unstable_errors.d.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/fs/unstable_errors.js b/fs/unstable_errors.js index 0d45072cf904..151f75df710f 100644 --- a/fs/unstable_errors.js +++ b/fs/unstable_errors.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // @ts-self-types="./unstable_errors.d.ts" diff --git a/fs/unstable_link.ts b/fs/unstable_link.ts index d9e599a2726d..2e0edabea7d7 100644 --- a/fs/unstable_link.ts +++ b/fs/unstable_link.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_link_test.ts b/fs/unstable_link_test.ts index ffbd9d3b0b17..058d960e9892 100644 --- a/fs/unstable_link_test.ts +++ b/fs/unstable_link_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/fs/unstable_lstat.ts b/fs/unstable_lstat.ts index 84feb35cfbf3..5ae246d8d989 100644 --- a/fs/unstable_lstat.ts +++ b/fs/unstable_lstat.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_lstat_test.ts b/fs/unstable_lstat_test.ts index 1ecbcc755501..a0363fc6841e 100644 --- a/fs/unstable_lstat_test.ts +++ b/fs/unstable_lstat_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { lstat, lstatSync } from "./unstable_lstat.ts"; diff --git a/fs/unstable_make_temp_dir.ts b/fs/unstable_make_temp_dir.ts index a8a09a243af6..0ab2bbe8f93b 100644 --- a/fs/unstable_make_temp_dir.ts +++ b/fs/unstable_make_temp_dir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, getNodeOs, getNodePath, isDeno } from "./_utils.ts"; import type { MakeTempOptions } from "./unstable_types.ts"; diff --git a/fs/unstable_make_temp_dir_test.ts b/fs/unstable_make_temp_dir_test.ts index 8c319ed98a56..d5de099e17d5 100644 --- a/fs/unstable_make_temp_dir_test.ts +++ b/fs/unstable_make_temp_dir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { makeTempDir, makeTempDirSync } from "./unstable_make_temp_dir.ts"; diff --git a/fs/unstable_make_temp_file.ts b/fs/unstable_make_temp_file.ts index afb82c411bd7..06eeb2b1d526 100644 --- a/fs/unstable_make_temp_file.ts +++ b/fs/unstable_make_temp_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeOs, getNodePath, isDeno, randomId } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_make_temp_file_test.ts b/fs/unstable_make_temp_file_test.ts index 6587452d30ba..68c0945e18f0 100644 --- a/fs/unstable_make_temp_file_test.ts +++ b/fs/unstable_make_temp_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { makeTempFile, makeTempFileSync } from "./unstable_make_temp_file.ts"; diff --git a/fs/unstable_mkdir.ts b/fs/unstable_mkdir.ts index 2ff8eeb64113..839dc6395a1a 100644 --- a/fs/unstable_mkdir.ts +++ b/fs/unstable_mkdir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_mkdir_test.ts b/fs/unstable_mkdir_test.ts index 73666f012b6a..1f4b3c3e1f5d 100644 --- a/fs/unstable_mkdir_test.ts +++ b/fs/unstable_mkdir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/fs/unstable_open.ts b/fs/unstable_open.ts index abfa18b2a02a..a3b9205babc1 100644 --- a/fs/unstable_open.ts +++ b/fs/unstable_open.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, getNodeUtil, isDeno } from "./_utils.ts"; import { getOpenFsFlag } from "./_get_fs_flag.ts"; diff --git a/fs/unstable_open_test.ts b/fs/unstable_open_test.ts index 8ad7d2aa6a9e..de73a6a88d44 100644 --- a/fs/unstable_open_test.ts +++ b/fs/unstable_open_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import { AlreadyExists, NotFound } from "./unstable_errors.js"; diff --git a/fs/unstable_read_dir.ts b/fs/unstable_read_dir.ts index 91f3384546c0..f6ac905d5bd9 100644 --- a/fs/unstable_read_dir.ts +++ b/fs/unstable_read_dir.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_read_dir_test.ts b/fs/unstable_read_dir_test.ts index 0154081cf00b..c4f8b9bbb1eb 100644 --- a/fs/unstable_read_dir_test.ts +++ b/fs/unstable_read_dir_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import { fromFileUrl, join, resolve } from "@std/path"; diff --git a/fs/unstable_read_file.ts b/fs/unstable_read_file.ts index 8172cdfebead..88c64dbd3c36 100644 --- a/fs/unstable_read_file.ts +++ b/fs/unstable_read_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import type { ReadFileOptions } from "./unstable_types.ts"; diff --git a/fs/unstable_read_file_test.ts b/fs/unstable_read_file_test.ts index 5cfce71cb08e..8495351e63df 100644 --- a/fs/unstable_read_file_test.ts +++ b/fs/unstable_read_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/fs/unstable_read_link.ts b/fs/unstable_read_link.ts index 3b9f75f36371..81c91ce43669 100644 --- a/fs/unstable_read_link.ts +++ b/fs/unstable_read_link.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_read_link_test.ts b/fs/unstable_read_link_test.ts index 0ef85e6a8753..236f3ef25af9 100644 --- a/fs/unstable_read_link_test.ts +++ b/fs/unstable_read_link_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import { readLink, readLinkSync } from "./unstable_read_link.ts"; diff --git a/fs/unstable_read_text_file.ts b/fs/unstable_read_text_file.ts index 895ce16b59c8..018ed5f91c93 100644 --- a/fs/unstable_read_text_file.ts +++ b/fs/unstable_read_text_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { mapError } from "./_map_error.ts"; import type { ReadFileOptions } from "./unstable_types.ts"; diff --git a/fs/unstable_read_text_file_test.ts b/fs/unstable_read_text_file_test.ts index d38a2bbeeaac..bd1f4d08319a 100644 --- a/fs/unstable_read_text_file_test.ts +++ b/fs/unstable_read_text_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; import { dirname, join, resolve } from "node:path"; diff --git a/fs/unstable_real_path.ts b/fs/unstable_real_path.ts index 7f5410d9dedc..8a8d5723b3c9 100644 --- a/fs/unstable_real_path.ts +++ b/fs/unstable_real_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_real_path_test.ts b/fs/unstable_real_path_test.ts index a729dd1bb441..d6f11388b156 100644 --- a/fs/unstable_real_path_test.ts +++ b/fs/unstable_real_path_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertMatch, assertRejects, assertThrows } from "@std/assert"; import { realPath, realPathSync } from "./unstable_real_path.ts"; diff --git a/fs/unstable_remove.ts b/fs/unstable_remove.ts index 25113cb8cfc0..de9e7cba921f 100644 --- a/fs/unstable_remove.ts +++ b/fs/unstable_remove.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { RemoveOptions } from "./unstable_types.ts"; import { getNodeFs, isDeno } from "./_utils.ts"; diff --git a/fs/unstable_remove_test.ts b/fs/unstable_remove_test.ts index dc0d47403579..ed43d43b1b3b 100644 --- a/fs/unstable_remove_test.ts +++ b/fs/unstable_remove_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { rmSync, writeFileSync } from "node:fs"; diff --git a/fs/unstable_rename.ts b/fs/unstable_rename.ts index 603c98580f3a..c0fc7791985f 100644 --- a/fs/unstable_rename.ts +++ b/fs/unstable_rename.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_rename_test.ts b/fs/unstable_rename_test.ts index aa45ca834742..25b9029447b0 100644 --- a/fs/unstable_rename_test.ts +++ b/fs/unstable_rename_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { lessOrEqual, parse as parseSemver } from "@std/semver"; diff --git a/fs/unstable_stat.ts b/fs/unstable_stat.ts index 9598b75b6704..b22ac7473155 100644 --- a/fs/unstable_stat.ts +++ b/fs/unstable_stat.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_stat_test.ts b/fs/unstable_stat_test.ts index cd93330995da..3b0f9b096d65 100644 --- a/fs/unstable_stat_test.ts +++ b/fs/unstable_stat_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { stat, statSync } from "./unstable_stat.ts"; diff --git a/fs/unstable_symlink.ts b/fs/unstable_symlink.ts index 77fdb3f3a3a2..f1a6483a070c 100644 --- a/fs/unstable_symlink.ts +++ b/fs/unstable_symlink.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_symlink_test.ts b/fs/unstable_symlink_test.ts index 7232ff178b91..f49505667699 100644 --- a/fs/unstable_symlink_test.ts +++ b/fs/unstable_symlink_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { symlink, symlinkSync } from "./unstable_symlink.ts"; diff --git a/fs/unstable_truncate.ts b/fs/unstable_truncate.ts index 6dc5c239e563..32d0e4607300 100644 --- a/fs/unstable_truncate.ts +++ b/fs/unstable_truncate.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_truncate_test.ts b/fs/unstable_truncate_test.ts index a8f67e2a34e3..cccb2ad96144 100644 --- a/fs/unstable_truncate_test.ts +++ b/fs/unstable_truncate_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects, assertThrows } from "@std/assert"; import { truncate, truncateSync } from "./unstable_truncate.ts"; diff --git a/fs/unstable_types.ts b/fs/unstable_types.ts index 15ca453a6275..7874778e84f3 100644 --- a/fs/unstable_types.ts +++ b/fs/unstable_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/fs/unstable_umask.ts b/fs/unstable_umask.ts index 6e5a296a4985..9b8a9886c783 100644 --- a/fs/unstable_umask.ts +++ b/fs/unstable_umask.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { mapError } from "./_map_error.ts"; import { getNodeProcess, isDeno } from "./_utils.ts"; diff --git a/fs/unstable_umask_test.ts b/fs/unstable_umask_test.ts index 2cf40ec723b8..240bce1480a3 100644 --- a/fs/unstable_umask_test.ts +++ b/fs/unstable_umask_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertNotEquals } from "@std/assert"; import { umask } from "./unstable_umask.ts"; diff --git a/fs/unstable_utime.ts b/fs/unstable_utime.ts index dce063336ff4..f15eb323e6f8 100644 --- a/fs/unstable_utime.ts +++ b/fs/unstable_utime.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { mapError } from "./_map_error.ts"; diff --git a/fs/unstable_utime_test.ts b/fs/unstable_utime_test.ts index 6f8de67128af..7d00bcb16945 100644 --- a/fs/unstable_utime_test.ts +++ b/fs/unstable_utime_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertRejects, assertThrows } from "@std/assert"; import { utime, utimeSync } from "./unstable_utime.ts"; import { NotFound } from "./unstable_errors.js"; diff --git a/fs/unstable_write_file.ts b/fs/unstable_write_file.ts index 69e311fd3090..98d1d1d23d9b 100644 --- a/fs/unstable_write_file.ts +++ b/fs/unstable_write_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { getWriteFsFlag } from "./_get_fs_flag.ts"; diff --git a/fs/unstable_write_file_test.ts b/fs/unstable_write_file_test.ts index cdf9836e8c89..71cf650cab82 100644 --- a/fs/unstable_write_file_test.ts +++ b/fs/unstable_write_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/fs/unstable_write_text_file.ts b/fs/unstable_write_text_file.ts index 397c420b27a9..17bf9c67b0fd 100644 --- a/fs/unstable_write_text_file.ts +++ b/fs/unstable_write_text_file.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNodeFs, isDeno } from "./_utils.ts"; import { getWriteFsFlag } from "./_get_fs_flag.ts"; diff --git a/fs/unstable_write_text_file_test.ts b/fs/unstable_write_text_file_test.ts index 874c300d7566..332de644de67 100644 --- a/fs/unstable_write_text_file_test.ts +++ b/fs/unstable_write_text_file_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, diff --git a/fs/walk.ts b/fs/walk.ts index 9a51efbe97ce..0b86c2a17827 100644 --- a/fs/walk.ts +++ b/fs/walk.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Documentation and interface for walk were adapted from Go // https://golang.org/pkg/path/filepath/#Walk // Copyright 2009 The Go Authors. All rights reserved. BSD license. diff --git a/fs/walk_test.ts b/fs/walk_test.ts index c79ee5f62437..ae507dd3ad25 100644 --- a/fs/walk_test.ts +++ b/fs/walk_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { walk, type WalkOptions, walkSync } from "./walk.ts"; import { assertArrayIncludes, diff --git a/html/_tools/generate_data.ts b/html/_tools/generate_data.ts index 3042f8868aa6..5f2caf06a8af 100755 --- a/html/_tools/generate_data.ts +++ b/html/_tools/generate_data.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-net --allow-read --allow-write -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // JSON version of the full canonical list of named HTML entities // https://html.spec.whatwg.org/multipage/named-characters.html diff --git a/html/entities.ts b/html/entities.ts index 321f7dc50555..73a80e39994a 100644 --- a/html/entities.ts +++ b/html/entities.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Object structure for a list of HTML entities. */ diff --git a/html/entities_test.ts b/html/entities_test.ts index f7a23c810fce..d22a897000aa 100644 --- a/html/entities_test.ts +++ b/html/entities_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { escape, unescape } from "./entities.ts"; import { assertEquals } from "@std/assert"; diff --git a/html/mod.ts b/html/mod.ts index 61d9f649192e..a01f803f137d 100644 --- a/html/mod.ts +++ b/html/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/html/unstable_escape_css.ts b/html/unstable_escape_css.ts index 9640c1fd0bbb..670eec5bdb86 100644 --- a/html/unstable_escape_css.ts +++ b/html/unstable_escape_css.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/html/unstable_escape_css_test.ts b/html/unstable_escape_css_test.ts index 6f3294cdb077..fc0d805b652a 100644 --- a/html/unstable_escape_css_test.ts +++ b/html/unstable_escape_css_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { escapeCss } from "./unstable_escape_css.ts"; import { assertEquals } from "@std/assert"; diff --git a/html/unstable_escape_js.ts b/html/unstable_escape_js.ts index 8423ab1a7685..b03d574ab62e 100644 --- a/html/unstable_escape_js.ts +++ b/html/unstable_escape_js.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode escapeJs} */ diff --git a/html/unstable_escape_js_test.ts b/html/unstable_escape_js_test.ts index ab0c024d23df..043d0eb13f3e 100644 --- a/html/unstable_escape_js_test.ts +++ b/html/unstable_escape_js_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { escapeJs } from "./unstable_escape_js.ts"; import { dedent } from "@std/text/unstable-dedent"; diff --git a/html/unstable_is_valid_custom_element_name.ts b/html/unstable_is_valid_custom_element_name.ts index f82fe53fa9b0..f253934dc64a 100644 --- a/html/unstable_is_valid_custom_element_name.ts +++ b/html/unstable_is_valid_custom_element_name.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const FORBIDDEN_CUSTOM_ELEMENT_NAMES: string[] = [ diff --git a/html/unstable_is_valid_custom_element_name_test.ts b/html/unstable_is_valid_custom_element_name_test.ts index cdf6ae12093b..2a2936c74202 100644 --- a/html/unstable_is_valid_custom_element_name_test.ts +++ b/html/unstable_is_valid_custom_element_name_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { isValidCustomElementName } from "./unstable_is_valid_custom_element_name.ts"; diff --git a/http/_negotiation/common.ts b/http/_negotiation/common.ts index ae3db8a580d3..ff7368ed755d 100644 --- a/http/_negotiation/common.ts +++ b/http/_negotiation/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /*! * Adapted directly from negotiator at https://github.com/jshttp/negotiator/ * which is licensed as follows: diff --git a/http/_negotiation/encoding.ts b/http/_negotiation/encoding.ts index cff922465ae5..ee7aad7b9680 100644 --- a/http/_negotiation/encoding.ts +++ b/http/_negotiation/encoding.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /*! * Adapted directly from negotiator at https://github.com/jshttp/negotiator/ * which is licensed as follows: diff --git a/http/_negotiation/language.ts b/http/_negotiation/language.ts index 09bb68b2d431..4aec15319b0b 100644 --- a/http/_negotiation/language.ts +++ b/http/_negotiation/language.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /*! * Adapted directly from negotiator at https://github.com/jshttp/negotiator/ * which is licensed as follows: diff --git a/http/_negotiation/media_type.ts b/http/_negotiation/media_type.ts index 6540ea42c203..b376625b8e74 100644 --- a/http/_negotiation/media_type.ts +++ b/http/_negotiation/media_type.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /*! * Adapted directly from negotiator at https://github.com/jshttp/negotiator/ * which is licensed as follows: diff --git a/http/cookie.ts b/http/cookie.ts index de817470cb26..91a2d14d8126 100644 --- a/http/cookie.ts +++ b/http/cookie.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Structured similarly to Go's cookie.go // https://github.com/golang/go/blob/master/src/net/http/cookie.go // This module is browser compatible. diff --git a/http/cookie_test.ts b/http/cookie_test.ts index 07381ee2b221..72f5eecacb2c 100644 --- a/http/cookie_test.ts +++ b/http/cookie_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { stub } from "@std/testing/mock"; import { deleteCookie, diff --git a/http/etag.ts b/http/etag.ts index 12db49e9cd4b..8f0070ca4e1f 100644 --- a/http/etag.ts +++ b/http/etag.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/http/etag_test.ts b/http/etag_test.ts index 5aaefe17997f..d2951f21a103 100644 --- a/http/etag_test.ts +++ b/http/etag_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { assertType, type IsExact } from "@std/testing/types"; diff --git a/http/file_server.ts b/http/file_server.ts index 135ae046df7c..6ae71c16b6f1 100644 --- a/http/file_server.ts +++ b/http/file_server.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-net --allow-read -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This program serves files in the current directory over HTTP. // TODO(bartlomieju): Add tests like these: diff --git a/http/file_server_test.ts b/http/file_server_test.ts index c53730aaeafe..a7be81c6dc17 100644 --- a/http/file_server_test.ts +++ b/http/file_server_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertAlmostEquals, diff --git a/http/mod.ts b/http/mod.ts index ec0bae6c6055..0dbafabfc909 100644 --- a/http/mod.ts +++ b/http/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Provides user-friendly {@linkcode serve} on top of Deno's native HTTP server * and other utilities for creating HTTP servers and clients. diff --git a/http/negotiation.ts b/http/negotiation.ts index 4cf4602bff63..1885e5984d3f 100644 --- a/http/negotiation.ts +++ b/http/negotiation.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/http/negotiation_test.ts b/http/negotiation_test.ts index 1ad742485c58..bb933f6b2b06 100644 --- a/http/negotiation_test.ts +++ b/http/negotiation_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { accepts, acceptsEncodings, acceptsLanguages } from "./negotiation.ts"; diff --git a/http/server_sent_event_stream.ts b/http/server_sent_event_stream.ts index feb527210199..cd60c13a7d31 100644 --- a/http/server_sent_event_stream.ts +++ b/http/server_sent_event_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const NEWLINE_REGEXP = /\r\n|\r|\n/; diff --git a/http/server_sent_event_stream_test.ts b/http/server_sent_event_stream_test.ts index 8a8fcf97e445..2d452e802408 100644 --- a/http/server_sent_event_stream_test.ts +++ b/http/server_sent_event_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { type ServerSentEventMessage, diff --git a/http/status.ts b/http/status.ts index 547774bbe925..16e661b1a696 100644 --- a/http/status.ts +++ b/http/status.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/http/status_test.ts b/http/status_test.ts index 9c0de1d6e5a0..bca7fa65aa75 100644 --- a/http/status_test.ts +++ b/http/status_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isClientErrorStatus, diff --git a/http/unstable_file_server.ts b/http/unstable_file_server.ts index f5ef9729e6a9..c0a4ecbdd8de 100644 --- a/http/unstable_file_server.ts +++ b/http/unstable_file_server.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run --allow-net --allow-read -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { serveDir as stableServeDir, type ServeDirOptions as StableServeDirOptions, diff --git a/http/unstable_header.ts b/http/unstable_header.ts index 5594f69a9d8e..4f5fe9ae7dd7 100644 --- a/http/unstable_header.ts +++ b/http/unstable_header.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // This module is generated from {@link https://www.iana.org/assignments/http-fields/http-fields.xhtml#field-names | IANA Hypertext Transfer Protocol (HTTP) Field Name Registry} diff --git a/http/unstable_header_test.ts b/http/unstable_header_test.ts index 442a2f24087f..b266bb6d1449 100644 --- a/http/unstable_header_test.ts +++ b/http/unstable_header_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { HEADER } from "./unstable_header.ts"; import { assertEquals } from "@std/assert"; diff --git a/http/unstable_method.ts b/http/unstable_method.ts index 6de426e22b6b..26131d1c6f54 100644 --- a/http/unstable_method.ts +++ b/http/unstable_method.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // This module is generated from {@link https://www.iana.org/assignments/http-methods/http-methods.xhtml#methods | IANA Hypertext Transfer Protocol (HTTP) Method Registry} diff --git a/http/unstable_method_test.ts b/http/unstable_method_test.ts index f1d4cea51cfc..6d799359d926 100644 --- a/http/unstable_method_test.ts +++ b/http/unstable_method_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { METHOD } from "./unstable_method.ts"; import { assertEquals } from "@std/assert"; diff --git a/http/unstable_route.ts b/http/unstable_route.ts index a78c3cf4a493..b75218fd301a 100644 --- a/http/unstable_route.ts +++ b/http/unstable_route.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Request handler for {@linkcode Route}. diff --git a/http/unstable_route_test.ts b/http/unstable_route_test.ts index c931cb9545e8..511a99ea3f73 100644 --- a/http/unstable_route_test.ts +++ b/http/unstable_route_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { type Route, route } from "./unstable_route.ts"; import { assertEquals } from "../assert/equals.ts"; diff --git a/http/unstable_signed_cookie.ts b/http/unstable_signed_cookie.ts index 897ae9e014f1..ebbdc1efdf09 100644 --- a/http/unstable_signed_cookie.ts +++ b/http/unstable_signed_cookie.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { decodeHex, encodeHex } from "@std/encoding/hex"; diff --git a/http/unstable_signed_cookie_test.ts b/http/unstable_signed_cookie_test.ts index fa6de2f6e8f3..9a20c7827258 100644 --- a/http/unstable_signed_cookie_test.ts +++ b/http/unstable_signed_cookie_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { parseSignedCookie, signCookie, diff --git a/http/user_agent.ts b/http/user_agent.ts index 9341b2b80b75..4fdd0c10a907 100644 --- a/http/user_agent.ts +++ b/http/user_agent.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // This module was heavily inspired by ua-parser-js diff --git a/http/user_agent_test.ts b/http/user_agent_test.ts index aecf3624e889..f99696ed5594 100644 --- a/http/user_agent_test.ts +++ b/http/user_agent_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { UserAgent } from "./user_agent.ts"; diff --git a/ini/mod.ts b/ini/mod.ts index 5b027fe60951..22245fcacd67 100644 --- a/ini/mod.ts +++ b/ini/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/ini/parse.ts b/ini/parse.ts index a01051469c12..4a6e27794c71 100644 --- a/ini/parse.ts +++ b/ini/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Function for replacing INI values with JavaScript values. */ diff --git a/ini/parse_test.ts b/ini/parse_test.ts index c5093ecece6c..1d12f25ec2c0 100644 --- a/ini/parse_test.ts +++ b/ini/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { parse } from "./mod.ts"; import { diff --git a/ini/stringify.ts b/ini/stringify.ts index a89cd938e317..389359fd1d3d 100644 --- a/ini/stringify.ts +++ b/ini/stringify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Function for replacing JavaScript values with INI string values. */ diff --git a/ini/stringify_test.ts b/ini/stringify_test.ts index d8e05b58522b..41975c8f9b31 100644 --- a/ini/stringify_test.ts +++ b/ini/stringify_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { stringify } from "./mod.ts"; import { assertEquals } from "@std/assert"; diff --git a/internal/_os.ts b/internal/_os.ts index 1e54ec6d6cf1..b59325c4a3c8 100644 --- a/internal/_os.ts +++ b/internal/_os.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export function checkWindows(): boolean { // deno-lint-ignore no-explicit-any diff --git a/internal/_os_test.ts b/internal/_os_test.ts index 02f1b26945e6..c24e239ec0d8 100644 --- a/internal/_os_test.ts +++ b/internal/_os_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { checkWindows } from "./_os.ts"; import { disposableStack } from "./_testing.ts"; diff --git a/internal/_testing.ts b/internal/_testing.ts index 99bacdbcb3ba..014fa018b985 100644 --- a/internal/_testing.ts +++ b/internal/_testing.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // partial `DisposableStack` polyfill // https://github.com/tc39/proposal-explicit-resource-management diff --git a/internal/assertion_state.ts b/internal/assertion_state.ts index c206cf6c64d0..f5e0bcb24d2a 100644 --- a/internal/assertion_state.ts +++ b/internal/assertion_state.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/internal/assertion_state_test.ts b/internal/assertion_state_test.ts index 4f0dcaeb6925..631dbdddd8fa 100644 --- a/internal/assertion_state_test.ts +++ b/internal/assertion_state_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertStringIncludes } from "@std/assert"; import { AssertionState } from "./assertion_state.ts"; diff --git a/internal/build_message.ts b/internal/build_message.ts index 413bf811a60f..13391ca227c1 100644 --- a/internal/build_message.ts +++ b/internal/build_message.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { bgGreen, bgRed, bold, gray, green, red, white } from "./styles.ts"; diff --git a/internal/build_message_test.ts b/internal/build_message_test.ts index 0751e28027fb..4102883a29a5 100644 --- a/internal/build_message_test.ts +++ b/internal/build_message_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { bgGreen, bgRed, bold, gray, green, red, white } from "@std/fmt/colors"; import { buildMessage, createColor, createSign } from "./build_message.ts"; diff --git a/internal/diff.ts b/internal/diff.ts index e6c530550b0f..c45a2475be6d 100644 --- a/internal/diff.ts +++ b/internal/diff.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { DiffResult, DiffType } from "./types.ts"; diff --git a/internal/diff_str.ts b/internal/diff_str.ts index 862103fe7113..1a1f424b5096 100644 --- a/internal/diff_str.ts +++ b/internal/diff_str.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { ChangedDiffResult, DiffResult } from "./types.ts"; diff --git a/internal/diff_str_test.ts b/internal/diff_str_test.ts index 63333d2e5f23..8e63490135d1 100644 --- a/internal/diff_str_test.ts +++ b/internal/diff_str_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { createDetails, diffStr, tokenize, unescape } from "./diff_str.ts"; import { assertEquals } from "@std/assert"; diff --git a/internal/diff_test.ts b/internal/diff_test.ts index 659957315f7d..d9baa45c40c5 100644 --- a/internal/diff_test.ts +++ b/internal/diff_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertFp, backTrace, createCommon, createFp, diff } from "./diff.ts"; import { assertEquals, assertThrows } from "@std/assert"; diff --git a/internal/format.ts b/internal/format.ts index 8b95f284eb2e..33fdd896333c 100644 --- a/internal/format.ts +++ b/internal/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** An inspect function conforming to the shape of `Deno.inspect` and `node:util`'s `inspect` */ diff --git a/internal/format_test.ts b/internal/format_test.ts index c7fabdc00e15..59a13ff96882 100644 --- a/internal/format_test.ts +++ b/internal/format_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { green, red, stripAnsiCode } from "./styles.ts"; import { assertEquals, assertThrows } from "@std/assert"; import { format, type InspectFn } from "./format.ts"; diff --git a/internal/mod.ts b/internal/mod.ts index aa62f2849c25..81446b7ffdcb 100644 --- a/internal/mod.ts +++ b/internal/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** * Internal utilities for the public API of the Deno Standard Library. diff --git a/internal/os.ts b/internal/os.ts index 616aa7bbb01e..44eeabcf0f56 100644 --- a/internal/os.ts +++ b/internal/os.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { checkWindows } from "./_os.ts"; diff --git a/internal/styles.ts b/internal/styles.ts index 8011675f8050..a331df2d05cd 100644 --- a/internal/styles.ts +++ b/internal/styles.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // A module to print ANSI terminal colors. Inspired by chalk, kleur, and colors // on npm. diff --git a/internal/styles_test.ts b/internal/styles_test.ts index 04fe262bea91..1f529c0acddf 100644 --- a/internal/styles_test.ts +++ b/internal/styles_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as c from "./styles.ts"; diff --git a/internal/truncate_build_message.ts b/internal/truncate_build_message.ts index ca3e3c797f3d..5a37487580af 100644 --- a/internal/truncate_build_message.ts +++ b/internal/truncate_build_message.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { CommonDiffResult, DiffResult } from "./types.ts"; /** The environment variable used for setting diff context length. */ diff --git a/internal/truncate_build_message_test.ts b/internal/truncate_build_message_test.ts index 01161372a2c1..b4392ae7a256 100644 --- a/internal/truncate_build_message_test.ts +++ b/internal/truncate_build_message_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { consolidateCommon, truncateDiff } from "./truncate_build_message.ts"; import type { CommonDiffResult } from "@std/internal/types"; diff --git a/internal/types.ts b/internal/types.ts index 1d98f98b91ef..bf1821d49bd3 100644 --- a/internal/types.ts +++ b/internal/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Ways that lines in a diff can be different. */ diff --git a/io/_common.ts b/io/_common.ts index c4ba45bf12a2..750250f5f70d 100644 --- a/io/_common.ts +++ b/io/_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Closer } from "./types.ts"; diff --git a/io/_constants.ts b/io/_constants.ts index 7fe5d46689ff..3948cd322d33 100644 --- a/io/_constants.ts +++ b/io/_constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export const DEFAULT_CHUNK_SIZE = 16_640; diff --git a/io/_test_common.ts b/io/_test_common.ts index 0dfe361955d0..64ab83460d88 100644 --- a/io/_test_common.ts +++ b/io/_test_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export const MIN_READ_BUFFER_SIZE = 16; export const bufsizes = [ diff --git a/io/buffer.ts b/io/buffer.ts index 48f579f6f23a..8de9d6cb0fd2 100644 --- a/io/buffer.ts +++ b/io/buffer.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { copy } from "@std/bytes/copy"; diff --git a/io/buffer_test.ts b/io/buffer_test.ts index 95e2579cb104..670b432118b7 100644 --- a/io/buffer_test.ts +++ b/io/buffer_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This code has been ported almost directly from Go's src/bytes/buffer_test.go // Copyright 2009 The Go Authors. All rights reserved. BSD license. diff --git a/io/copy.ts b/io/copy.ts index a0767da4d6d1..fe3ae63e8fc0 100644 --- a/io/copy.ts +++ b/io/copy.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DEFAULT_BUFFER_SIZE } from "./_constants.ts"; diff --git a/io/copy_test.ts b/io/copy_test.ts index be1874a83d54..84aa08f58f61 100644 --- a/io/copy_test.ts +++ b/io/copy_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { copy } from "./copy.ts"; import { assertEquals, assertStrictEquals } from "@std/assert"; diff --git a/io/iterate_reader.ts b/io/iterate_reader.ts index 5d24c6a7c983..41b9b0f85395 100644 --- a/io/iterate_reader.ts +++ b/io/iterate_reader.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DEFAULT_BUFFER_SIZE } from "./_constants.ts"; diff --git a/io/iterate_reader_test.ts b/io/iterate_reader_test.ts index 47a2c2248a3c..713fb2826ead 100644 --- a/io/iterate_reader_test.ts +++ b/io/iterate_reader_test.ts @@ -1,5 +1,5 @@ import { assertEquals } from "@std/assert"; -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { iterateReader, iterateReaderSync } from "./iterate_reader.ts"; import { readerFromStreamReader } from "./reader_from_stream_reader.ts"; diff --git a/io/mod.ts b/io/mod.ts index abaa84eac26d..889858eaef32 100644 --- a/io/mod.ts +++ b/io/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/io/read_all.ts b/io/read_all.ts index e7851db1699d..547beccc74ec 100644 --- a/io/read_all.ts +++ b/io/read_all.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { concat } from "@std/bytes/concat"; diff --git a/io/read_all_test.ts b/io/read_all_test.ts index 93dc04348ecc..3aa752c697a7 100644 --- a/io/read_all_test.ts +++ b/io/read_all_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { readAll, readAllSync } from "./read_all.ts"; diff --git a/io/reader_from_stream_reader.ts b/io/reader_from_stream_reader.ts index b16e230324da..e893807d3098 100644 --- a/io/reader_from_stream_reader.ts +++ b/io/reader_from_stream_reader.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { Buffer } from "./buffer.ts"; diff --git a/io/reader_from_stream_reader_test.ts b/io/reader_from_stream_reader_test.ts index 6ad6ee4c9320..4e8b6912dcf7 100644 --- a/io/reader_from_stream_reader_test.ts +++ b/io/reader_from_stream_reader_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { copy } from "./copy.ts"; diff --git a/io/to_readable_stream.ts b/io/to_readable_stream.ts index 505c5e5c0743..4581dc4a2710 100644 --- a/io/to_readable_stream.ts +++ b/io/to_readable_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DEFAULT_CHUNK_SIZE } from "./_constants.ts"; diff --git a/io/to_readable_stream_test.ts b/io/to_readable_stream_test.ts index cffa10db0dd8..7ce60c16ca38 100644 --- a/io/to_readable_stream_test.ts +++ b/io/to_readable_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toReadableStream } from "./to_readable_stream.ts"; diff --git a/io/to_writable_stream.ts b/io/to_writable_stream.ts index 24e8c8546e47..a8da06683821 100644 --- a/io/to_writable_stream.ts +++ b/io/to_writable_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { writeAll } from "./write_all.ts"; diff --git a/io/to_writable_stream_test.ts b/io/to_writable_stream_test.ts index 2edf63b32aab..55d12832da77 100644 --- a/io/to_writable_stream_test.ts +++ b/io/to_writable_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toWritableStream } from "./to_writable_stream.ts"; diff --git a/io/types.ts b/io/types.ts index 719f4621b87d..25b345d64252 100644 --- a/io/types.ts +++ b/io/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/io/write_all.ts b/io/write_all.ts index 19a0d947681e..49b5306a95cd 100644 --- a/io/write_all.ts +++ b/io/write_all.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Writer, WriterSync } from "./types.ts"; diff --git a/io/write_all_test.ts b/io/write_all_test.ts index 8e62728159c9..91f26b6e8126 100644 --- a/io/write_all_test.ts +++ b/io/write_all_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { writeAll, writeAllSync } from "./write_all.ts"; diff --git a/json/_common.ts b/json/_common.ts index 2a6e2ef32c15..8cbd7d838efe 100644 --- a/json/_common.ts +++ b/json/_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { JsonValue } from "./types.ts"; /** JSON.parse with detailed error message. */ diff --git a/json/_test_utils.ts b/json/_test_utils.ts index 9f10fa4c8d77..55560f951b1e 100644 --- a/json/_test_utils.ts +++ b/json/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import type { ConcatenatedJsonParseStream } from "./concatenated_json_parse_stream.ts"; import type { JsonParseStream } from "./parse_stream.ts"; diff --git a/json/concatenated_json_parse_stream.ts b/json/concatenated_json_parse_stream.ts index 949925bda0ed..738e3c023fe2 100644 --- a/json/concatenated_json_parse_stream.ts +++ b/json/concatenated_json_parse_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toTransformStream } from "@std/streams/to-transform-stream"; import type { JsonValue } from "./types.ts"; import { parse } from "./_common.ts"; diff --git a/json/concatenated_json_parse_stream_test.ts b/json/concatenated_json_parse_stream_test.ts index 147826c08cec..6f778ff2c754 100644 --- a/json/concatenated_json_parse_stream_test.ts +++ b/json/concatenated_json_parse_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { ConcatenatedJsonParseStream } from "./concatenated_json_parse_stream.ts"; import { assertInvalidParse, assertValidParse } from "./_test_utils.ts"; diff --git a/json/mod.ts b/json/mod.ts index a3a3e014dc37..03cfcf76c942 100644 --- a/json/mod.ts +++ b/json/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Utilities for parsing streaming JSON data. diff --git a/json/parse_stream.ts b/json/parse_stream.ts index ecb051d2e83e..15d7150dc572 100644 --- a/json/parse_stream.ts +++ b/json/parse_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { JsonValue } from "./types.ts"; diff --git a/json/parse_stream_test.ts b/json/parse_stream_test.ts index 07ae6b88afd7..7082c649ac66 100644 --- a/json/parse_stream_test.ts +++ b/json/parse_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { TextDelimiterStream } from "@std/streams/text-delimiter-stream"; diff --git a/json/stringify_stream.ts b/json/stringify_stream.ts index 704d8086609d..830e63ba29ab 100644 --- a/json/stringify_stream.ts +++ b/json/stringify_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode JsonStringifyStream}. */ diff --git a/json/stringify_stream_test.ts b/json/stringify_stream_test.ts index 6e909fe78006..f3f7a9223ffd 100644 --- a/json/stringify_stream_test.ts +++ b/json/stringify_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { diff --git a/json/types.ts b/json/types.ts index a059678dce28..06022a31eb6e 100644 --- a/json/types.ts +++ b/json/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** The type of the result of parsing JSON. */ diff --git a/jsonc/mod.ts b/jsonc/mod.ts index d6af87c40b8f..ca5fc80c02e0 100644 --- a/jsonc/mod.ts +++ b/jsonc/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/jsonc/parse.ts b/jsonc/parse.ts index 4ed32cd0c8d0..608b65b1503c 100644 --- a/jsonc/parse.ts +++ b/jsonc/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { JsonValue } from "@std/json/types"; diff --git a/jsonc/parse_test.ts b/jsonc/parse_test.ts index 3e57926fbd72..6d66def312b7 100644 --- a/jsonc/parse_test.ts +++ b/jsonc/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { parse } from "./parse.ts"; import { diff --git a/jsonc/testdata/JSONTestSuite/test.ts b/jsonc/testdata/JSONTestSuite/test.ts index 9ab6886aa91d..a430654f3955 100644 --- a/jsonc/testdata/JSONTestSuite/test.ts +++ b/jsonc/testdata/JSONTestSuite/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as JSONC from "../../parse.ts"; import { assertEquals } from "../../../assert/mod.ts"; diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-1.js index 91049763e6b5..0eef4a61b1f1 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-2.js index 66b8b14b51ee..039d62d8ba03 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-3.js index b70e96f77aa9..ef65f0e75405 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-4.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-4.js index f75fc9fca459..c1cd2a703040 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-5.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-5.js index 861b8891ca0b..0455c155a174 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-5.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-5.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-6.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-6.js index 44cb517eebec..ff9da8c1a2a1 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-6.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-6.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-8.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-8.js index 40fb645fd1c9..4f21dfe2b85e 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-8.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-8.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-9.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-9.js index 83b85d4c98b0..b2452a2672f4 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-9.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-0-9.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-1.js index c1c4d4976266..644c76b4746d 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-2.js index 6da1db3fce66..9ec0efff8ead 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-3.js index 6fefdfef33d6..5d78ce48c38a 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-4.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-4.js index 91d5fc12f160..564238973501 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g1-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-1.js index 85e0f662d0d9..2c05d06a4ada 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-2.js index 63edb7545fba..4e9cc558f850 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-3.js index 8eb394ed4203..9c4ff649d420 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-4.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-4.js index 8b22544865a0..83760a4b9b15 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-5.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-5.js index 6d293600e280..7dd84adb81b2 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-5.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g2-5.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-1.js index 389c264b791a..6331c1db1314 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-2.js index 09b8bc9e31e9..5cfc5169937b 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-3.js index 4e8213ba7ed3..7dce39b66b35 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-4.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-4.js index 9a73a58d905e..555306619d20 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g4-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-1.js index 2438c53c6865..58bff54bb20f 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-2.js index 52ab298db95b..0fb294119810 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-3.js index 094c2bf758a5..60f5efd6e461 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g5-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-1.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-1.js index 7ac88f9963cc..d03ccee1ce2b 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-2.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-2.js index 7f830ac305fb..1596c18f94b7 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-3.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-3.js index 83d7a09927d6..d7b45c6df95c 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-4.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-4.js index d30d026e17a6..849845926a55 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-5.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-5.js index 116d0a5ba2aa..a3b72ab6d6b2 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-5.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-5.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-6.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-6.js index 2fcc3da933a4..4c128a35a462 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-6.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-6.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-7.js b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-7.js index b1df5efd4231..e9e4e174e622 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-7.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.1.1-g6-7.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-1.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-1.js index 78b418d90b46..259a34af979d 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-1.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-10.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-10.js index 5b3bf08b75b1..7332f8c902f5 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-10.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-10.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-2.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-2.js index 6ab0e55e5659..e10069ef0308 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-2.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-2.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-3.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-3.js index f71a672fc185..963e23fe07e6 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-3.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-3.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-4.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-4.js index 4c2fe2ee0a42..735ecaa39f23 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-4.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-4.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-5.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-5.js index 9e51b9e550b2..78769252117f 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-5.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-5.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-6.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-6.js index 12bf2f8f100f..6c63c6c17d6b 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-6.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-6.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-7.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-7.js index 69fde465fd3d..3e4a6957587c 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-7.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-7.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-8.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-8.js index e31de7013acb..40b450899894 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-8.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-8.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/15.12.2-2-9.js b/jsonc/testdata/test262/JSON/parse/15.12.2-2-9.js index 293602cbde44..d58a5b660b68 100644 --- a/jsonc/testdata/test262/JSON/parse/15.12.2-2-9.js +++ b/jsonc/testdata/test262/JSON/parse/15.12.2-2-9.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/S15.12.2_A1.js b/jsonc/testdata/test262/JSON/parse/S15.12.2_A1.js index eaf5f0cf52a0..c09a5ae55e17 100644 --- a/jsonc/testdata/test262/JSON/parse/S15.12.2_A1.js +++ b/jsonc/testdata/test262/JSON/parse/S15.12.2_A1.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2011 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/duplicate-proto.js b/jsonc/testdata/test262/JSON/parse/duplicate-proto.js index c00e13976014..4dbc2a0fa419 100644 --- a/jsonc/testdata/test262/JSON/parse/duplicate-proto.js +++ b/jsonc/testdata/test262/JSON/parse/duplicate-proto.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2020 devsnek. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/invalid-whitespace.js b/jsonc/testdata/test262/JSON/parse/invalid-whitespace.js index 3d31d624f72f..3143ea56e6e2 100644 --- a/jsonc/testdata/test262/JSON/parse/invalid-whitespace.js +++ b/jsonc/testdata/test262/JSON/parse/invalid-whitespace.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/name.js b/jsonc/testdata/test262/JSON/parse/name.js index 90d8f166e4ea..d2804d04fc4a 100644 --- a/jsonc/testdata/test262/JSON/parse/name.js +++ b/jsonc/testdata/test262/JSON/parse/name.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2015 André Bargull. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/jsonc/testdata/test262/JSON/parse/text-negative-zero.js b/jsonc/testdata/test262/JSON/parse/text-negative-zero.js index 65c12eea62a7..f726117a9e0f 100644 --- a/jsonc/testdata/test262/JSON/parse/text-negative-zero.js +++ b/jsonc/testdata/test262/JSON/parse/text-negative-zero.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2019 Alexey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- diff --git a/jsonc/testdata/test262/JSON/parse/text-non-string-primitive.js b/jsonc/testdata/test262/JSON/parse/text-non-string-primitive.js index e1f0ec08cb4e..28fedd79ff1b 100644 --- a/jsonc/testdata/test262/JSON/parse/text-non-string-primitive.js +++ b/jsonc/testdata/test262/JSON/parse/text-non-string-primitive.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2019 Alexey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- diff --git a/jsonc/testdata/test262/JSON/parse/text-object-abrupt.js b/jsonc/testdata/test262/JSON/parse/text-object-abrupt.js index f668ac2d399d..9412cf1cd5a6 100644 --- a/jsonc/testdata/test262/JSON/parse/text-object-abrupt.js +++ b/jsonc/testdata/test262/JSON/parse/text-object-abrupt.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2019 Alexey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- diff --git a/jsonc/testdata/test262/JSON/parse/text-object.js b/jsonc/testdata/test262/JSON/parse/text-object.js index c1bd0f302aa6..68b22913bdf9 100644 --- a/jsonc/testdata/test262/JSON/parse/text-object.js +++ b/jsonc/testdata/test262/JSON/parse/text-object.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright (C) 2019 Alexey Shvayka. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- diff --git a/jsonc/testdata/test262/assert.js b/jsonc/testdata/test262/assert.js index 4cacfbd88657..e00d13c35a1f 100644 --- a/jsonc/testdata/test262/assert.js +++ b/jsonc/testdata/test262/assert.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Ported from test262 // https://github.com/tc39/test262/blob/488eb365db7c613d52e72a9f5b8726684906e540/harness/assert.js // Copyright (C) 2017 Ecma International. All rights reserved. diff --git a/jsonc/testdata/test262/propertyHelper.js b/jsonc/testdata/test262/propertyHelper.js index 1b8676971eb1..c029d5a287be 100644 --- a/jsonc/testdata/test262/propertyHelper.js +++ b/jsonc/testdata/test262/propertyHelper.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Ported from test262 // https://github.com/tc39/test262/blob/276e79d62e8c45bc1e427fc680320c4899eace27/harness/propertyHelper.js // Copyright (C) 2017 Ecma International. All rights reserved. diff --git a/jsonc/testdata/test262/sta.js b/jsonc/testdata/test262/sta.js index b2fd216e7f5d..46c9186c01f9 100644 --- a/jsonc/testdata/test262/sta.js +++ b/jsonc/testdata/test262/sta.js @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Ported from test262 // https://github.com/tc39/test262/blob/488eb365db7c613d52e72a9f5b8726684906e540/harness/sta.js // Copyright (c) 2012 Ecma International. All rights reserved. diff --git a/jsonc/testdata/test262/test.ts b/jsonc/testdata/test262/test.ts index 625be92221ba..0f9bb829576b 100644 --- a/jsonc/testdata/test262/test.ts +++ b/jsonc/testdata/test262/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { walk } from "../../../fs/mod.ts"; import { fromFileUrl } from "../../../path/mod.ts"; diff --git a/math/clamp.ts b/math/clamp.ts index c83b36b3d181..8d81f6b493e5 100644 --- a/math/clamp.ts +++ b/math/clamp.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/math/clamp_test.ts b/math/clamp_test.ts index a6c5b9c88add..e7f70869c106 100644 --- a/math/clamp_test.ts +++ b/math/clamp_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { clamp } from "./clamp.ts"; import { assert, assertEquals, assertThrows } from "@std/assert"; diff --git a/math/mod.ts b/math/mod.ts index e22611c4fc11..4e788dd1656a 100644 --- a/math/mod.ts +++ b/math/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/math/modulo.ts b/math/modulo.ts index d79045940a39..ee7afbe1f3bf 100644 --- a/math/modulo.ts +++ b/math/modulo.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/math/modulo_test.ts b/math/modulo_test.ts index 3ae7ef251f7a..4d0213d1bf59 100644 --- a/math/modulo_test.ts +++ b/math/modulo_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { modulo } from "./modulo.ts"; import { assert, assertEquals } from "@std/assert"; diff --git a/math/round_to.ts b/math/round_to.ts index 1e20f6b34a7a..f8f584444b00 100644 --- a/math/round_to.ts +++ b/math/round_to.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/math/round_to_test.ts b/math/round_to_test.ts index 5d83c3cd76c1..a3d1b888e5e8 100644 --- a/math/round_to_test.ts +++ b/math/round_to_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { roundTo } from "./round_to.ts"; import { assertEquals, assertThrows } from "@std/assert"; diff --git a/media_types/_db.ts b/media_types/_db.ts index 8089746c1531..2b44084e0b74 100644 --- a/media_types/_db.ts +++ b/media_types/_db.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import db from "./vendor/db.ts"; import type { DBEntry } from "./_util.ts"; diff --git a/media_types/_util.ts b/media_types/_util.ts index 2be869bfd37c..a341117f2e92 100644 --- a/media_types/_util.ts +++ b/media_types/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export interface DBEntry { source: string; diff --git a/media_types/_util_test.ts b/media_types/_util_test.ts index cb3eedf9c3ea..22da8e71f625 100644 --- a/media_types/_util_test.ts +++ b/media_types/_util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { diff --git a/media_types/all_extensions.ts b/media_types/all_extensions.ts index 404c2d96ec90..255ba9962d64 100644 --- a/media_types/all_extensions.ts +++ b/media_types/all_extensions.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parseMediaType } from "./parse_media_type.ts"; diff --git a/media_types/all_extensions_test.ts b/media_types/all_extensions_test.ts index 2e378bed5d83..e1ca52d3bf60 100644 --- a/media_types/all_extensions_test.ts +++ b/media_types/all_extensions_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { allExtensions } from "./all_extensions.ts"; diff --git a/media_types/content_type.ts b/media_types/content_type.ts index 0ee7e0fb93e5..0fe30659c008 100644 --- a/media_types/content_type.ts +++ b/media_types/content_type.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parseMediaType } from "./parse_media_type.ts"; diff --git a/media_types/content_type_test.ts b/media_types/content_type_test.ts index b6d2ae790419..e380ba68c42b 100644 --- a/media_types/content_type_test.ts +++ b/media_types/content_type_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { contentType } from "./content_type.ts"; import { assertEquals } from "@std/assert"; diff --git a/media_types/extension.ts b/media_types/extension.ts index 407337432601..c1f98c7278d1 100644 --- a/media_types/extension.ts +++ b/media_types/extension.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { allExtensions } from "./all_extensions.ts"; diff --git a/media_types/extension_test.ts b/media_types/extension_test.ts index 3f2c619936d7..794e2e682da2 100644 --- a/media_types/extension_test.ts +++ b/media_types/extension_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { extension } from "./mod.ts"; diff --git a/media_types/format_media_type.ts b/media_types/format_media_type.ts index d517d3b99d90..7097caa3bf21 100644 --- a/media_types/format_media_type.ts +++ b/media_types/format_media_type.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isIterator, isToken, needsEncoding } from "./_util.ts"; diff --git a/media_types/format_media_type_test.ts b/media_types/format_media_type_test.ts index 72a5967473ca..dac3b2d1e370 100644 --- a/media_types/format_media_type_test.ts +++ b/media_types/format_media_type_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { formatMediaType } from "./mod.ts"; diff --git a/media_types/get_charset.ts b/media_types/get_charset.ts index a8cb43a5beb9..fee37742480e 100644 --- a/media_types/get_charset.ts +++ b/media_types/get_charset.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parseMediaType } from "./parse_media_type.ts"; diff --git a/media_types/get_charset_test.ts b/media_types/get_charset_test.ts index a5320b6ff12d..ccf7589edf10 100644 --- a/media_types/get_charset_test.ts +++ b/media_types/get_charset_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { getCharset } from "./mod.ts"; diff --git a/media_types/mod.ts b/media_types/mod.ts index 5e43d206912d..781a333e1966 100644 --- a/media_types/mod.ts +++ b/media_types/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/media_types/parse_media_type.ts b/media_types/parse_media_type.ts index 2349b72f8a25..1be039e97439 100644 --- a/media_types/parse_media_type.ts +++ b/media_types/parse_media_type.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { consumeMediaParam, decode2331Encoding } from "./_util.ts"; diff --git a/media_types/parse_media_type_test.ts b/media_types/parse_media_type_test.ts index 7774fde6f597..bbfae57dd937 100644 --- a/media_types/parse_media_type_test.ts +++ b/media_types/parse_media_type_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { parseMediaType } from "./mod.ts"; diff --git a/media_types/type_by_extension.ts b/media_types/type_by_extension.ts index 10d0698af9c1..fc693b40e4d6 100644 --- a/media_types/type_by_extension.ts +++ b/media_types/type_by_extension.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { types } from "./_db.ts"; diff --git a/media_types/type_by_extension_test.ts b/media_types/type_by_extension_test.ts index 5a63ba535408..0ab92a896dab 100644 --- a/media_types/type_by_extension_test.ts +++ b/media_types/type_by_extension_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { typeByExtension } from "./mod.ts"; diff --git a/media_types/vendor/db.ts b/media_types/vendor/db.ts index 087acc0232f2..07c7fd1c68a6 100644 --- a/media_types/vendor/db.ts +++ b/media_types/vendor/db.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/media_types/vendor/update.ts b/media_types/vendor/update.ts index 7998178b8b0b..36ed40ff8a31 100644 --- a/media_types/vendor/update.ts +++ b/media_types/vendor/update.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // `deno fmt` must be run after running this script. const response = await fetch( diff --git a/msgpack/_types.ts b/msgpack/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/msgpack/_types.ts +++ b/msgpack/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/msgpack/decode.ts b/msgpack/decode.ts index 60f4becf8f75..271f174a723c 100644 --- a/msgpack/decode.ts +++ b/msgpack/decode.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { ValueType } from "./encode.ts"; diff --git a/msgpack/decode_test.ts b/msgpack/decode_test.ts index 3972111c9281..2f712334cbf1 100644 --- a/msgpack/decode_test.ts +++ b/msgpack/decode_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { decode } from "./decode.ts"; diff --git a/msgpack/encode.ts b/msgpack/encode.ts index 2d3c2f834104..c316b3b20091 100644 --- a/msgpack/encode.ts +++ b/msgpack/encode.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { concat } from "@std/bytes/concat"; diff --git a/msgpack/encode_test.ts b/msgpack/encode_test.ts index 444f3aa02b20..1a87093715b2 100644 --- a/msgpack/encode_test.ts +++ b/msgpack/encode_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import * as path from "@std/path"; diff --git a/msgpack/mod.ts b/msgpack/mod.ts index cd22bcc300d7..34785b41d706 100644 --- a/msgpack/mod.ts +++ b/msgpack/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/net/get_available_port.ts b/net/get_available_port.ts index 3b1f9f7bda9e..a7e466304ce2 100644 --- a/net/get_available_port.ts +++ b/net/get_available_port.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** Options for {@linkcode getAvailablePort}. */ export interface GetAvailablePortOptions { diff --git a/net/get_available_port_test.ts b/net/get_available_port_test.ts index 681d2f1ee337..47bafefc5b9c 100644 --- a/net/get_available_port_test.ts +++ b/net/get_available_port_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getAvailablePort } from "./get_available_port.ts"; import { assertEquals, assertNotEquals, assertThrows } from "@std/assert"; diff --git a/net/mod.ts b/net/mod.ts index 792b7b63e982..c8d115b7fa64 100644 --- a/net/mod.ts +++ b/net/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Network utilities. diff --git a/net/unstable_get_network_address.ts b/net/unstable_get_network_address.ts index 407181afbd41..9b08e4361a53 100644 --- a/net/unstable_get_network_address.ts +++ b/net/unstable_get_network_address.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Gets the IPv4 or IPv6 network address of the machine. * diff --git a/net/unstable_get_network_address_test.ts b/net/unstable_get_network_address_test.ts index d29bc9178943..ef0ff8208313 100644 --- a/net/unstable_get_network_address_test.ts +++ b/net/unstable_get_network_address_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getNetworkAddress } from "./unstable_get_network_address.ts"; import { stub } from "@std/testing/mock"; import { assertEquals } from "@std/assert"; diff --git a/net/unstable_ip.ts b/net/unstable_ip.ts index d19ccf62f864..e412a20bd4a5 100644 --- a/net/unstable_ip.ts +++ b/net/unstable_ip.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Validates whether a given string is a valid IPv4 address. diff --git a/net/unstable_ip_test.ts b/net/unstable_ip_test.ts index 58be493078ef..da6864a75f48 100644 --- a/net/unstable_ip_test.ts +++ b/net/unstable_ip_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isIPv4, diff --git a/path/_common/assert_path.ts b/path/_common/assert_path.ts index 9d6ffaafd674..8ae7e265479f 100644 --- a/path/_common/assert_path.ts +++ b/path/_common/assert_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. export function assertPath(path?: string) { diff --git a/path/_common/assert_path_test.ts b/path/_common/assert_path_test.ts index 2ce05bb6676a..5742ad65e8c3 100644 --- a/path/_common/assert_path_test.ts +++ b/path/_common/assert_path_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { assertPath } from "./assert_path.ts"; diff --git a/path/_common/basename.ts b/path/_common/basename.ts index dec849d53497..87ab37d4d8da 100644 --- a/path/_common/basename.ts +++ b/path/_common/basename.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "./assert_path.ts"; diff --git a/path/_common/basename_test.ts b/path/_common/basename_test.ts index 8bb86d605c46..44649f02926a 100644 --- a/path/_common/basename_test.ts +++ b/path/_common/basename_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { assertArgs, lastPathSegment, stripSuffix } from "./basename.ts"; diff --git a/path/_common/common.ts b/path/_common/common.ts index 702a1c9e7d7f..9ff1619ca04e 100644 --- a/path/_common/common.ts +++ b/path/_common/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export function common(paths: string[], sep: string): string { diff --git a/path/_common/constants.ts b/path/_common/constants.ts index 2dae0df89f22..678035752bc5 100644 --- a/path/_common/constants.ts +++ b/path/_common/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/_common/dirname.ts b/path/_common/dirname.ts index a3d0a0caeeb0..a2d1248786f7 100644 --- a/path/_common/dirname.ts +++ b/path/_common/dirname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "./assert_path.ts"; diff --git a/path/_common/format.ts b/path/_common/format.ts index 0174b7db68a5..a7c1c8ef559c 100644 --- a/path/_common/format.ts +++ b/path/_common/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { ParsedPath } from "../types.ts"; diff --git a/path/_common/format_test.ts b/path/_common/format_test.ts index 5a9faca46ffb..ae2f4f945bac 100644 --- a/path/_common/format_test.ts +++ b/path/_common/format_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { _format, assertArg } from "./format.ts"; diff --git a/path/_common/from_file_url.ts b/path/_common/from_file_url.ts index 6d5a7c7b3ef8..e94b28ba6fd2 100644 --- a/path/_common/from_file_url.ts +++ b/path/_common/from_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export function assertArg(url: URL | string) { diff --git a/path/_common/glob_to_reg_exp.ts b/path/_common/glob_to_reg_exp.ts index 1af751fb5c43..dd3df5da8b14 100644 --- a/path/_common/glob_to_reg_exp.ts +++ b/path/_common/glob_to_reg_exp.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/_common/normalize.ts b/path/_common/normalize.ts index a3d0a0caeeb0..a2d1248786f7 100644 --- a/path/_common/normalize.ts +++ b/path/_common/normalize.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "./assert_path.ts"; diff --git a/path/_common/normalize_string.ts b/path/_common/normalize_string.ts index dbcf59029bc3..bf8e032a4e3e 100644 --- a/path/_common/normalize_string.ts +++ b/path/_common/normalize_string.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/_common/normalize_string_test.ts b/path/_common/normalize_string_test.ts index 21b3b8a47d26..dcd605361f83 100644 --- a/path/_common/normalize_string_test.ts +++ b/path/_common/normalize_string_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { CHAR_FORWARD_SLASH } from "./constants.ts"; diff --git a/path/_common/relative.ts b/path/_common/relative.ts index 7e938ee941a1..640e7957de96 100644 --- a/path/_common/relative.ts +++ b/path/_common/relative.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "./assert_path.ts"; diff --git a/path/_common/strip_trailing_separators.ts b/path/_common/strip_trailing_separators.ts index c9821fd126df..f11dcfb9fad3 100644 --- a/path/_common/strip_trailing_separators.ts +++ b/path/_common/strip_trailing_separators.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/_common/to_file_url.ts b/path/_common/to_file_url.ts index 57a633bd3c0e..659b95e3ab24 100644 --- a/path/_common/to_file_url.ts +++ b/path/_common/to_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const WHITESPACE_ENCODINGS: Record = { diff --git a/path/_common/to_file_url_test.ts b/path/_common/to_file_url_test.ts index 47b3b0a0acc6..ed2f8f066389 100644 --- a/path/_common/to_file_url_test.ts +++ b/path/_common/to_file_url_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { encodeWhitespace } from "./to_file_url.ts"; diff --git a/path/basename.ts b/path/basename.ts index 77de4f7dcaa3..89e381e35001 100644 --- a/path/basename.ts +++ b/path/basename.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/basename_test.ts b/path/basename_test.ts index ed3c432a3a7f..4c35d48d05fa 100644 --- a/path/basename_test.ts +++ b/path/basename_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals, assertThrows } from "@std/assert"; diff --git a/path/common.ts b/path/common.ts index 9486490d9cbb..36c9d678cf6e 100644 --- a/path/common.ts +++ b/path/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { common as _common } from "./_common/common.ts"; diff --git a/path/common_test.ts b/path/common_test.ts index 05f13912f95b..db18ec809be6 100644 --- a/path/common_test.ts +++ b/path/common_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { common } from "./mod.ts"; import * as posix from "./posix/mod.ts"; diff --git a/path/constants.ts b/path/constants.ts index 517d9d9d7ef8..b06d3c86db55 100644 --- a/path/constants.ts +++ b/path/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/dirname.ts b/path/dirname.ts index 9e68cfa9892e..2ac73fd8cbed 100644 --- a/path/dirname.ts +++ b/path/dirname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/dirname_test.ts b/path/dirname_test.ts index ae591f6d5c6d..e7ed7b925b40 100644 --- a/path/dirname_test.ts +++ b/path/dirname_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals, assertThrows } from "@std/assert"; diff --git a/path/extname.ts b/path/extname.ts index 453c53328461..a5a2ee9507a0 100644 --- a/path/extname.ts +++ b/path/extname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/extname_test.ts b/path/extname_test.ts index 8d2f4b8e2561..2c6f0b8971bf 100644 --- a/path/extname_test.ts +++ b/path/extname_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals } from "@std/assert"; diff --git a/path/format.ts b/path/format.ts index 583503d79108..aab1b0e31e24 100644 --- a/path/format.ts +++ b/path/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/from_file_url.ts b/path/from_file_url.ts index a68b9b6a28eb..93166de8fadb 100644 --- a/path/from_file_url.ts +++ b/path/from_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/from_file_url_test.ts b/path/from_file_url_test.ts index df0ce203cffd..3a06f7075091 100644 --- a/path/from_file_url_test.ts +++ b/path/from_file_url_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as posix from "./posix/mod.ts"; import * as windows from "./windows/mod.ts"; import { assertEquals, assertThrows } from "@std/assert"; diff --git a/path/glob_to_regexp.ts b/path/glob_to_regexp.ts index 31827b83f81a..5a2a08d17d10 100644 --- a/path/glob_to_regexp.ts +++ b/path/glob_to_regexp.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "./_common/glob_to_reg_exp.ts"; diff --git a/path/glob_to_regexp_test.ts b/path/glob_to_regexp_test.ts index 093509ee2b2b..0816b2179b23 100644 --- a/path/glob_to_regexp_test.ts +++ b/path/glob_to_regexp_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { type GlobOptions, globToRegExp } from "./glob_to_regexp.ts"; import { globToRegExp as posixGlobToRegExp } from "./posix/glob_to_regexp.ts"; diff --git a/path/is_absolute.ts b/path/is_absolute.ts index 551235902305..144b7cfbb339 100644 --- a/path/is_absolute.ts +++ b/path/is_absolute.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/is_absolute_test.ts b/path/is_absolute_test.ts index 0d8c9ad41da9..859426820c65 100644 --- a/path/is_absolute_test.ts +++ b/path/is_absolute_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals } from "@std/assert"; diff --git a/path/is_glob.ts b/path/is_glob.ts index a59dfee90c2b..2b6ed0bbe1a4 100644 --- a/path/is_glob.ts +++ b/path/is_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/is_glob_test.ts b/path/is_glob_test.ts index cb94f3180cb0..6c42e0dce12d 100644 --- a/path/is_glob_test.ts +++ b/path/is_glob_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { isGlob } from "./is_glob.ts"; import { disposableStack } from "../internal/_testing.ts"; diff --git a/path/join.ts b/path/join.ts index f5a5bc8442fa..5dd055910a10 100644 --- a/path/join.ts +++ b/path/join.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/join_globs.ts b/path/join_globs.ts index 64857abf4665..0512f04e3c17 100644 --- a/path/join_globs.ts +++ b/path/join_globs.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "./_common/glob_to_reg_exp.ts"; diff --git a/path/join_globs_test.ts b/path/join_globs_test.ts index 032ccb4ddb1c..44d6a71ac210 100644 --- a/path/join_globs_test.ts +++ b/path/join_globs_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as windows from "./windows/mod.ts"; import * as posix from "./posix/mod.ts"; diff --git a/path/join_test.ts b/path/join_test.ts index f1e41bcaa823..152124c7e853 100644 --- a/path/join_test.ts +++ b/path/join_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as posix from "./posix/mod.ts"; import * as windows from "./windows/mod.ts"; diff --git a/path/mod.ts b/path/mod.ts index 91c2bc5d070b..133e52ab24e9 100644 --- a/path/mod.ts +++ b/path/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported mostly from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/normalize.ts b/path/normalize.ts index 0aefbdc2ab38..84c099a43660 100644 --- a/path/normalize.ts +++ b/path/normalize.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/normalize_glob.ts b/path/normalize_glob.ts index 52c90d552f95..733ea3509c4e 100644 --- a/path/normalize_glob.ts +++ b/path/normalize_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "./_common/glob_to_reg_exp.ts"; diff --git a/path/normalize_glob_test.ts b/path/normalize_glob_test.ts index a019884a24df..21d14fe13eac 100644 --- a/path/normalize_glob_test.ts +++ b/path/normalize_glob_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { normalizeGlob } from "./normalize_glob.ts"; import * as posix from "./posix/mod.ts"; diff --git a/path/normalize_test.ts b/path/normalize_test.ts index e363d6382458..9698473897b4 100644 --- a/path/normalize_test.ts +++ b/path/normalize_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as windows from "./windows/mod.ts"; import * as posix from "./posix/mod.ts"; diff --git a/path/parse.ts b/path/parse.ts index eecef589d110..89a54a8222bf 100644 --- a/path/parse.ts +++ b/path/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/parse_format_test.ts b/path/parse_format_test.ts index 4e6a78f177d6..dd58abdf1b2b 100644 --- a/path/parse_format_test.ts +++ b/path/parse_format_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import type { ParsedPath } from "./mod.ts"; diff --git a/path/parse_test.ts b/path/parse_test.ts index a08c78e9cc9f..16c3daf9b8dd 100644 --- a/path/parse_test.ts +++ b/path/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import * as windows from "./windows/mod.ts"; diff --git a/path/posix/_util.ts b/path/posix/_util.ts index ff4f87c2aa8e..04e8ad012368 100644 --- a/path/posix/_util.ts +++ b/path/posix/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/posix/basename.ts b/path/posix/basename.ts index 390d60e00c6c..fce380f2ebf1 100644 --- a/path/posix/basename.ts +++ b/path/posix/basename.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/path/posix/common.ts b/path/posix/common.ts index 0f5e04426af2..61255fa7908b 100644 --- a/path/posix/common.ts +++ b/path/posix/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { common as _common } from "../_common/common.ts"; diff --git a/path/posix/constants.ts b/path/posix/constants.ts index 4bc7227bf203..42ee49c51de1 100644 --- a/path/posix/constants.ts +++ b/path/posix/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/posix/dirname.ts b/path/posix/dirname.ts index b11cffe19f19..0451f96f7077 100644 --- a/path/posix/dirname.ts +++ b/path/posix/dirname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/dirname.ts"; diff --git a/path/posix/extname.ts b/path/posix/extname.ts index 3bf411d30c96..04e6bcdbba94 100644 --- a/path/posix/extname.ts +++ b/path/posix/extname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_DOT } from "../_common/constants.ts"; diff --git a/path/posix/format.ts b/path/posix/format.ts index 024bdf972860..9a8dfcb5f308 100644 --- a/path/posix/format.ts +++ b/path/posix/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { _format, assertArg } from "../_common/format.ts"; diff --git a/path/posix/from_file_url.ts b/path/posix/from_file_url.ts index a2517f67686c..24ce6fad19d6 100644 --- a/path/posix/from_file_url.ts +++ b/path/posix/from_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/from_file_url.ts"; diff --git a/path/posix/glob_to_regexp.ts b/path/posix/glob_to_regexp.ts index b4e18b4a4ac1..12af554ebef7 100644 --- a/path/posix/glob_to_regexp.ts +++ b/path/posix/glob_to_regexp.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/path/posix/is_absolute.ts b/path/posix/is_absolute.ts index 83c089eb0bf2..47766fd5b9fd 100644 --- a/path/posix/is_absolute.ts +++ b/path/posix/is_absolute.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "../_common/assert_path.ts"; diff --git a/path/posix/is_glob.ts b/path/posix/is_glob.ts index 91eb2e03e84f..5bcc0fcc09c2 100644 --- a/path/posix/is_glob.ts +++ b/path/posix/is_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export { isGlob } from "../is_glob.ts"; diff --git a/path/posix/join.ts b/path/posix/join.ts index 19f12a164e5b..7155e1f29b73 100644 --- a/path/posix/join.ts +++ b/path/posix/join.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "../_common/assert_path.ts"; diff --git a/path/posix/join_globs.ts b/path/posix/join_globs.ts index 166ed4bd5f08..9a5e178be2f3 100644 --- a/path/posix/join_globs.ts +++ b/path/posix/join_globs.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "../_common/glob_to_reg_exp.ts"; diff --git a/path/posix/mod.ts b/path/posix/mod.ts index 35e3017ec33b..144657323707 100644 --- a/path/posix/mod.ts +++ b/path/posix/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported mostly from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/posix/normalize.ts b/path/posix/normalize.ts index aca48f3f74ea..980af6a69f11 100644 --- a/path/posix/normalize.ts +++ b/path/posix/normalize.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/normalize.ts"; diff --git a/path/posix/normalize_glob.ts b/path/posix/normalize_glob.ts index 7a9195e8bf89..a41e43cf6ece 100644 --- a/path/posix/normalize_glob.ts +++ b/path/posix/normalize_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "../_common/glob_to_reg_exp.ts"; diff --git a/path/posix/parse.ts b/path/posix/parse.ts index 75596f83a5c3..a5bd333382a6 100644 --- a/path/posix/parse.ts +++ b/path/posix/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_DOT } from "../_common/constants.ts"; diff --git a/path/posix/relative.ts b/path/posix/relative.ts index d0980634b690..a578897ad984 100644 --- a/path/posix/relative.ts +++ b/path/posix/relative.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isPosixPathSeparator } from "./_util.ts"; diff --git a/path/posix/resolve.ts b/path/posix/resolve.ts index ff32062d42f7..13bcce6e25a5 100644 --- a/path/posix/resolve.ts +++ b/path/posix/resolve.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { normalizeString } from "../_common/normalize_string.ts"; diff --git a/path/posix/to_file_url.ts b/path/posix/to_file_url.ts index 359fc4a7c38d..7faea9ae3a9b 100644 --- a/path/posix/to_file_url.ts +++ b/path/posix/to_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { encodeWhitespace } from "../_common/to_file_url.ts"; diff --git a/path/posix/to_namespaced_path.ts b/path/posix/to_namespaced_path.ts index d5505d605b96..b8a0bc0c4331 100644 --- a/path/posix/to_namespaced_path.ts +++ b/path/posix/to_namespaced_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/relative.ts b/path/relative.ts index d2fd3b8981c8..78b426bbc8da 100644 --- a/path/relative.ts +++ b/path/relative.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/relative_test.ts b/path/relative_test.ts index 22950c79c9e4..489d6f09a5e9 100644 --- a/path/relative_test.ts +++ b/path/relative_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals } from "@std/assert"; diff --git a/path/resolve.ts b/path/resolve.ts index 05262a62ca67..e52373fc35a0 100644 --- a/path/resolve.ts +++ b/path/resolve.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/resolve_test.ts b/path/resolve_test.ts index a93d163f9d93..8fb6294da9a0 100644 --- a/path/resolve_test.ts +++ b/path/resolve_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ import { assertEquals } from "@std/assert"; diff --git a/path/to_file_url.ts b/path/to_file_url.ts index 31bcd3ac8124..adef713df09d 100644 --- a/path/to_file_url.ts +++ b/path/to_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/to_file_url_test.ts b/path/to_file_url_test.ts index 677dc589e42e..66d4a5644afc 100644 --- a/path/to_file_url_test.ts +++ b/path/to_file_url_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as posix from "./posix/mod.ts"; import * as windows from "./windows/mod.ts"; diff --git a/path/to_namespaced_path.ts b/path/to_namespaced_path.ts index 1b3dc9396386..6c867ff0f512 100644 --- a/path/to_namespaced_path.ts +++ b/path/to_namespaced_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWindows } from "@std/internal/os"; diff --git a/path/to_namespaced_path_test.ts b/path/to_namespaced_path_test.ts index 7956416b4b3b..892f83b9cf18 100644 --- a/path/to_namespaced_path_test.ts +++ b/path/to_namespaced_path_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import * as posix from "./posix/mod.ts"; import * as windows from "./windows/mod.ts"; diff --git a/path/types.ts b/path/types.ts index aa0ce25b7754..aba006e5e8a4 100644 --- a/path/types.ts +++ b/path/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/windows/_util.ts b/path/windows/_util.ts index e49d12c3bccb..2d886a8f709e 100644 --- a/path/windows/_util.ts +++ b/path/windows/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/windows/basename.ts b/path/windows/basename.ts index 47246a306978..eb57a95bf071 100644 --- a/path/windows/basename.ts +++ b/path/windows/basename.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/path/windows/common.ts b/path/windows/common.ts index d62669ea2a3f..393893bf8543 100644 --- a/path/windows/common.ts +++ b/path/windows/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { common as _common } from "../_common/common.ts"; diff --git a/path/windows/constants.ts b/path/windows/constants.ts index ebf66b5ac6a2..dd71de9952c1 100644 --- a/path/windows/constants.ts +++ b/path/windows/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/path/windows/dirname.ts b/path/windows/dirname.ts index 00cb73107a1f..2764de97f206 100644 --- a/path/windows/dirname.ts +++ b/path/windows/dirname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/dirname.ts"; diff --git a/path/windows/extname.ts b/path/windows/extname.ts index 7ee2b718dcd0..9acaac8b17b0 100644 --- a/path/windows/extname.ts +++ b/path/windows/extname.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_COLON, CHAR_DOT } from "../_common/constants.ts"; diff --git a/path/windows/format.ts b/path/windows/format.ts index 45f197469c90..806b5852bfc5 100644 --- a/path/windows/format.ts +++ b/path/windows/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { _format, assertArg } from "../_common/format.ts"; diff --git a/path/windows/from_file_url.ts b/path/windows/from_file_url.ts index 38ec4cd37b72..70a311c75cac 100644 --- a/path/windows/from_file_url.ts +++ b/path/windows/from_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/from_file_url.ts"; diff --git a/path/windows/glob_to_regexp.ts b/path/windows/glob_to_regexp.ts index e13cfb84dcd0..1a6e283b04ef 100644 --- a/path/windows/glob_to_regexp.ts +++ b/path/windows/glob_to_regexp.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/path/windows/is_absolute.ts b/path/windows/is_absolute.ts index 01cdb105381b..643af033874d 100644 --- a/path/windows/is_absolute.ts +++ b/path/windows/is_absolute.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_COLON } from "../_common/constants.ts"; diff --git a/path/windows/is_glob.ts b/path/windows/is_glob.ts index 91eb2e03e84f..5bcc0fcc09c2 100644 --- a/path/windows/is_glob.ts +++ b/path/windows/is_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export { isGlob } from "../is_glob.ts"; diff --git a/path/windows/join.ts b/path/windows/join.ts index cd0d536a5370..16475df18b8d 100644 --- a/path/windows/join.ts +++ b/path/windows/join.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertPath } from "../_common/assert_path.ts"; diff --git a/path/windows/join_globs.ts b/path/windows/join_globs.ts index 0bcb21d52089..0841acf4a12c 100644 --- a/path/windows/join_globs.ts +++ b/path/windows/join_globs.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "../_common/glob_to_reg_exp.ts"; diff --git a/path/windows/mod.ts b/path/windows/mod.ts index 27c6ad1c82ac..37c690c3b5f2 100644 --- a/path/windows/mod.ts +++ b/path/windows/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. // Ported mostly from https://github.com/browserify/path-browserify/ // This module is browser compatible. diff --git a/path/windows/normalize.ts b/path/windows/normalize.ts index 1a038a19e669..b8a93b063947 100644 --- a/path/windows/normalize.ts +++ b/path/windows/normalize.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { assertArg } from "../_common/normalize.ts"; diff --git a/path/windows/normalize_glob.ts b/path/windows/normalize_glob.ts index 630d91d6d60f..d9f00d162812 100644 --- a/path/windows/normalize_glob.ts +++ b/path/windows/normalize_glob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { GlobOptions } from "../_common/glob_to_reg_exp.ts"; diff --git a/path/windows/parse.ts b/path/windows/parse.ts index e4040678ab10..7432ae5e8dc1 100644 --- a/path/windows/parse.ts +++ b/path/windows/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_COLON, CHAR_DOT } from "../_common/constants.ts"; diff --git a/path/windows/relative.ts b/path/windows/relative.ts index 37ce9c884d59..1f494ece736b 100644 --- a/path/windows/relative.ts +++ b/path/windows/relative.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_BACKWARD_SLASH } from "../_common/constants.ts"; diff --git a/path/windows/resolve.ts b/path/windows/resolve.ts index 451d9b5c3881..c3872ddfbeb8 100644 --- a/path/windows/resolve.ts +++ b/path/windows/resolve.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { CHAR_COLON } from "../_common/constants.ts"; diff --git a/path/windows/to_file_url.ts b/path/windows/to_file_url.ts index d5f28a768ee5..c72969e36570 100644 --- a/path/windows/to_file_url.ts +++ b/path/windows/to_file_url.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { encodeWhitespace } from "../_common/to_file_url.ts"; diff --git a/path/windows/to_namespaced_path.ts b/path/windows/to_namespaced_path.ts index c8f64325f9a0..d2d9b119b81b 100644 --- a/path/windows/to_namespaced_path.ts +++ b/path/windows/to_namespaced_path.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/random/_pcg32.ts b/random/_pcg32.ts index 2d6fdbe92d84..e06eb39f7df6 100644 --- a/random/_pcg32.ts +++ b/random/_pcg32.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Based on Rust `rand` crate (https://github.com/rust-random/rand). Apache-2.0 + MIT license. import { platform } from "./_platform.ts"; diff --git a/random/_pcg32_test.ts b/random/_pcg32_test.ts index c2be8e0c5515..641d1a2a50b3 100644 --- a/random/_pcg32_test.ts +++ b/random/_pcg32_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertNotEquals } from "@std/assert"; import { Pcg32 } from "./_pcg32.ts"; diff --git a/random/_platform.ts b/random/_platform.ts index 0cebef7f90cb..7b19a52ec451 100644 --- a/random/_platform.ts +++ b/random/_platform.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export const platform = { // settable property for testing purposes diff --git a/random/_seed_bytes_from_uint64.ts b/random/_seed_bytes_from_uint64.ts index 36ebd43bda97..5e275250489a 100644 --- a/random/_seed_bytes_from_uint64.ts +++ b/random/_seed_bytes_from_uint64.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { Pcg32 } from "./_pcg32.ts"; import type { Uint8Array_ } from "./_types.ts"; diff --git a/random/_test_utils.ts b/random/_test_utils.ts index 5870cd34c1fa..eb8b568a404a 100644 --- a/random/_test_utils.ts +++ b/random/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file no-explicit-any import { platform } from "./_platform.ts"; import { disposableStack } from "../internal/_testing.ts"; diff --git a/random/_types.ts b/random/_types.ts index c64beec5929b..0b7e70de0de2 100644 --- a/random/_types.ts +++ b/random/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/random/between.ts b/random/between.ts index 81c9c7af2585..94488ecb9f62 100644 --- a/random/between.ts +++ b/random/between.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Prng, RandomOptions } from "./_types.ts"; export type { Prng, RandomOptions }; diff --git a/random/between_test.ts b/random/between_test.ts index abcbb74f78f8..30448a860538 100644 --- a/random/between_test.ts +++ b/random/between_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { randomBetween } from "./between.ts"; import { randomSeeded } from "./seeded.ts"; import { diff --git a/random/get_random_values_seeded.ts b/random/get_random_values_seeded.ts index 09ff3c7ece4c..920b9916f723 100644 --- a/random/get_random_values_seeded.ts +++ b/random/get_random_values_seeded.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { Pcg32 } from "./_pcg32.ts"; import type { RandomValueGenerator } from "./_types.ts"; diff --git a/random/integer_between.ts b/random/integer_between.ts index 7c9d5ecd607a..c45a03003480 100644 --- a/random/integer_between.ts +++ b/random/integer_between.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Prng, RandomOptions } from "./_types.ts"; import { randomBetween } from "./between.ts"; diff --git a/random/integer_between_test.ts b/random/integer_between_test.ts index a25428ae78b2..ce5426ea8bf8 100644 --- a/random/integer_between_test.ts +++ b/random/integer_between_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { randomIntegerBetween } from "./integer_between.ts"; import { randomSeeded } from "./seeded.ts"; import { diff --git a/random/mod.ts b/random/mod.ts index b14ca29095d3..74f29c4655e8 100644 --- a/random/mod.ts +++ b/random/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/random/next_float_64.ts b/random/next_float_64.ts index 738216f922de..af036b92c972 100644 --- a/random/next_float_64.ts +++ b/random/next_float_64.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { RandomValueGenerator } from "./_types.ts"; diff --git a/random/next_float_64_test.ts b/random/next_float_64_test.ts index 52f04661daaa..58e0150033fd 100644 --- a/random/next_float_64_test.ts +++ b/random/next_float_64_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getRandomValuesSeeded, type RandomValueGenerator, diff --git a/random/sample.ts b/random/sample.ts index 6c5c83d4a624..11af4a1b7b1e 100644 --- a/random/sample.ts +++ b/random/sample.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Prng, RandomOptions } from "./_types.ts"; import { randomIntegerBetween } from "./integer_between.ts"; diff --git a/random/sample_test.ts b/random/sample_test.ts index 9ce245fb18fc..4107d1a374cf 100644 --- a/random/sample_test.ts +++ b/random/sample_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { sample } from "./sample.ts"; import { diff --git a/random/seeded.ts b/random/seeded.ts index 469e3437fdd6..4b1814bb1df9 100644 --- a/random/seeded.ts +++ b/random/seeded.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { Pcg32 } from "./_pcg32.ts"; import type { Prng } from "./_types.ts"; diff --git a/random/seeded_test.ts b/random/seeded_test.ts index 25a4e01bbfc8..9b0769976ced 100644 --- a/random/seeded_test.ts +++ b/random/seeded_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getRandomValuesSeeded } from "./get_random_values_seeded.ts"; import { nextFloat64 } from "./next_float_64.ts"; import { type Prng, randomSeeded } from "./seeded.ts"; diff --git a/random/shuffle.ts b/random/shuffle.ts index d4a1fffb3766..f1163d75cb3d 100644 --- a/random/shuffle.ts +++ b/random/shuffle.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Prng, RandomOptions } from "./_types.ts"; import { randomIntegerBetween } from "./integer_between.ts"; diff --git a/random/shuffle_test.ts b/random/shuffle_test.ts index ee38e6670fcc..5347a0c1064e 100644 --- a/random/shuffle_test.ts +++ b/random/shuffle_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { randomSeeded } from "./seeded.ts"; import { shuffle } from "./shuffle.ts"; import { diff --git a/regexp/escape.ts b/regexp/escape.ts index ede18340ed45..ebe3b5fabfb5 100644 --- a/regexp/escape.ts +++ b/regexp/escape.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // For future forward-compatibility with regexp `v` flag, `RESERVED_CHARS` is diff --git a/regexp/escape_test.ts b/regexp/escape_test.ts index 26969d7c8aa8..78736dffb16f 100644 --- a/regexp/escape_test.ts +++ b/regexp/escape_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { escape } from "./escape.ts"; import { assertEquals, assertMatch, assertNotMatch } from "@std/assert"; diff --git a/regexp/mod.ts b/regexp/mod.ts index 746070309a9d..61ff73081c3e 100644 --- a/regexp/mod.ts +++ b/regexp/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/semver/_constants.ts b/semver/_constants.ts index 5fcd3a5a211a..99540152dffc 100644 --- a/semver/_constants.ts +++ b/semver/_constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Comparator, SemVer } from "./types.ts"; diff --git a/semver/_shared.ts b/semver/_shared.ts index 935461f398a5..daac7676625f 100644 --- a/semver/_shared.ts +++ b/semver/_shared.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Comparator } from "./types.ts"; diff --git a/semver/_test_comparator_set.ts b/semver/_test_comparator_set.ts index 09376de8e90b..3e89f81b4960 100644 --- a/semver/_test_comparator_set.ts +++ b/semver/_test_comparator_set.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Comparator, SemVer } from "./types.ts"; import { isWildcardComparator } from "./_shared.ts"; diff --git a/semver/can_parse.ts b/semver/can_parse.ts index 91e2591551d0..cf90fc0fcaef 100644 --- a/semver/can_parse.ts +++ b/semver/can_parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parse } from "./parse.ts"; diff --git a/semver/can_parse_test.ts b/semver/can_parse_test.ts index fbc3dbac3d44..3249305e8bfa 100644 --- a/semver/can_parse_test.ts +++ b/semver/can_parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { canParse } from "./can_parse.ts"; diff --git a/semver/compare.ts b/semver/compare.ts index 878c7e079b1c..f56225f62d0d 100644 --- a/semver/compare.ts +++ b/semver/compare.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { diff --git a/semver/compare_test.ts b/semver/compare_test.ts index 8d11ca84eddb..c3d493af9e3c 100644 --- a/semver/compare_test.ts +++ b/semver/compare_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { parse } from "./parse.ts"; import { compare } from "./compare.ts"; diff --git a/semver/difference.ts b/semver/difference.ts index 3df3550c6d7f..96917e918d90 100644 --- a/semver/difference.ts +++ b/semver/difference.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { ReleaseType, SemVer } from "./types.ts"; import { compareIdentifier } from "./_shared.ts"; diff --git a/semver/difference_test.ts b/semver/difference_test.ts index 276d8fe38fd6..705172fe72f0 100644 --- a/semver/difference_test.ts +++ b/semver/difference_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import type { ReleaseType } from "./types.ts"; diff --git a/semver/equals.ts b/semver/equals.ts index 843aba1b7123..41fb4a5d0937 100644 --- a/semver/equals.ts +++ b/semver/equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { compare } from "./compare.ts"; import type { SemVer } from "./types.ts"; diff --git a/semver/equals_test.ts b/semver/equals_test.ts index 57af2a096fa9..dcb13af28666 100644 --- a/semver/equals_test.ts +++ b/semver/equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { equals } from "./equals.ts"; diff --git a/semver/format.ts b/semver/format.ts index adad1fbb2971..0ffab8186208 100644 --- a/semver/format.ts +++ b/semver/format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; diff --git a/semver/format_range.ts b/semver/format_range.ts index 274d9b82742f..f9acb7e8cbad 100644 --- a/semver/format_range.ts +++ b/semver/format_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { format } from "./format.ts"; import type { Comparator, Range } from "./types.ts"; diff --git a/semver/format_range_test.ts b/semver/format_range_test.ts index 0854259daede..303435b4b8af 100644 --- a/semver/format_range_test.ts +++ b/semver/format_range_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { formatRange } from "./format_range.ts"; import { parseRange } from "./parse_range.ts"; diff --git a/semver/format_test.ts b/semver/format_test.ts index 1fa7a0ea3944..358158473a6f 100644 --- a/semver/format_test.ts +++ b/semver/format_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { format } from "./format.ts"; import { parse } from "./parse.ts"; diff --git a/semver/greater_or_equal.ts b/semver/greater_or_equal.ts index cc4bb74c326b..39449ae86789 100644 --- a/semver/greater_or_equal.ts +++ b/semver/greater_or_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; diff --git a/semver/greater_or_equal_test.ts b/semver/greater_or_equal_test.ts index c6c7bb3dffde..93ed884de37b 100644 --- a/semver/greater_or_equal_test.ts +++ b/semver/greater_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { greaterOrEqual } from "./greater_or_equal.ts"; diff --git a/semver/greater_than.ts b/semver/greater_than.ts index 4123345f00e6..ff8f57680958 100644 --- a/semver/greater_than.ts +++ b/semver/greater_than.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; diff --git a/semver/greater_than_range.ts b/semver/greater_than_range.ts index 74fd277b09b2..2e466794b5f2 100644 --- a/semver/greater_than_range.ts +++ b/semver/greater_than_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Comparator, Range, SemVer } from "./types.ts"; diff --git a/semver/greater_than_range_test.ts b/semver/greater_than_range_test.ts index 3299f2fced0f..075d96ab157f 100644 --- a/semver/greater_than_range_test.ts +++ b/semver/greater_than_range_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright Isaac Z. Schlueter and npm contributors. All rights reserved. ISC license. import { assert, assertEquals, assertFalse } from "@std/assert"; diff --git a/semver/greater_than_test.ts b/semver/greater_than_test.ts index 473e2e079120..5ee16dec6f52 100644 --- a/semver/greater_than_test.ts +++ b/semver/greater_than_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { greaterThan } from "./greater_than.ts"; diff --git a/semver/increment.ts b/semver/increment.ts index afad22c64476..2110b3d227cf 100644 --- a/semver/increment.ts +++ b/semver/increment.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parseBuild, parsePrerelease } from "./_shared.ts"; import type { ReleaseType, SemVer } from "./types.ts"; diff --git a/semver/increment_test.ts b/semver/increment_test.ts index bc3a36fa5528..012a080836d4 100644 --- a/semver/increment_test.ts +++ b/semver/increment_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import type { ReleaseType } from "./types.ts"; import { increment } from "./increment.ts"; diff --git a/semver/is_range.ts b/semver/is_range.ts index a0a79fd295fd..f3099f9424ce 100644 --- a/semver/is_range.ts +++ b/semver/is_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Comparator, Range } from "./types.ts"; import { OPERATORS } from "./_constants.ts"; diff --git a/semver/is_range_test.ts b/semver/is_range_test.ts index 94c186a5e987..3458c7e7e78a 100644 --- a/semver/is_range_test.ts +++ b/semver/is_range_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { ALL } from "./_constants.ts"; import { isRange } from "./is_range.ts"; diff --git a/semver/is_semver.ts b/semver/is_semver.ts index 00f6db3c0eec..b720a6359c9d 100644 --- a/semver/is_semver.ts +++ b/semver/is_semver.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { ANY } from "./_constants.ts"; import type { SemVer } from "./types.ts"; diff --git a/semver/is_semver_test.ts b/semver/is_semver_test.ts index 0f841c0c4a44..f3ae1456f7ae 100644 --- a/semver/is_semver_test.ts +++ b/semver/is_semver_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { ANY } from "./_constants.ts"; import { isSemVer } from "./is_semver.ts"; diff --git a/semver/less_or_equal.ts b/semver/less_or_equal.ts index 73abcd970154..cd66b244e809 100644 --- a/semver/less_or_equal.ts +++ b/semver/less_or_equal.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; diff --git a/semver/less_or_equal_test.ts b/semver/less_or_equal_test.ts index d05db455742a..216123c64595 100644 --- a/semver/less_or_equal_test.ts +++ b/semver/less_or_equal_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { lessOrEqual } from "./less_or_equal.ts"; diff --git a/semver/less_than.ts b/semver/less_than.ts index 8f54569b8096..6a18b3efd3ec 100644 --- a/semver/less_than.ts +++ b/semver/less_than.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; diff --git a/semver/less_than_range.ts b/semver/less_than_range.ts index f7d08362fe46..6085dc01dfa2 100644 --- a/semver/less_than_range.ts +++ b/semver/less_than_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Comparator, Range, SemVer } from "./types.ts"; diff --git a/semver/less_than_range_test.ts b/semver/less_than_range_test.ts index 8b889a769dbc..477e9dae1c0d 100644 --- a/semver/less_than_range_test.ts +++ b/semver/less_than_range_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright Isaac Z. Schlueter and npm contributors. All rights reserved. ISC license. import { assert, assertEquals, assertFalse } from "@std/assert"; diff --git a/semver/less_than_test.ts b/semver/less_than_test.ts index 73ee40258011..5b1a3aa043d9 100644 --- a/semver/less_than_test.ts +++ b/semver/less_than_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { lessThan } from "./less_than.ts"; diff --git a/semver/max_satisfying.ts b/semver/max_satisfying.ts index 6180d2fffb18..af2dff8f8b03 100644 --- a/semver/max_satisfying.ts +++ b/semver/max_satisfying.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Range, SemVer } from "./types.ts"; import { satisfies } from "./satisfies.ts"; diff --git a/semver/max_satisfying_test.ts b/semver/max_satisfying_test.ts index 7b66b02a2517..001a5bad0b24 100644 --- a/semver/max_satisfying_test.ts +++ b/semver/max_satisfying_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { parseRange } from "./parse_range.ts"; diff --git a/semver/min_satisfying.ts b/semver/min_satisfying.ts index 555cb8686fcf..97533cede17b 100644 --- a/semver/min_satisfying.ts +++ b/semver/min_satisfying.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Range, SemVer } from "./types.ts"; import { satisfies } from "./satisfies.ts"; diff --git a/semver/min_satisfying_test.ts b/semver/min_satisfying_test.ts index 417e15249a90..65ce65599a6a 100644 --- a/semver/min_satisfying_test.ts +++ b/semver/min_satisfying_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { parseRange } from "./parse_range.ts"; diff --git a/semver/mod.ts b/semver/mod.ts index 794bb4757f29..f6ecf905d002 100644 --- a/semver/mod.ts +++ b/semver/mod.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/semver/not_equals.ts b/semver/not_equals.ts index c06f5aecad92..61c039f7b039 100644 --- a/semver/not_equals.ts +++ b/semver/not_equals.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; diff --git a/semver/not_equals_test.ts b/semver/not_equals_test.ts index 6a99f9b243c1..491dde257cf4 100644 --- a/semver/not_equals_test.ts +++ b/semver/not_equals_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { parse } from "./parse.ts"; import { notEquals } from "./not_equals.ts"; diff --git a/semver/parse.ts b/semver/parse.ts index 3a989321ff80..5e7ae007814b 100644 --- a/semver/parse.ts +++ b/semver/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { parseBuild, parseNumber, parsePrerelease } from "./_shared.ts"; diff --git a/semver/parse_range.ts b/semver/parse_range.ts index e2ba5211a07d..ed819d7c8e5a 100644 --- a/semver/parse_range.ts +++ b/semver/parse_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { diff --git a/semver/parse_range_test.ts b/semver/parse_range_test.ts index a0d91ab52838..97dc585e4cfd 100644 --- a/semver/parse_range_test.ts +++ b/semver/parse_range_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { parseRange } from "./parse_range.ts"; import type { Range } from "./types.ts"; diff --git a/semver/parse_test.ts b/semver/parse_test.ts index 4221656a7855..7f3f3e97b899 100644 --- a/semver/parse_test.ts +++ b/semver/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { parse } from "./parse.ts"; diff --git a/semver/range_intersects.ts b/semver/range_intersects.ts index 104aa48beb94..c5c2b4e7ef11 100644 --- a/semver/range_intersects.ts +++ b/semver/range_intersects.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isWildcardComparator } from "./_shared.ts"; import { compare } from "./compare.ts"; diff --git a/semver/range_intersects_test.ts b/semver/range_intersects_test.ts index 19c45858306f..cd9ddb286e1c 100644 --- a/semver/range_intersects_test.ts +++ b/semver/range_intersects_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parseRange } from "./parse_range.ts"; import { rangeIntersects } from "./range_intersects.ts"; diff --git a/semver/satisfies.ts b/semver/satisfies.ts index 8ee6ab71cdad..4e43ac0005f1 100644 --- a/semver/satisfies.ts +++ b/semver/satisfies.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Range, SemVer } from "./types.ts"; diff --git a/semver/satisfies_test.ts b/semver/satisfies_test.ts index 855248392df8..c09b704d14a7 100644 --- a/semver/satisfies_test.ts +++ b/semver/satisfies_test.ts @@ -1,5 +1,5 @@ // Copyright Isaac Z. Schlueter and Contributors. All rights reserved. ISC license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { parse } from "./parse.ts"; import { parseRange } from "./parse_range.ts"; diff --git a/semver/try_parse.ts b/semver/try_parse.ts index 3b665d4670a1..262e1890d683 100644 --- a/semver/try_parse.ts +++ b/semver/try_parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { SemVer } from "./types.ts"; import { parse } from "./parse.ts"; diff --git a/semver/try_parse_range.ts b/semver/try_parse_range.ts index 0332ede0a208..54b96de2b221 100644 --- a/semver/try_parse_range.ts +++ b/semver/try_parse_range.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Range } from "./types.ts"; diff --git a/semver/try_parse_range_test.ts b/semver/try_parse_range_test.ts index 062b663a0ae4..37382dff2560 100644 --- a/semver/try_parse_range_test.ts +++ b/semver/try_parse_range_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { tryParseRange } from "./try_parse_range.ts"; diff --git a/semver/try_parse_test.ts b/semver/try_parse_test.ts index b322e66ad6f5..e942cd34282c 100644 --- a/semver/try_parse_test.ts +++ b/semver/try_parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // These tests were copied from `semver/parse_test.ts` and modified to use // `tryParse` instead of `parse`. import { assertEquals } from "@std/assert"; diff --git a/semver/types.ts b/semver/types.ts index 6ad5cf6e305c..ec49e86117c9 100644 --- a/semver/types.ts +++ b/semver/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/_common.ts b/streams/_common.ts index 97bc07bcebaa..e45b66c17a85 100644 --- a/streams/_common.ts +++ b/streams/_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. export const DEFAULT_CHUNK_SIZE = 16_640; diff --git a/streams/_test_utils.ts b/streams/_test_utils.ts index 63e57859190d..6e897121c05a 100644 --- a/streams/_test_utils.ts +++ b/streams/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; diff --git a/streams/_types.ts b/streams/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/streams/_types.ts +++ b/streams/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/streams/buffer.ts b/streams/buffer.ts index 1b327cf27475..58921cecad65 100644 --- a/streams/buffer.ts +++ b/streams/buffer.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { copy } from "@std/bytes/copy"; diff --git a/streams/buffer_test.ts b/streams/buffer_test.ts index 9bc3a7517e5c..2297e9b7471c 100644 --- a/streams/buffer_test.ts +++ b/streams/buffer_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { Buffer } from "./buffer.ts"; diff --git a/streams/byte_slice_stream.ts b/streams/byte_slice_stream.ts index 7e02e9b272dd..4a597398898b 100644 --- a/streams/byte_slice_stream.ts +++ b/streams/byte_slice_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/byte_slice_stream_test.ts b/streams/byte_slice_stream_test.ts index e5dfa2a4ab12..6e664fff30f6 100644 --- a/streams/byte_slice_stream_test.ts +++ b/streams/byte_slice_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { ByteSliceStream } from "./byte_slice_stream.ts"; diff --git a/streams/concat_readable_streams.ts b/streams/concat_readable_streams.ts index 6ea677fd2e51..4ae98f266000 100644 --- a/streams/concat_readable_streams.ts +++ b/streams/concat_readable_streams.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/concat_readable_streams_test.ts b/streams/concat_readable_streams_test.ts index 06a576d3cb99..fb100ff1dd10 100644 --- a/streams/concat_readable_streams_test.ts +++ b/streams/concat_readable_streams_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "../assert/mod.ts"; import { concatReadableStreams } from "./concat_readable_streams.ts"; diff --git a/streams/delimiter_stream.ts b/streams/delimiter_stream.ts index b21eb945eb6b..8cf45ea80b1d 100644 --- a/streams/delimiter_stream.ts +++ b/streams/delimiter_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { concat } from "@std/bytes/concat"; diff --git a/streams/delimiter_stream_test.ts b/streams/delimiter_stream_test.ts index ddbccada980a..70291df020ff 100644 --- a/streams/delimiter_stream_test.ts +++ b/streams/delimiter_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { DelimiterStream } from "./delimiter_stream.ts"; import { testTransformStream } from "./_test_utils.ts"; diff --git a/streams/early_zip_readable_streams.ts b/streams/early_zip_readable_streams.ts index 13257e1f18ff..2df38871efcf 100644 --- a/streams/early_zip_readable_streams.ts +++ b/streams/early_zip_readable_streams.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/early_zip_readable_streams_test.ts b/streams/early_zip_readable_streams_test.ts index 93dfeae43bb4..eb09a67b7edd 100644 --- a/streams/early_zip_readable_streams_test.ts +++ b/streams/early_zip_readable_streams_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { earlyZipReadableStreams } from "./early_zip_readable_streams.ts"; import { assertEquals, assertRejects } from "@std/assert"; diff --git a/streams/limited_bytes_transform_stream.ts b/streams/limited_bytes_transform_stream.ts index 553c3baf5e79..15bab742faf4 100644 --- a/streams/limited_bytes_transform_stream.ts +++ b/streams/limited_bytes_transform_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode LimitedBytesTransformStream}. */ diff --git a/streams/limited_bytes_transform_stream_test.ts b/streams/limited_bytes_transform_stream_test.ts index 17f8e8dd42fa..b858164d28a0 100644 --- a/streams/limited_bytes_transform_stream_test.ts +++ b/streams/limited_bytes_transform_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { LimitedBytesTransformStream } from "./limited_bytes_transform_stream.ts"; diff --git a/streams/limited_transform_stream.ts b/streams/limited_transform_stream.ts index 1032e741d7d0..bbff0279cc79 100644 --- a/streams/limited_transform_stream.ts +++ b/streams/limited_transform_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode LimitedTransformStream} */ diff --git a/streams/limited_transform_stream_test.ts b/streams/limited_transform_stream_test.ts index 72f52d76beee..d0d27d5ec9af 100644 --- a/streams/limited_transform_stream_test.ts +++ b/streams/limited_transform_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { LimitedTransformStream } from "./limited_transform_stream.ts"; diff --git a/streams/merge_readable_streams.ts b/streams/merge_readable_streams.ts index 0ae82e99903e..dcc617e39a9e 100644 --- a/streams/merge_readable_streams.ts +++ b/streams/merge_readable_streams.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Merge multiple streams into a single one, not taking order into account. diff --git a/streams/merge_readable_streams_test.ts b/streams/merge_readable_streams_test.ts index 8be7809cf851..cca83d3c4a97 100644 --- a/streams/merge_readable_streams_test.ts +++ b/streams/merge_readable_streams_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { mergeReadableStreams } from "./merge_readable_streams.ts"; import { assertEquals } from "@std/assert"; diff --git a/streams/mod.ts b/streams/mod.ts index d115e0c7034f..e2c568a19b51 100644 --- a/streams/mod.ts +++ b/streams/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Utilities for working with the * {@link https://developer.mozilla.org/en-US/docs/Web/API/Streams_API | Streams API}. diff --git a/streams/text_delimiter_stream.ts b/streams/text_delimiter_stream.ts index d68973c499a0..e4554047a8aa 100644 --- a/streams/text_delimiter_stream.ts +++ b/streams/text_delimiter_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { createLPS } from "./_common.ts"; diff --git a/streams/text_delimiter_stream_test.ts b/streams/text_delimiter_stream_test.ts index 45306e0f18eb..ec197643cba8 100644 --- a/streams/text_delimiter_stream_test.ts +++ b/streams/text_delimiter_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { TextDelimiterStream } from "./text_delimiter_stream.ts"; import { testTransformStream } from "./_test_utils.ts"; diff --git a/streams/text_line_stream.ts b/streams/text_line_stream.ts index b0aa9911a5d5..3f40f0b1b13f 100644 --- a/streams/text_line_stream.ts +++ b/streams/text_line_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Options for {@linkcode TextLineStream}. */ diff --git a/streams/text_line_stream_test.ts b/streams/text_line_stream_test.ts index 01a64723c785..3df593122953 100644 --- a/streams/text_line_stream_test.ts +++ b/streams/text_line_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { TextLineStream } from "./text_line_stream.ts"; import { assertEquals } from "@std/assert"; diff --git a/streams/to_array_buffer.ts b/streams/to_array_buffer.ts index d1fae7178eff..23dab43652d7 100644 --- a/streams/to_array_buffer.ts +++ b/streams/to_array_buffer.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { concat } from "@std/bytes/concat"; diff --git a/streams/to_array_buffer_test.ts b/streams/to_array_buffer_test.ts index fb999860d2d8..f4edff635cb9 100644 --- a/streams/to_array_buffer_test.ts +++ b/streams/to_array_buffer_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toArrayBuffer } from "./to_array_buffer.ts"; diff --git a/streams/to_blob.ts b/streams/to_blob.ts index a69da3624016..d06655105259 100644 --- a/streams/to_blob.ts +++ b/streams/to_blob.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/to_blob_test.ts b/streams/to_blob_test.ts index 19fdc4338db8..7db876106d4a 100644 --- a/streams/to_blob_test.ts +++ b/streams/to_blob_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { assertEquals } from "@std/assert"; diff --git a/streams/to_json.ts b/streams/to_json.ts index cd47375f5f44..7d5ab5798e63 100644 --- a/streams/to_json.ts +++ b/streams/to_json.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { toText } from "./to_text.ts"; diff --git a/streams/to_json_test.ts b/streams/to_json_test.ts index 68b0246f1695..f649d94ebc1b 100644 --- a/streams/to_json_test.ts +++ b/streams/to_json_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toJson } from "./to_json.ts"; diff --git a/streams/to_text.ts b/streams/to_text.ts index 869a495f21bd..f18edbe949bf 100644 --- a/streams/to_text.ts +++ b/streams/to_text.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/to_text_test.ts b/streams/to_text_test.ts index 1c21394ba72d..dae3d7f23534 100644 --- a/streams/to_text_test.ts +++ b/streams/to_text_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toText } from "./to_text.ts"; diff --git a/streams/to_transform_stream.ts b/streams/to_transform_stream.ts index aca415bb4f7a..fee7f4e66bb2 100644 --- a/streams/to_transform_stream.ts +++ b/streams/to_transform_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/to_transform_stream_test.ts b/streams/to_transform_stream_test.ts index d562d4b5368d..2721dd09ab66 100644 --- a/streams/to_transform_stream_test.ts +++ b/streams/to_transform_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { toTransformStream } from "./to_transform_stream.ts"; diff --git a/streams/unstable_abort_stream.ts b/streams/unstable_abort_stream.ts index 8bdb8c518664..14aabdada689 100644 --- a/streams/unstable_abort_stream.ts +++ b/streams/unstable_abort_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/unstable_abort_stream_test.ts b/streams/unstable_abort_stream_test.ts index 7b6b2ef5a0db..5d1663ba98df 100644 --- a/streams/unstable_abort_stream_test.ts +++ b/streams/unstable_abort_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertRejects } from "@std/assert"; import { FixedChunkStream } from "@std/streams/unstable-fixed-chunk-stream"; diff --git a/streams/unstable_capped_delimiter_stream.ts b/streams/unstable_capped_delimiter_stream.ts index 07cdd28fae34..c3cf48f04557 100644 --- a/streams/unstable_capped_delimiter_stream.ts +++ b/streams/unstable_capped_delimiter_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toByteStream } from "./unstable_to_byte_stream.ts"; diff --git a/streams/unstable_capped_delimiter_stream_test.ts b/streams/unstable_capped_delimiter_stream_test.ts index 441e91c2e4c3..265e2d67274c 100644 --- a/streams/unstable_capped_delimiter_stream_test.ts +++ b/streams/unstable_capped_delimiter_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { CappedDelimiterStream } from "./unstable_capped_delimiter_stream.ts"; diff --git a/streams/unstable_fixed_chunk_stream.ts b/streams/unstable_fixed_chunk_stream.ts index a73c4f771110..59e624196f15 100644 --- a/streams/unstable_fixed_chunk_stream.ts +++ b/streams/unstable_fixed_chunk_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/unstable_fixed_chunk_stream_test.ts b/streams/unstable_fixed_chunk_stream_test.ts index ccb7dd008e4d..a7972d2b8f9b 100644 --- a/streams/unstable_fixed_chunk_stream_test.ts +++ b/streams/unstable_fixed_chunk_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertLessOrEqual } from "@std/assert"; import { FixedChunkStream } from "./unstable_fixed_chunk_stream.ts"; diff --git a/streams/unstable_to_byte_stream.ts b/streams/unstable_to_byte_stream.ts index c121599a972e..558fc0457010 100644 --- a/streams/unstable_to_byte_stream.ts +++ b/streams/unstable_to_byte_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { Uint8Array_ } from "./_types.ts"; diff --git a/streams/unstable_to_byte_stream_test.ts b/streams/unstable_to_byte_stream_test.ts index 7d0931906c40..e58b6520339d 100644 --- a/streams/unstable_to_byte_stream_test.ts +++ b/streams/unstable_to_byte_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toByteStream } from "./unstable_to_byte_stream.ts"; diff --git a/streams/unstable_to_bytes.ts b/streams/unstable_to_bytes.ts index 1ed6829de037..325adc155561 100644 --- a/streams/unstable_to_bytes.ts +++ b/streams/unstable_to_bytes.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/unstable_to_bytes_test.ts b/streams/unstable_to_bytes_test.ts index 75018882c1b7..74395d966b9d 100644 --- a/streams/unstable_to_bytes_test.ts +++ b/streams/unstable_to_bytes_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toBytes } from "./unstable_to_bytes.ts"; diff --git a/streams/unstable_to_lines.ts b/streams/unstable_to_lines.ts index a5f4cccc6634..a51cfe99d55a 100644 --- a/streams/unstable_to_lines.ts +++ b/streams/unstable_to_lines.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { TextLineStream } from "./text_line_stream.ts"; diff --git a/streams/unstable_to_lines_test.ts b/streams/unstable_to_lines_test.ts index 9baa2059f479..ed9853997333 100644 --- a/streams/unstable_to_lines_test.ts +++ b/streams/unstable_to_lines_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { toLines } from "./unstable_to_lines.ts"; import { assertEquals } from "@std/assert"; diff --git a/streams/zip_readable_streams.ts b/streams/zip_readable_streams.ts index a0fc9964791a..9df3361e2584 100644 --- a/streams/zip_readable_streams.ts +++ b/streams/zip_readable_streams.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/streams/zip_readable_streams_test.ts b/streams/zip_readable_streams_test.ts index 092afe0fca71..cdd729da6c49 100644 --- a/streams/zip_readable_streams_test.ts +++ b/streams/zip_readable_streams_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { zipReadableStreams } from "./zip_readable_streams.ts"; diff --git a/tar/_types.ts b/tar/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/tar/_types.ts +++ b/tar/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/tar/mod.ts b/tar/mod.ts index 474df1a6346d..30d7487b75bc 100644 --- a/tar/mod.ts +++ b/tar/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Streaming utilities for working with tar archives. diff --git a/tar/tar_stream.ts b/tar/tar_stream.ts index 0f236f3a0051..0d1044f9daff 100644 --- a/tar/tar_stream.ts +++ b/tar/tar_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Uint8Array_ } from "./_types.ts"; export type { Uint8Array_ }; diff --git a/tar/tar_stream_test.ts b/tar/tar_stream_test.ts index 3b1c214bc0b7..aed2d1e319dd 100644 --- a/tar/tar_stream_test.ts +++ b/tar/tar_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { concat } from "@std/bytes"; diff --git a/tar/untar_stream.ts b/tar/untar_stream.ts index 89c4d9f45d33..c545ba6dcc1e 100644 --- a/tar/untar_stream.ts +++ b/tar/untar_stream.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { FixedChunkStream } from "@std/streams/unstable-fixed-chunk-stream"; diff --git a/tar/untar_stream_test.ts b/tar/untar_stream_test.ts index 536ffbcf8520..6b38eb9c1f3f 100644 --- a/tar/untar_stream_test.ts +++ b/tar/untar_stream_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertRejects } from "@std/assert"; import { toBytes } from "@std/streams/unstable-to-bytes"; diff --git a/testing/_mock_utils.ts b/testing/_mock_utils.ts index 8305f1546c56..c3f40a055a70 100644 --- a/testing/_mock_utils.ts +++ b/testing/_mock_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Spy } from "./mock.ts"; /** diff --git a/testing/_snapshot_utils.ts b/testing/_snapshot_utils.ts index 7f70de10082f..319997eb441a 100644 --- a/testing/_snapshot_utils.ts +++ b/testing/_snapshot_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { SnapshotMode, SnapshotOptions } from "./snapshot.ts"; import { diff } from "@std/internal/diff"; import { diffStr } from "@std/internal/diff-str"; diff --git a/testing/_test_helpers.ts b/testing/_test_helpers.ts index f98a93d17c5a..12cb88e9ab5d 100644 --- a/testing/_test_helpers.ts +++ b/testing/_test_helpers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, diff --git a/testing/_test_suite.ts b/testing/_test_suite.ts index b2cf1b60b926..754b714a1e10 100644 --- a/testing/_test_suite.ts +++ b/testing/_test_suite.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getAssertionState } from "@std/internal/assertion-state"; import { AssertionError } from "@std/assert/assertion-error"; diff --git a/testing/_test_utils.ts b/testing/_test_utils.ts index bd3dd57878bb..6ffb7e18c86a 100755 --- a/testing/_test_utils.ts +++ b/testing/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export class Point { x: number; y: number; diff --git a/testing/_time.ts b/testing/_time.ts index b518a77ff64d..13bb1a323a3e 100644 --- a/testing/_time.ts +++ b/testing/_time.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** Used internally for testing that fake time uses real time correctly. */ export const _internals = { diff --git a/testing/bdd.ts b/testing/bdd.ts index 3f23edc294ec..aae70201a833 100644 --- a/testing/bdd.ts +++ b/testing/bdd.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * A {@link https://en.wikipedia.org/wiki/Behavior-driven_development | BDD} interface diff --git a/testing/bdd_test.ts b/testing/bdd_test.ts index 2f7e95bb629d..1aefc5cb6c79 100644 --- a/testing/bdd_test.ts +++ b/testing/bdd_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, diff --git a/testing/mock.ts b/testing/mock.ts index 049c2c16bb68..71f53944e96e 100644 --- a/testing/mock.ts +++ b/testing/mock.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** A mocking and spying library. * diff --git a/testing/mock_test.ts b/testing/mock_test.ts index 27ee7ba87305..37d0a5395bc6 100644 --- a/testing/mock_test.ts +++ b/testing/mock_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { delay } from "@std/async/delay"; import { assertEquals, diff --git a/testing/snapshot.ts b/testing/snapshot.ts index e64d7679dd44..54689031df61 100644 --- a/testing/snapshot.ts +++ b/testing/snapshot.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** A snapshotting library. * diff --git a/testing/snapshot_test.ts b/testing/snapshot_test.ts index ff73620af0e7..a28366eb90d8 100644 --- a/testing/snapshot_test.ts +++ b/testing/snapshot_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { stripAnsiCode } from "@std/fmt/colors"; import { dirname, fromFileUrl, join, toFileUrl } from "@std/path"; import { diff --git a/testing/testdata/configure_global_sanitizers/disable_sanitize_exit.ts b/testing/testdata/configure_global_sanitizers/disable_sanitize_exit.ts index 927a1f6ef731..ec3736d3e32e 100644 --- a/testing/testdata/configure_global_sanitizers/disable_sanitize_exit.ts +++ b/testing/testdata/configure_global_sanitizers/disable_sanitize_exit.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { describe, it } from "@std/testing/bdd"; import { configureGlobalSanitizers } from "@std/testing/unstable-bdd"; diff --git a/testing/testdata/configure_global_sanitizers/disable_sanitize_ops_and_resources.ts b/testing/testdata/configure_global_sanitizers/disable_sanitize_ops_and_resources.ts index f784e35352dd..6391b95abe68 100644 --- a/testing/testdata/configure_global_sanitizers/disable_sanitize_ops_and_resources.ts +++ b/testing/testdata/configure_global_sanitizers/disable_sanitize_ops_and_resources.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { describe, it } from "@std/testing/bdd"; import { configureGlobalSanitizers } from "@std/testing/unstable-bdd"; diff --git a/testing/testdata/configure_global_sanitizers/disable_sanitize_resources.ts b/testing/testdata/configure_global_sanitizers/disable_sanitize_resources.ts index 08796625cd35..2b2fd63a9ded 100644 --- a/testing/testdata/configure_global_sanitizers/disable_sanitize_resources.ts +++ b/testing/testdata/configure_global_sanitizers/disable_sanitize_resources.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { describe, it } from "@std/testing/bdd"; import { configureGlobalSanitizers } from "@std/testing/unstable-bdd"; diff --git a/testing/time.ts b/testing/time.ts index 16e235837fb4..7afd02535027 100644 --- a/testing/time.ts +++ b/testing/time.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Utilities for mocking time while testing. diff --git a/testing/time_test.ts b/testing/time_test.ts index 6010eb05c596..176f27de85fd 100644 --- a/testing/time_test.ts +++ b/testing/time_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertAlmostEquals, diff --git a/testing/types.ts b/testing/types.ts index abe3c9c9cb41..af283134b789 100644 --- a/testing/types.ts +++ b/testing/types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright @dsherret and dsherret/conditional-type-checks contributors. All rights reserved. MIT license. /** diff --git a/testing/types_test.ts b/testing/types_test.ts index 5fad4a2dc955..521a13eef713 100644 --- a/testing/types_test.ts +++ b/testing/types_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright @dsherret and dsherret/conditional-type-checks contributors. All rights reserved. MIT license. // deno-lint-ignore-file no-explicit-any ban-types diff --git a/testing/unstable_bdd.ts b/testing/unstable_bdd.ts index baafd71de5ba..94ecbdcee79f 100644 --- a/testing/unstable_bdd.ts +++ b/testing/unstable_bdd.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { globalSanitizersState } from "./_test_suite.ts"; import type { DescribeArgs, ItArgs, TestSuite } from "./bdd.ts"; diff --git a/testing/unstable_bdd_test.ts b/testing/unstable_bdd_test.ts index bd33bb6acfb3..01d11c2bdf30 100644 --- a/testing/unstable_bdd_test.ts +++ b/testing/unstable_bdd_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { describe, it } from "./unstable_bdd.ts"; diff --git a/testing/unstable_snapshot.ts b/testing/unstable_snapshot.ts index 4e8fd1998d12..f2be5334e1b2 100644 --- a/testing/unstable_snapshot.ts +++ b/testing/unstable_snapshot.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // @ts-nocheck Deno.lint namespace does not pass type checking in Deno 1.x import type { SnapshotOptions } from "./snapshot.ts"; diff --git a/testing/unstable_snapshot_test.ts b/testing/unstable_snapshot_test.ts index 993b25b18a51..ab3e6e0a1a2f 100644 --- a/testing/unstable_snapshot_test.ts +++ b/testing/unstable_snapshot_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { stripAnsiCode } from "@std/fmt/colors"; import { dirname, fromFileUrl, join, toFileUrl } from "@std/path"; import { assertEquals } from "@std/assert"; diff --git a/testing/unstable_stub.ts b/testing/unstable_stub.ts index 93800f805e7a..40a7ec5a9b88 100644 --- a/testing/unstable_stub.ts +++ b/testing/unstable_stub.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { isSpy, registerMock, unregisterMock } from "./_mock_utils.ts"; import { type GetParametersFromProp, diff --git a/testing/unstable_stub_property.ts b/testing/unstable_stub_property.ts index 460c0a16bd1b..ac3dee47e6fd 100644 --- a/testing/unstable_stub_property.ts +++ b/testing/unstable_stub_property.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/testing/unstable_stub_property_test.ts b/testing/unstable_stub_property_test.ts index fbf32ccd60bc..b5e3345ba9e7 100644 --- a/testing/unstable_stub_property_test.ts +++ b/testing/unstable_stub_property_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file deno-style-guide/naming-convention import { assertEquals } from "@std/assert/equals"; import { stubProperty } from "./unstable_stub_property.ts"; diff --git a/testing/unstable_stub_test.ts b/testing/unstable_stub_test.ts index cdb18fc44747..107459960c82 100644 --- a/testing/unstable_stub_test.ts +++ b/testing/unstable_stub_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { assertSpyCall, diff --git a/testing/unstable_types.ts b/testing/unstable_types.ts index c5e0f64f7dc1..7ef399daeb1a 100644 --- a/testing/unstable_types.ts +++ b/testing/unstable_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Checks if the actual type `A` is assignable to the expected type `E`, and diff --git a/testing/unstable_types_test.ts b/testing/unstable_types_test.ts index e8082a09a845..521db6514761 100644 --- a/testing/unstable_types_test.ts +++ b/testing/unstable_types_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // deno-lint-ignore-file import { assertType } from "./types.ts"; diff --git a/text/_test_util.ts b/text/_test_util.ts index a33afee6d7d6..7fa6d5d2f950 100644 --- a/text/_test_util.ts +++ b/text/_test_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { stub } from "@std/testing/mock"; import { stubProperty } from "@std/testing/unstable-stub-property"; diff --git a/text/_test_util_test.ts b/text/_test_util_test.ts index 0db1d5992cf0..2bcba0c8853d 100644 --- a/text/_test_util_test.ts +++ b/text/_test_util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "../assert/equals.ts"; import { generateRandomString } from "./_test_util.ts"; diff --git a/text/_title_case_util.ts b/text/_title_case_util.ts index f9ed4697b3b0..74960ed6072d 100644 --- a/text/_title_case_util.ts +++ b/text/_title_case_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import _titleCaseMapping from "./title_case_mapping.json" with { type: "json" }; const titleCaseMap = new Map(Object.entries(_titleCaseMapping)); diff --git a/text/_title_case_util_test.ts b/text/_title_case_util_test.ts index b9cc72a401bb..b6602d2e7444 100644 --- a/text/_title_case_util_test.ts +++ b/text/_title_case_util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertLess } from "@std/assert"; import { CACHE_MAX_SEGMENT_LENGTH, diff --git a/text/_tools/generate_title_case_data.ts b/text/_tools/generate_title_case_data.ts index 524399f6d956..dcaa2d9a4048 100755 --- a/text/_tools/generate_title_case_data.ts +++ b/text/_tools/generate_title_case_data.ts @@ -1,5 +1,5 @@ #!/usr/bin/env -S deno run -W --allow-net=www.unicode.org:443 -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Modified from https://gist.github.com/0f-0b/c87dcf2d87f3428cc2abce2e20b7eef9 import { assert, assertEquals } from "@std/assert"; diff --git a/text/_util.ts b/text/_util.ts index b2181b112b6a..579e2118cc35 100644 --- a/text/_util.ts +++ b/text/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. const CAPITALIZED_WORD_REGEXP = /\p{Lu}\p{Ll}+/u; // e.g. Apple const ACRONYM_REGEXP = /\p{Lu}+(?=(\p{Lu}\p{Ll})|\P{L}|\b)/u; // e.g. ID, URL, handles an acronym followed by a capitalized word e.g. HTMLElement diff --git a/text/_util_test.ts b/text/_util_test.ts index 355c7fb64fa0..d09933d13bdd 100644 --- a/text/_util_test.ts +++ b/text/_util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { capitalizeWord, splitToWords } from "./_util.ts"; diff --git a/text/closest_string.ts b/text/closest_string.ts index c9a9a0152f88..b15b8763a002 100644 --- a/text/closest_string.ts +++ b/text/closest_string.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { levenshteinDistance } from "./levenshtein_distance.ts"; diff --git a/text/closest_string_test.ts b/text/closest_string_test.ts index 6e98bc0297e3..b75fda835bf8 100644 --- a/text/closest_string_test.ts +++ b/text/closest_string_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { closestString } from "./closest_string.ts"; diff --git a/text/compare_similarity.ts b/text/compare_similarity.ts index e1d0ddf55f3a..effd989fb5d3 100644 --- a/text/compare_similarity.ts +++ b/text/compare_similarity.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { levenshteinDistance } from "./levenshtein_distance.ts"; diff --git a/text/compare_similarity_test.ts b/text/compare_similarity_test.ts index 30c2b592c35a..310b9492d7d9 100644 --- a/text/compare_similarity_test.ts +++ b/text/compare_similarity_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { compareSimilarity } from "./compare_similarity.ts"; diff --git a/text/levenshtein_distance.ts b/text/levenshtein_distance.ts index 26df4adecce1..24eb5d3f4a5d 100644 --- a/text/levenshtein_distance.ts +++ b/text/levenshtein_distance.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const { ceil } = Math; diff --git a/text/levenshtein_distance_test.ts b/text/levenshtein_distance_test.ts index b1d4a62894f6..61f996bb98e5 100644 --- a/text/levenshtein_distance_test.ts +++ b/text/levenshtein_distance_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { levenshteinDistance } from "./levenshtein_distance.ts"; diff --git a/text/mod.ts b/text/mod.ts index a60a4078f8d0..f232dc488a8a 100644 --- a/text/mod.ts +++ b/text/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/text/to_camel_case.ts b/text/to_camel_case.ts index eec438b04ae0..4df469013045 100644 --- a/text/to_camel_case.ts +++ b/text/to_camel_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { capitalizeWord, splitToWords } from "./_util.ts"; diff --git a/text/to_camel_case_test.ts b/text/to_camel_case_test.ts index a51cf322bd12..44bc3319eaba 100644 --- a/text/to_camel_case_test.ts +++ b/text/to_camel_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toCamelCase } from "./mod.ts"; diff --git a/text/to_kebab_case.ts b/text/to_kebab_case.ts index 6f2bf7ce5d56..71471f542655 100644 --- a/text/to_kebab_case.ts +++ b/text/to_kebab_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { splitToWords } from "./_util.ts"; diff --git a/text/to_kebab_case_test.ts b/text/to_kebab_case_test.ts index cdd5321ace83..316527fb7c9c 100644 --- a/text/to_kebab_case_test.ts +++ b/text/to_kebab_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toKebabCase } from "./mod.ts"; diff --git a/text/to_pascal_case.ts b/text/to_pascal_case.ts index 79277799159f..9f614b7c168b 100644 --- a/text/to_pascal_case.ts +++ b/text/to_pascal_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { capitalizeWord, splitToWords } from "./_util.ts"; diff --git a/text/to_pascal_case_test.ts b/text/to_pascal_case_test.ts index 922e95ea5d93..f6ab85453100 100644 --- a/text/to_pascal_case_test.ts +++ b/text/to_pascal_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toPascalCase } from "./mod.ts"; diff --git a/text/to_snake_case.ts b/text/to_snake_case.ts index bcd99e8946ea..035677b51a56 100644 --- a/text/to_snake_case.ts +++ b/text/to_snake_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { splitToWords } from "./_util.ts"; diff --git a/text/to_snake_case_test.ts b/text/to_snake_case_test.ts index 52d963964c23..8b4c50c0d0b8 100644 --- a/text/to_snake_case_test.ts +++ b/text/to_snake_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toSnakeCase } from "./mod.ts"; diff --git a/text/unstable_dedent.ts b/text/unstable_dedent.ts index 5262826c4720..4e3fa0f91688 100644 --- a/text/unstable_dedent.ts +++ b/text/unstable_dedent.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { longestCommonPrefix } from "./unstable_longest_common_prefix.ts"; diff --git a/text/unstable_dedent_test.ts b/text/unstable_dedent_test.ts index 8d8f716be1a7..6569f040c2c2 100644 --- a/text/unstable_dedent_test.ts +++ b/text/unstable_dedent_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { dedent } from "./unstable_dedent.ts"; import { assertEquals } from "@std/assert"; import { stub } from "@std/testing/mock"; diff --git a/text/unstable_longest_common_prefix.ts b/text/unstable_longest_common_prefix.ts index 682daa06aea0..5f5f3bc023b0 100644 --- a/text/unstable_longest_common_prefix.ts +++ b/text/unstable_longest_common_prefix.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/text/unstable_longest_common_prefix_test.ts b/text/unstable_longest_common_prefix_test.ts index 084de1662c20..9143d0ec5e0d 100644 --- a/text/unstable_longest_common_prefix_test.ts +++ b/text/unstable_longest_common_prefix_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { longestCommonPrefix } from "./unstable_longest_common_prefix.ts"; import { assertEquals, assertGreater } from "@std/assert"; diff --git a/text/unstable_reverse.ts b/text/unstable_reverse.ts index b781110b4dc4..f2456364af05 100644 --- a/text/unstable_reverse.ts +++ b/text/unstable_reverse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // Copyright Mathias Bynens diff --git a/text/unstable_reverse_bench.ts b/text/unstable_reverse_bench.ts index ab1fe65f65ee..8e69363a6691 100644 --- a/text/unstable_reverse_bench.ts +++ b/text/unstable_reverse_bench.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { generateRandomString } from "./_test_util.ts"; import { reverse } from "./unstable_reverse.ts"; diff --git a/text/unstable_reverse_test.ts b/text/unstable_reverse_test.ts index c50beec94b6c..26c4e4832d25 100644 --- a/text/unstable_reverse_test.ts +++ b/text/unstable_reverse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert/equals"; import { reverse } from "./unstable_reverse.ts"; diff --git a/text/unstable_slugify.ts b/text/unstable_slugify.ts index 2e86480b97bf..7ab4f1073a0a 100644 --- a/text/unstable_slugify.ts +++ b/text/unstable_slugify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const wordSegmenter = new Intl.Segmenter("en-US", { granularity: "word" }); diff --git a/text/unstable_slugify_test.ts b/text/unstable_slugify_test.ts index e1a5aa74b1ab..be381abca430 100644 --- a/text/unstable_slugify_test.ts +++ b/text/unstable_slugify_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertMatch } from "@std/assert"; import { ASCII_DIACRITICS, diff --git a/text/unstable_to_constant_case.ts b/text/unstable_to_constant_case.ts index f63f89f964f0..ff101cf1e3d7 100644 --- a/text/unstable_to_constant_case.ts +++ b/text/unstable_to_constant_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { splitToWords } from "./_util.ts"; diff --git a/text/unstable_to_constant_case_test.ts b/text/unstable_to_constant_case_test.ts index cd87b6af5907..599f88463b6f 100644 --- a/text/unstable_to_constant_case_test.ts +++ b/text/unstable_to_constant_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toConstantCase } from "./unstable_to_constant_case.ts"; diff --git a/text/unstable_to_sentence_case.ts b/text/unstable_to_sentence_case.ts index 4a5f1af829f9..93744dfb2292 100644 --- a/text/unstable_to_sentence_case.ts +++ b/text/unstable_to_sentence_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { resolveOptions, titleCaseSegment } from "./_title_case_util.ts"; import type { BaseTitleCaseOptions } from "./_title_case_util.ts"; diff --git a/text/unstable_to_sentence_case_test.ts b/text/unstable_to_sentence_case_test.ts index bdb7d9b0f19a..c0b9c35f6ff1 100644 --- a/text/unstable_to_sentence_case_test.ts +++ b/text/unstable_to_sentence_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { toSentenceCase } from "./unstable_to_sentence_case.ts"; import { toTitleCase } from "./unstable_to_title_case.ts"; diff --git a/text/unstable_to_title_case.ts b/text/unstable_to_title_case.ts index e5a8a3167667..7fddd86dce0d 100644 --- a/text/unstable_to_title_case.ts +++ b/text/unstable_to_title_case.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { resolveOptions, titleCaseSegment } from "./_title_case_util.ts"; import type { BaseTitleCaseOptions } from "./_title_case_util.ts"; diff --git a/text/unstable_to_title_case_test.ts b/text/unstable_to_title_case_test.ts index 6c305ecb1217..e226cabfc4ff 100644 --- a/text/unstable_to_title_case_test.ts +++ b/text/unstable_to_title_case_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertGreater } from "@std/assert"; import { toTitleCase } from "./unstable_to_title_case.ts"; import type { diff --git a/text/unstable_trim_by.ts b/text/unstable_trim_by.ts index 87380ebb71fa..c3dbd4cc0cb2 100644 --- a/text/unstable_trim_by.ts +++ b/text/unstable_trim_by.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { escape } from "@std/regexp/escape"; diff --git a/text/unstable_trim_by_test.ts b/text/unstable_trim_by_test.ts index d19f666b0db6..3b360e70dd68 100644 --- a/text/unstable_trim_by_test.ts +++ b/text/unstable_trim_by_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { trimBy, trimEndBy, trimStartBy } from "./unstable_trim_by.ts"; diff --git a/text/word_similarity_sort.ts b/text/word_similarity_sort.ts index e040aceac101..5c23a9187806 100644 --- a/text/word_similarity_sort.ts +++ b/text/word_similarity_sort.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { compareSimilarity, diff --git a/text/word_similarity_sort_test.ts b/text/word_similarity_sort_test.ts index 0b472afd21f6..70b398f821ba 100644 --- a/text/word_similarity_sort_test.ts +++ b/text/word_similarity_sort_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { wordSimilaritySort } from "./word_similarity_sort.ts"; diff --git a/toml/_parser.ts b/toml/_parser.ts index 2cf80f780fe9..e9018f87b4a7 100644 --- a/toml/_parser.ts +++ b/toml/_parser.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { deepMerge } from "@std/collections/deep-merge"; diff --git a/toml/_parser_test.ts b/toml/_parser_test.ts index 7b25913a0ca3..efa569984e99 100644 --- a/toml/_parser_test.ts +++ b/toml/_parser_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { arrayValue, diff --git a/toml/_test_utils.ts b/toml/_test_utils.ts index 35eefbf3cedc..e6b2d5561003 100644 --- a/toml/_test_utils.ts +++ b/toml/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. type TestCaseValue = { type: diff --git a/toml/mod.ts b/toml/mod.ts index 9d0db6df5bcd..a50391830824 100644 --- a/toml/mod.ts +++ b/toml/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/toml/official_parse_test.ts b/toml/official_parse_test.ts index 934ce0f436c5..04a806ca7d6b 100644 --- a/toml/official_parse_test.ts +++ b/toml/official_parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "../assert/mod.ts"; import { convertTestCase, type TestCase } from "./_test_utils.ts"; diff --git a/toml/parse.ts b/toml/parse.ts index f304b950e130..b52e60830831 100644 --- a/toml/parse.ts +++ b/toml/parse.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { parserFactory, toml } from "./_parser.ts"; diff --git a/toml/parse_test.ts b/toml/parse_test.ts index ea1d510f7bbe..9e0ec13cb6a9 100644 --- a/toml/parse_test.ts +++ b/toml/parse_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { parse } from "./mod.ts"; diff --git a/toml/stringify.ts b/toml/stringify.ts index 3e0d3be6b9f4..05a53e8e3d5e 100644 --- a/toml/stringify.ts +++ b/toml/stringify.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. // Bare keys may only contain ASCII letters, diff --git a/toml/stringify_test.ts b/toml/stringify_test.ts index 5a9db827b330..523eb45d5ec3 100644 --- a/toml/stringify_test.ts +++ b/toml/stringify_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { stringify } from "./stringify.ts"; diff --git a/ulid/_util.ts b/ulid/_util.ts index bde96a096db5..aa4ade8d5e82 100644 --- a/ulid/_util.ts +++ b/ulid/_util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** Type for a ULID generator function. */ // deno-lint-ignore deno-style-guide/naming-convention diff --git a/ulid/decode_time.ts b/ulid/decode_time.ts index 76a9c88ded71..3aeba8a9e9d4 100644 --- a/ulid/decode_time.ts +++ b/ulid/decode_time.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2023 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2017 Alizain Feerasta. All rights reserved. MIT license. // This module is browser compatible. diff --git a/ulid/mod.ts b/ulid/mod.ts index 4dbc8fb05892..6030aed5ec9e 100644 --- a/ulid/mod.ts +++ b/ulid/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2023 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2017 Alizain Feerasta. All rights reserved. MIT license. // This module is browser compatible. diff --git a/ulid/monotonic_ulid.ts b/ulid/monotonic_ulid.ts index 16c5efd06638..1049aae503a5 100644 --- a/ulid/monotonic_ulid.ts +++ b/ulid/monotonic_ulid.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2023 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2017 Alizain Feerasta. All rights reserved. MIT license. // This module is browser compatible. diff --git a/ulid/test.ts b/ulid/test.ts index 35d33b857092..5414f98410f2 100644 --- a/ulid/test.ts +++ b/ulid/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2023 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2017 Alizain Feerasta. All rights reserved. MIT license. diff --git a/ulid/ulid.ts b/ulid/ulid.ts index c0ee77bf2dfe..9d8b63ff23ed 100644 --- a/ulid/ulid.ts +++ b/ulid/ulid.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // Copyright 2023 Yoshiya Hinosawa. All rights reserved. MIT license. // Copyright 2017 Alizain Feerasta. All rights reserved. MIT license. // This module is browser compatible. diff --git a/uuid/_common.ts b/uuid/_common.ts index 8952cf1541d3..5c431c8148da 100644 --- a/uuid/_common.ts +++ b/uuid/_common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const hexTable: string[] = []; diff --git a/uuid/common.ts b/uuid/common.ts index 95a4e753ddb0..16f9239d6fec 100644 --- a/uuid/common.ts +++ b/uuid/common.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { NIL_UUID } from "./constants.ts"; diff --git a/uuid/common_test.ts b/uuid/common_test.ts index cfaa5be648a0..dcb113c7eea4 100644 --- a/uuid/common_test.ts +++ b/uuid/common_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { isNil, NIL_UUID, validate, version } from "./mod.ts"; diff --git a/uuid/constants.ts b/uuid/constants.ts index 531230c61e35..d878b1879b6e 100644 --- a/uuid/constants.ts +++ b/uuid/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/uuid/constants_test.ts b/uuid/constants_test.ts index d0988c0700b8..e78b64f49133 100644 --- a/uuid/constants_test.ts +++ b/uuid/constants_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { NAMESPACE_DNS, diff --git a/uuid/mod.ts b/uuid/mod.ts index 42003358337a..d03fab654601 100644 --- a/uuid/mod.ts +++ b/uuid/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/uuid/unstable_v6.ts b/uuid/unstable_v6.ts index 163dba025b00..81487d0f8273 100644 --- a/uuid/unstable_v6.ts +++ b/uuid/unstable_v6.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { bytesToUuid } from "./_common.ts"; diff --git a/uuid/unstable_v6_test.ts b/uuid/unstable_v6_test.ts index 24032f6afd47..0b5011ad28f7 100644 --- a/uuid/unstable_v6_test.ts +++ b/uuid/unstable_v6_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { generate, type GenerateOptions, validate } from "./unstable_v6.ts"; diff --git a/uuid/v1.ts b/uuid/v1.ts index 381f0ad2b709..58dce0dde24b 100644 --- a/uuid/v1.ts +++ b/uuid/v1.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { bytesToUuid } from "./_common.ts"; diff --git a/uuid/v1_test.ts b/uuid/v1_test.ts index fabbc4d1c333..fddedf0c09b0 100644 --- a/uuid/v1_test.ts +++ b/uuid/v1_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { generate, validate } from "./v1.ts"; diff --git a/uuid/v3.ts b/uuid/v3.ts index 03465401e9d3..e84554f94fd1 100644 --- a/uuid/v3.ts +++ b/uuid/v3.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { bytesToUuid, uuidToBytes } from "./_common.ts"; diff --git a/uuid/v3_test.ts b/uuid/v3_test.ts index 12b39d650e89..86b181acec65 100644 --- a/uuid/v3_test.ts +++ b/uuid/v3_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects } from "@std/assert"; import { generate, validate } from "./v3.ts"; diff --git a/uuid/v4.ts b/uuid/v4.ts index f3038bd0214a..f9430f777366 100644 --- a/uuid/v4.ts +++ b/uuid/v4.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. const UUID_RE = diff --git a/uuid/v4_test.ts b/uuid/v4_test.ts index 589a341bf040..031e3d4ad895 100644 --- a/uuid/v4_test.ts +++ b/uuid/v4_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { validate } from "./v4.ts"; diff --git a/uuid/v5.ts b/uuid/v5.ts index 196b48e43693..21a5acc9dbb5 100644 --- a/uuid/v5.ts +++ b/uuid/v5.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { bytesToUuid, uuidToBytes } from "./_common.ts"; diff --git a/uuid/v5_test.ts b/uuid/v5_test.ts index aa57f75dd15e..b2760c335b1a 100644 --- a/uuid/v5_test.ts +++ b/uuid/v5_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertRejects } from "@std/assert"; import { generate, validate } from "./v5.ts"; diff --git a/uuid/v7.ts b/uuid/v7.ts index 491c13ac434f..2981eaa63ce3 100644 --- a/uuid/v7.ts +++ b/uuid/v7.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/uuid/v7_test.ts b/uuid/v7_test.ts index 44db2de3b1de..a6b9ea5c9767 100644 --- a/uuid/v7_test.ts +++ b/uuid/v7_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals, assertThrows } from "@std/assert"; import { extractTimestamp, generate, validate } from "./v7.ts"; import { stub } from "../testing/mock.ts"; diff --git a/webgpu/_test_utils.ts b/webgpu/_test_utils.ts index d93c9d84bd24..19cb59de8ce8 100644 --- a/webgpu/_test_utils.ts +++ b/webgpu/_test_utils.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. async function checkIsWsl() { return Deno.build.os === "linux" && await hasMicrosoftProcVersion(); diff --git a/webgpu/_types.ts b/webgpu/_types.ts index b96274d83c79..d701d491e46d 100644 --- a/webgpu/_types.ts +++ b/webgpu/_types.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Proxy type of {@code Uint8Array} or {@code Uint8Array} in TypeScript 5.7 or below respectively. diff --git a/webgpu/create_capture.ts b/webgpu/create_capture.ts index 862289306d50..8e072fc47f43 100644 --- a/webgpu/create_capture.ts +++ b/webgpu/create_capture.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getRowPadding } from "./row_padding.ts"; diff --git a/webgpu/create_capture_test.ts b/webgpu/create_capture_test.ts index 81f2f8c91ce1..3b016db803c5 100644 --- a/webgpu/create_capture_test.ts +++ b/webgpu/create_capture_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert, assertEquals } from "@std/assert"; import { ignore } from "./_test_utils.ts"; diff --git a/webgpu/describe_texture_format.ts b/webgpu/describe_texture_format.ts index 251cf4f4ad07..3a01b25e11fc 100644 --- a/webgpu/describe_texture_format.ts +++ b/webgpu/describe_texture_format.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** Return type for {@linkcode describeTextureFormat}. */ export interface TextureFormatInfo { diff --git a/webgpu/describe_texture_format_test.ts b/webgpu/describe_texture_format_test.ts index 223079642ed7..2504d79174e0 100644 --- a/webgpu/describe_texture_format_test.ts +++ b/webgpu/describe_texture_format_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { describeTextureFormat } from "./describe_texture_format.ts"; diff --git a/webgpu/mod.ts b/webgpu/mod.ts index d1372d45a8ca..dc02f6a5f9ba 100644 --- a/webgpu/mod.ts +++ b/webgpu/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. /** * Utilities for interacting with the diff --git a/webgpu/row_padding.ts b/webgpu/row_padding.ts index b1d40aee7eef..4f95d691183b 100644 --- a/webgpu/row_padding.ts +++ b/webgpu/row_padding.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** Return value for {@linkcode getRowPadding}. */ diff --git a/webgpu/row_padding_test.ts b/webgpu/row_padding_test.ts index b8604679c457..47b3e360a04d 100644 --- a/webgpu/row_padding_test.ts +++ b/webgpu/row_padding_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { getRowPadding, resliceBufferWithPadding } from "./row_padding.ts"; import { assertEquals } from "@std/assert"; diff --git a/webgpu/texture_with_data.ts b/webgpu/texture_with_data.ts index eb44446ee60b..8193cc67189b 100644 --- a/webgpu/texture_with_data.ts +++ b/webgpu/texture_with_data.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { describeTextureFormat } from "./describe_texture_format.ts"; import type { Uint8Array_ } from "./_types.ts"; diff --git a/webgpu/texture_with_data_test.ts b/webgpu/texture_with_data_test.ts index 5906da76e86e..7f419f725cdc 100644 --- a/webgpu/texture_with_data_test.ts +++ b/webgpu/texture_with_data_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assert } from "@std/assert"; import { createTextureWithData } from "./texture_with_data.ts"; diff --git a/yaml/_chars.ts b/yaml/_chars.ts index f995ff430a9e..8e18ad68fade 100644 --- a/yaml/_chars.ts +++ b/yaml/_chars.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export const BOM = 0xfeff; /* BOM */ export const TAB = 0x09; /* Tab */ diff --git a/yaml/_dumper_state.ts b/yaml/_dumper_state.ts index 1ac2a495895b..68bd7d19328d 100644 --- a/yaml/_dumper_state.ts +++ b/yaml/_dumper_state.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AMPERSAND, diff --git a/yaml/_loader_state.ts b/yaml/_loader_state.ts index f6115a79fe08..7252fdbab513 100644 --- a/yaml/_loader_state.ts +++ b/yaml/_loader_state.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { AMPERSAND, diff --git a/yaml/_schema.ts b/yaml/_schema.ts index b67d457d093b..bb0a3c58829b 100644 --- a/yaml/_schema.ts +++ b/yaml/_schema.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import type { KindType, Type } from "./_type.ts"; diff --git a/yaml/_type.ts b/yaml/_type.ts index afb749ce6c3b..b8b673b24352 100644 --- a/yaml/_type.ts +++ b/yaml/_type.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/yaml/_type/binary.ts b/yaml/_type/binary.ts index 43d56d391f3b..2666480b83ee 100644 --- a/yaml/_type/binary.ts +++ b/yaml/_type/binary.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; // [ 64, 65, 66 ] -> [ padding, CR, LF ] diff --git a/yaml/_type/bool.ts b/yaml/_type/bool.ts index 14a28942ad0a..94217bbc101f 100644 --- a/yaml/_type/bool.ts +++ b/yaml/_type/bool.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/float.ts b/yaml/_type/float.ts index 4edacef5d805..8fa9306758d2 100644 --- a/yaml/_type/float.ts +++ b/yaml/_type/float.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { StyleVariant, Type } from "../_type.ts"; import { isNegativeZero } from "../_utils.ts"; diff --git a/yaml/_type/int.ts b/yaml/_type/int.ts index ed1c65c3c787..800bb2cf3d11 100644 --- a/yaml/_type/int.ts +++ b/yaml/_type/int.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; import { isNegativeZero } from "../_utils.ts"; diff --git a/yaml/_type/map.ts b/yaml/_type/map.ts index 78903e3ce372..1c891b4a6949 100644 --- a/yaml/_type/map.ts +++ b/yaml/_type/map.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/merge.ts b/yaml/_type/merge.ts index f4a626bc545b..32b59e8ba70f 100644 --- a/yaml/_type/merge.ts +++ b/yaml/_type/merge.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/nil.ts b/yaml/_type/nil.ts index adb85fb55cfd..a43fab534967 100644 --- a/yaml/_type/nil.ts +++ b/yaml/_type/nil.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/omap.ts b/yaml/_type/omap.ts index 17e0fdc50900..effeebc39c5f 100644 --- a/yaml/_type/omap.ts +++ b/yaml/_type/omap.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; import { isPlainObject } from "../_utils.ts"; diff --git a/yaml/_type/pairs.ts b/yaml/_type/pairs.ts index bbb44d97f03b..e0047e789237 100644 --- a/yaml/_type/pairs.ts +++ b/yaml/_type/pairs.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; import { isPlainObject } from "../_utils.ts"; diff --git a/yaml/_type/regexp.ts b/yaml/_type/regexp.ts index e1ee007af81b..1bd26ee51218 100644 --- a/yaml/_type/regexp.ts +++ b/yaml/_type/regexp.ts @@ -1,7 +1,7 @@ // Ported and adapted from js-yaml-js-types v1.0.0: // https://github.com/nodeca/js-yaml-js-types/tree/ac537e7bbdd3c2cbbd9882ca3919c520c2dc022b // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/seq.ts b/yaml/_type/seq.ts index 9d7ab826f9e7..3b28df9d5210 100644 --- a/yaml/_type/seq.ts +++ b/yaml/_type/seq.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/set.ts b/yaml/_type/set.ts index bd7283916cc8..87d585cc3bcc 100644 --- a/yaml/_type/set.ts +++ b/yaml/_type/set.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/str.ts b/yaml/_type/str.ts index bde6e880643f..d5f846d0142d 100644 --- a/yaml/_type/str.ts +++ b/yaml/_type/str.ts @@ -1,6 +1,6 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/timestamp.ts b/yaml/_type/timestamp.ts index f29043c211db..7aa41990b747 100644 --- a/yaml/_type/timestamp.ts +++ b/yaml/_type/timestamp.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_type/undefined.ts b/yaml/_type/undefined.ts index b5f8ee8066af..b5237a21cea0 100644 --- a/yaml/_type/undefined.ts +++ b/yaml/_type/undefined.ts @@ -1,7 +1,7 @@ // Ported and adapted from js-yaml-js-types v1.0.0: // https://github.com/nodeca/js-yaml-js-types/tree/ac537e7bbdd3c2cbbd9882ca3919c520c2dc022b // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import type { Type } from "../_type.ts"; diff --git a/yaml/_utils.ts b/yaml/_utils.ts index 94ec9beb8bad..fc4a360f1fc8 100644 --- a/yaml/_utils.ts +++ b/yaml/_utils.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. export function isObject(value: unknown): value is Record { return value !== null && typeof value === "object"; diff --git a/yaml/mod.ts b/yaml/mod.ts index 9d600c2d252c..11923155c400 100644 --- a/yaml/mod.ts +++ b/yaml/mod.ts @@ -1,5 +1,5 @@ // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. /** diff --git a/yaml/parse.ts b/yaml/parse.ts index 9224275a9d5e..198de8ae477f 100644 --- a/yaml/parse.ts +++ b/yaml/parse.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isEOL } from "./_chars.ts"; diff --git a/yaml/parse_test.ts b/yaml/parse_test.ts index 4394da87486f..f875fc4843b6 100644 --- a/yaml/parse_test.ts +++ b/yaml/parse_test.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { parse, parseAll } from "./parse.ts"; import { type ImplicitType, parse as unstableParse } from "./unstable_parse.ts"; diff --git a/yaml/stringify.ts b/yaml/stringify.ts index adca5d859f88..e87e86aeadc6 100644 --- a/yaml/stringify.ts +++ b/yaml/stringify.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DumperState } from "./_dumper_state.ts"; diff --git a/yaml/stringify_test.ts b/yaml/stringify_test.ts index 50b8e451087e..a06a841d368e 100644 --- a/yaml/stringify_test.ts +++ b/yaml/stringify_test.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals, assertThrows } from "@std/assert"; import { stringify } from "./stringify.ts"; diff --git a/yaml/unstable_parse.ts b/yaml/unstable_parse.ts index fdd2d099c127..201c169800a6 100644 --- a/yaml/unstable_parse.ts +++ b/yaml/unstable_parse.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { isEOL } from "./_chars.ts"; diff --git a/yaml/unstable_stringify.ts b/yaml/unstable_stringify.ts index 66baf2c67648..99eb6bec2ca0 100644 --- a/yaml/unstable_stringify.ts +++ b/yaml/unstable_stringify.ts @@ -1,7 +1,7 @@ // Ported from js-yaml v3.13.1: // https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. -// Copyright 2018-2025 the Deno authors. MIT license. +// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { DumperState } from "./_dumper_state.ts";