@boxes-dev/dvb 1.0.34 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/dvb.cjs +5 -5
- package/dist/bin/dvbd.cjs +5 -5
- package/dist/scripts/fix-bashrc.sh +2 -1
- package/package.json +1 -1
package/dist/bin/dvb.cjs
CHANGED
|
@@ -88634,8 +88634,8 @@ var init_otel = __esm({
|
|
|
88634
88634
|
return trimmed && trimmed.length > 0 ? trimmed : void 0;
|
|
88635
88635
|
};
|
|
88636
88636
|
readBuildMetadata = () => {
|
|
88637
|
-
const rawPackageVersion = "1.0.
|
|
88638
|
-
const rawGitSha = "
|
|
88637
|
+
const rawPackageVersion = "1.0.35";
|
|
88638
|
+
const rawGitSha = "f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
88639
88639
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
88640
88640
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
88641
88641
|
return { packageVersion, gitSha };
|
|
@@ -120623,9 +120623,9 @@ var init_sentry = __esm({
|
|
|
120623
120623
|
sentryEnabled = false;
|
|
120624
120624
|
uncaughtExceptionMonitorInstalled = false;
|
|
120625
120625
|
readBuildMetadata2 = () => {
|
|
120626
|
-
const rawPackageVersion = "1.0.
|
|
120627
|
-
const rawGitSha = "
|
|
120628
|
-
const rawSentryRelease = "boxes-dev-dvb@1.0.
|
|
120626
|
+
const rawPackageVersion = "1.0.35";
|
|
120627
|
+
const rawGitSha = "f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
120628
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.35+f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
120629
120629
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
120630
120630
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
120631
120631
|
const sentryRelease = typeof rawSentryRelease === "string" ? rawSentryRelease : void 0;
|
package/dist/bin/dvbd.cjs
CHANGED
|
@@ -88604,8 +88604,8 @@ var init_otel = __esm({
|
|
|
88604
88604
|
return trimmed && trimmed.length > 0 ? trimmed : void 0;
|
|
88605
88605
|
};
|
|
88606
88606
|
readBuildMetadata = () => {
|
|
88607
|
-
const rawPackageVersion = "1.0.
|
|
88608
|
-
const rawGitSha = "
|
|
88607
|
+
const rawPackageVersion = "1.0.35";
|
|
88608
|
+
const rawGitSha = "f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
88609
88609
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
88610
88610
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
88611
88611
|
return { packageVersion, gitSha };
|
|
@@ -120522,9 +120522,9 @@ var init_sentry = __esm({
|
|
|
120522
120522
|
sentryEnabled = false;
|
|
120523
120523
|
uncaughtExceptionMonitorInstalled = false;
|
|
120524
120524
|
readBuildMetadata2 = () => {
|
|
120525
|
-
const rawPackageVersion = "1.0.
|
|
120526
|
-
const rawGitSha = "
|
|
120527
|
-
const rawSentryRelease = "boxes-dev-dvb@1.0.
|
|
120525
|
+
const rawPackageVersion = "1.0.35";
|
|
120526
|
+
const rawGitSha = "f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
120527
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.35+f3556e7e62d92e3775dcf9005933b49b6f735161";
|
|
120528
120528
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
120529
120529
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
120530
120530
|
const sentryRelease = typeof rawSentryRelease === "string" ? rawSentryRelease : void 0;
|
|
@@ -49,7 +49,8 @@ if old in data:
|
|
|
49
49
|
data = data.replace(old, new, 1)
|
|
50
50
|
|
|
51
51
|
if history_block_pattern.search(data):
|
|
52
|
-
|
|
52
|
+
# Use a function replacement so backslashes in bind strings are literal.
|
|
53
|
+
data = history_block_pattern.sub(lambda _match: canonical_history_block, data, count=1)
|
|
53
54
|
else:
|
|
54
55
|
data = history_line_pattern.sub("", data)
|
|
55
56
|
marker = "\n# Basic aliases"
|