Skip to content

Commit 51502b0

Browse files
Revert "feat: Orbiter v0.0.9 instead of v0.2.0 (#1528)" (#1529)
This reverts commit 12eec1e.
1 parent a0536e3 commit 51502b0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/frontend/src/lib/services/orbiter/orbiters.services.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export const loadOrbiterConfigs = async ({
153153
}
154154
};
155155

156-
// We originally migrated the features to be all enabled but, in v0.0.9 decided to make the performance metrics disabled by default.
156+
// We originally migrated the features to be all enabled but, in v0.2.0 decided to make the performance metrics disabled by default.
157157
const deprecatedEnabledFeatures = {
158158
performance_metrics: true,
159159
track_events: true,

src/orbiter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orbiter"
3-
version = "0.0.9"
3+
version = "0.2.0"
44
edition = "2021"
55
publish = false
66

src/orbiter/src/analytics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ pub fn analytics_page_views_clients(
201201
// We primarily use screen width to determine the device type. While this may be less precise than identifying the exact device,
202202
// it provides a good estimate, especially since web apps are typically built responsively.
203203
// Additionally, both UA parsing and regex-based approaches have reliability limitations.
204-
// Screen size collection was introduced in v0.0.9 — hence the need for fallbacks when unavailable.
204+
// Screen size collection was introduced in v0.2.0 — hence the need for fallbacks when unavailable.
205205

206206
if let Some(screen_width) = device.screen_width {
207207
analytics_devices_with_sizes(&screen_width, &mut total_devices);

src/tests/specs/orbiter/orbiter.upgrade.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ describe('Orbiter > Upgrade', () => {
401401
});
402402
});
403403

404-
describe('v0.0.8 -> v0.0.9', () => {
404+
describe('v0.0.8 -> v0.2.0', () => {
405405
let actor: Actor<OrbiterActor0_0_8>;
406406

407407
const setPageViews0_0_8 = async (): Promise<AnalyticKey[]> => {

0 commit comments

Comments
 (0)