Skip to content

Commit

Permalink
Dependency update. Release 1.0.0-rc.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Sep 28, 2023
1 parent b01cb11 commit 1ae7708
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 44 deletions.
2 changes: 1 addition & 1 deletion application.meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

const Application = {
name: "pup",
version: "1.0.0-rc.9",
version: "1.0.0-rc.10",
url: "https://deno.land/x/pup@$VERSION/pup.ts",
canary_url: "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
deno: null, /* Minimum stable version of Deno required to run Pup (without --unstable flag) */
Expand Down
40 changes: 20 additions & 20 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,39 +13,39 @@
* - Always use the same version of all imports from deno.land/std
*/
// cli
export { parse } from "https://deno.land/std@0.199.0/flags/mod.ts"
export type { Args } from "https://deno.land/std@0.199.0/flags/mod.ts"
export * as path from "https://deno.land/std@0.199.0/path/mod.ts"
export * as uuid from "https://deno.land/std@0.199.0/uuid/mod.ts"
export { parse } from "https://deno.land/std@0.203.0/flags/mod.ts"
export type { Args } from "https://deno.land/std@0.203.0/flags/mod.ts"
export * as path from "https://deno.land/std@0.203.0/path/mod.ts"
export * as uuid from "https://deno.land/std@0.203.0/uuid/mod.ts"
// logger
export { stripColor } from "https://deno.land/std@0.199.0/fmt/colors.ts"
export { stripColor } from "https://deno.land/std@0.203.0/fmt/colors.ts"
// config
export * as jsonc from "https://deno.land/std@0.199.0/jsonc/mod.ts"
export * as jsonc from "https://deno.land/std@0.203.0/jsonc/mod.ts"
// watcher
export { deferred, delay } from "https://deno.land/std@0.199.0/async/mod.ts"
export { globToRegExp, relative } from "https://deno.land/std@0.199.0/path/mod.ts"
export { deferred, delay } from "https://deno.land/std@0.203.0/async/mod.ts"
export { globToRegExp, relative } from "https://deno.land/std@0.203.0/path/mod.ts"
// load balancer
export { copy } from "https://deno.land/std@0.199.0/streams/mod.ts"
export { copy } from "https://deno.land/std@0.203.0/streams/mod.ts"
// core - process
export { StringReader } from "https://deno.land/std@0.199.0/io/string_reader.ts"
export { readLines } from "https://deno.land/std@0.199.0/io/mod.ts"
export { StringReader } from "https://deno.land/std@0.203.0/io/string_reader.ts"
export { readLines } from "https://deno.land/std@0.203.0/io/mod.ts"
// service installer, release tool
export { existsSync } from "https://deno.land/std@0.199.0/fs/mod.ts"
export { existsSync } from "https://deno.land/std@0.203.0/fs/mod.ts"
// ipc
export { debounce } from "https://deno.land/std@0.199.0/async/mod.ts"
export { basename, dirname, join, resolve } from "https://deno.land/std@0.199.0/path/mod.ts"
export { debounce } from "https://deno.land/std@0.203.0/async/mod.ts"
export { basename, dirname, join, resolve } from "https://deno.land/std@0.203.0/path/mod.ts"
// upgrader
export { gt, lt, parse as parseVersion } from "https://deno.land/std@0.199.0/semver/mod.ts"
export type { SemVer } from "https://deno.land/std@0.199.0/semver/mod.ts"
export { gt, lt, parse as parseVersion } from "https://deno.land/std@0.203.0/semver/mod.ts"
export type { SemVer } from "https://deno.land/std@0.203.0/semver/mod.ts"

/**
* Third party dependencies
*
* - Prefer deno.land/x when available
*/
export { Cron } from "https://deno.land/x/[email protected].1/dist/croner.js"
export { z } from "https://deno.land/x/zod@v3.21.4/mod.ts"
export { Cron } from "https://deno.land/x/[email protected].2/dist/croner.js"
export { z } from "https://deno.land/x/zod@v3.22.2/mod.ts"
export { installService, uninstallService } from "https://deno.land/x/[email protected]/mod.ts"
export type { InstallServiceOptions, UninstallServiceOptions } from "https://deno.land/x/[email protected]/mod.ts"
export { $ } from "https://deno.land/x/dax@0.34.0/mod.ts"
export { CommandChild } from "https://deno.land/x/dax@0.34.0/src/command.ts"
export { $ } from "https://deno.land/x/dax@0.35.0/mod.ts"
export { CommandChild } from "https://deno.land/x/dax@0.35.0/src/command.ts"
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ nav_order: 13

All notable changes to this project will be documented in this section.

## [1.0.0-rc.10] - 2023-09-28

- chore(deps): Full dependency update

## [1.0.0-rc.9] - 2023-08-23

- fix(telemetry): Fixes issue where telemetry kept child process running even after calling `.close()` on the telemetry instance.
Expand Down
4 changes: 3 additions & 1 deletion lib/cli/upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ export async function upgrade(
}

// Determine version to install
const upgradeOrDowngradingAction = freshInstall ? "Installing" : (canaryInstall ? "Upgrading" : gt(Application.version, (requestedVersion as Version).version) ? "Downgrading" : "Upgrading")
const upgradeOrDowngradingAction = freshInstall
? "Installing"
: (canaryInstall ? "Upgrading" : gt(parseVersion(Application.version), parseVersion((requestedVersion as Version).version)) ? "Downgrading" : "Upgrading")

// If upgrading to a version that requires --unstable, alert the user
if (unstableInstall) {
Expand Down
4 changes: 2 additions & 2 deletions plugins/web-interface/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { Application, Router } from "https://deno.land/x/[email protected].0/mod.ts"
export { dirname, fromFileUrl } from "https://deno.land/std@0.199.0/path/mod.ts"
export { Application, Router } from "https://deno.land/x/[email protected].1/mod.ts"
export { dirname, fromFileUrl } from "https://deno.land/std@0.203.0/path/mod.ts"
export { Bundlee } from "https://deno.land/x/[email protected]/mod.ts"
36 changes: 18 additions & 18 deletions plugins/web-interface/static/bundle.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { assert, assertEquals, assertNotEquals, assertRejects, assertThrows } from "https://deno.land/std@0.199.0/assert/mod.ts"
export { assertSpyCall, spy } from "https://deno.land/std@0.199.0/testing/mock.ts"
export { assert, assertEquals, assertNotEquals, assertRejects, assertThrows } from "https://deno.land/std@0.203.0/assert/mod.ts"
export { assertSpyCall, spy } from "https://deno.land/std@0.203.0/testing/mock.ts"
14 changes: 14 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
"canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
"stable": [],
"prerelease": [
{
"version": "1.0.0-rc.10",
"url": "https://deno.land/x/[email protected]/pup.ts",
"deno": null,
"deno_unstable": "1.33.0",
"default_permissions": [
"--allow-env",
"--allow-read",
"--allow-write",
"--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease",
"--allow-net",
"--allow-run"
]
},
{
"version": "1.0.0-rc.9",
"url": "https://deno.land/x/[email protected]/pup.ts",
Expand Down

0 comments on commit 1ae7708

Please sign in to comment.