File tree Expand file tree Collapse file tree 10 files changed +2
-222
lines changed Expand file tree Collapse file tree 10 files changed +2
-222
lines changed Original file line number Diff line number Diff line change 1111 * Only up to 15 ping submissions every 60 seconds are now allowed.
1212* [ #658 ] ( https://github.com/mozilla/glean.js/pull/658 ) : BUGFIX: Unblock ping uploading jobs after the maximum of upload failures are hit for a given uploading window.
1313* [ #661 ] ( https://github.com/mozilla/glean.js/pull/661 ) : Include unminified version of library on Qt/QML builds.
14- * [ #647 ] ( https://github.com/mozilla/glean.js/pull/647 ) : Implement the Text metric type.
1514* [ #681 ] ( https://github.com/mozilla/glean.js/pull/681 ) : BUGFIX: Fix error in scanning events database upon initialization on Qt/QML.
1615 * This bug prevents the changes introduced in [ #526 ] ( https://github.com/mozilla/glean.js/pull/526 ) from working properly.
1716
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import EventMetricType from "@mozilla/glean/webext/private/metrics/event";
1111import LabeledMetricType from "@mozilla/glean/webext/private/metrics/labeled" ;
1212import QuantityMetricType from "@mozilla/glean/webext/private/metrics/quantity" ;
1313import StringMetricType from "@mozilla/glean/webext/private/metrics/string" ;
14- import TextMetricType from "@mozilla/glean/webext/private/metrics/text" ;
1514import TimespanMetricType from "@mozilla/glean/webext/private/metrics/timespan" ;
1615import UUIDMetricType from "@mozilla/glean/webext/private/metrics/uuid" ;
1716import URLMetricType from "@mozilla/glean/webext/private/metrics/url" ;
@@ -29,7 +28,6 @@ console.log(
2928 JSON . stringify ( LabeledMetricType ) ,
3029 JSON . stringify ( QuantityMetricType ) ,
3130 JSON . stringify ( StringMetricType ) ,
32- JSON . stringify ( TextMetricType ) ,
3331 JSON . stringify ( TimespanMetricType ) ,
3432 JSON . stringify ( UUIDMetricType ) ,
3533 JSON . stringify ( URLMetricType ) ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const LOG_TAG = "CLI";
1919const VIRTUAL_ENVIRONMENT_DIR = ".venv" ;
2020
2121// The version of glean_parser to install from PyPI.
22- const GLEAN_PARSER_VERSION = "4.0 .0" ;
22+ const GLEAN_PARSER_VERSION = "3.8 .0" ;
2323
2424// This script runs a given Python module as a "main" module, like
2525// `python -m module`. However, it first checks that the installed
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import { CounterMetric } from "./types/counter.js";
1212import { DatetimeMetric } from "./types/datetime.js" ;
1313import { QuantityMetric } from "./types/quantity.js" ;
1414import { StringMetric } from "./types/string.js" ;
15- import { TextMetric } from "./types/text.js" ;
1615import { TimespanMetric } from "./types/timespan.js" ;
1716import { UrlMetric } from "./types/url.js" ;
1817import { UUIDMetric } from "./types/uuid.js" ;
@@ -31,7 +30,6 @@ const METRIC_MAP: {
3130 "labeled_string" : LabeledMetric ,
3231 "quantity" : QuantityMetric ,
3332 "string" : StringMetric ,
34- "text" : TextMetric ,
3533 "timespan" : TimespanMetric ,
3634 "url" : UrlMetric ,
3735 "uuid" : UUIDMetric ,
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import EventMetricType from "../core/metrics/types/event.js";
1717import LabeledMetricType from "../core/metrics/types/labeled.js" ;
1818import QuantityMetricType from "../core/metrics/types/quantity.js" ;
1919import StringMetricType from "../core/metrics/types/string.js" ;
20- import TextMetricType from "../core/metrics/types/text.js" ;
2120import TimespanMetricType from "../core/metrics/types/timespan.js" ;
2221import UUIDMetricType from "../core/metrics/types/uuid.js" ;
2322import URLMetricType from "../core/metrics/types/url.js" ;
@@ -125,7 +124,6 @@ export default {
125124 QuantityMetricType,
126125 StringMetricType,
127126 TimespanMetricType,
128- TextMetricType,
129127 UUIDMetricType,
130128 URLMetricType
131129 }
Original file line number Diff line number Diff line change @@ -175,18 +175,3 @@ for_testing:
175175 expires : never
176176 send_in_pings :
177177 - testing
178- text :
179- type : text
180- description : |
181- Sample text metric.
182- bugs :
183- - https://bugzilla.mozilla.org/000000
184- data_reviews :
185- - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3
186- notification_emails :
187- - me@mozilla.com
188- expires : never
189- send_in_pings :
190- - testing
191- data_sensitivity :
192- - highly_sensitive
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ describe("schema", function() {
7070 metrics . labeledString [ "a_label" ] . set ( "ho" ) ;
7171 metrics . quantity . set ( 42 ) ;
7272 metrics . string . set ( "let's go" ) ;
73- metrics . text . set ( "let's gooooooooo" ) ;
7473 metrics . timespan . setRawNanos ( 10 * 10 ** 6 ) ;
7574 metrics . uuid . generateAndSet ( ) ;
7675 metrics . url . set ( "glean://test" ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11PySide2 == 5.15.2
22shiboken2 == 5.15.2
3- glean_parser == 4.0 .0
3+ glean_parser == 3.8 .0
You can’t perform that action at this time.
0 commit comments