Граф коммитов

2692 Коммитов

Автор SHA1 Сообщение Дата
dependabot[bot] fd32bde558
chore(deps): bump @stripe/react-stripe-js from 1.15.0 to 1.16.3
Bumps [@stripe/react-stripe-js](https://github.com/stripe/react-stripe-js) from 1.15.0 to 1.16.3.
- [Release notes](https://github.com/stripe/react-stripe-js/releases)
- [Changelog](https://github.com/stripe/react-stripe-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stripe/react-stripe-js/compare/v1.15.0...v1.16.3)

---
updated-dependencies:
- dependency-name: "@stripe/react-stripe-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-13 06:09:38 +00:00
dependabot[bot] bb02697326
chore(deps-dev): bump esbuild from 0.14.2 to 0.16.17
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.14.2 to 0.16.17.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2021.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.14.2...v0.16.17)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-12 01:21:18 +00:00
dependabot[bot] 94ea3a5a20
chore(deps): bump class-validator from 0.13.2 to 0.14.0
Bumps [class-validator](https://github.com/typestack/class-validator) from 0.13.2 to 0.14.0.
- [Release notes](https://github.com/typestack/class-validator/releases)
- [Changelog](https://github.com/typestack/class-validator/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/typestack/class-validator/compare/v0.13.2...v0.14.0)

---
updated-dependencies:
- dependency-name: class-validator
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-11 23:24:17 +00:00
Vijay Budhram 2879c2723a
Merge pull request #14739 from mozilla/dependabot/npm_and_yarn/convict-6.2.4
chore(deps): bump convict from 6.2.3 to 6.2.4
2023-01-11 10:58:10 -05:00
dependabot[bot] 1f8cda2086
chore(deps): bump knex from 2.3.0 to 2.4.0
Bumps [knex](https://github.com/knex/knex) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/knex/knex/releases)
- [Changelog](https://github.com/knex/knex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/knex/knex/compare/2.3.0...2.4.0)

---
updated-dependencies:
- dependency-name: knex
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-11 04:42:08 +00:00
dependabot[bot] 0653d4e3d3
chore(deps): bump convict from 6.2.3 to 6.2.4
Bumps [convict](https://github.com/mozilla/node-convict) from 6.2.3 to 6.2.4.
- [Release notes](https://github.com/mozilla/node-convict/releases)
- [Changelog](https://github.com/mozilla/node-convict/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mozilla/node-convict/commits)

---
updated-dependencies:
- dependency-name: convict
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-10 22:25:35 +00:00
Dan Schomburg 59ca622387
Merge pull request #14731 from mozilla/FXA-6266
task(CI): build, unit test, and integration test jobs
2023-01-10 13:53:54 -08:00
dschom a620922422
task(CI): build, unit test, and integration test jobs
Because:
- We wanted to run a few preliminary checks before proceeding to more
  expensive CI jobs. Checks include:
    - Compiling typescript in commonly referenced workspace packages
    - Linting code that has changed
    - Executing Unit Tests for code that has changed
- We wanted to partition test operations into unit tests, and
   integration tests. Unit tests can be run relatively quickly and
   require no additional infrastructure. Integration tests require
   additional infrastructure and generally have longer execution
   times. Now that jobs are blocked from running until preliminary
   checks pass, one of which is unit tests, it is important to draw a
   distinction between these two types of tests.
- We want to avoid unnecessary yarn installs and typescript
  compilations, which are time consuming.
- We want to make sure that test results are published and failing tests
   can be easily viewed in the CI.

This Commit:

- Creates a build-and-validate job in the CI that builds, lints, and
  unit tests code prior to running any other jobs.
- Creates unit-test job in CI config
- Creates integration-test job in CI config
- Removes redundant calls to compile workspace packages. These
  are now built up front, cached, and restored as needed for future
  runs.
- Extends the create-lists script functionality to generate commands
  that can be executed with the parallel command.
- Removes unnecessary yarn install operations. Invoking yarn workspace
   focus results in a yarn install. In the case of running tests this is largely
   unnecessary, because we already do a yarn install in the base-install
   step.
- Make sure test results are exported as junit xml so the CI can report
  back on tests that were failing. This was done for a couple workspace
  packages, but many were lacking the capability. All test:unit and
  test:integration npm scripts now export this data.
- Fixes the following issues encountered along the way:
        - Adds logs to monitor heap usage of jest tests. Some
          jest tests are still using a lot of memory.
        - Moves a few slow / long running tests from unit test to
          integration tests.
        - Ensures that jest.transform for ts-jest is always instructed
           to have the config option isolateModules is set to true. This
           definitely decreases memory overhead and resolves some
           of the OOM errors we were hitting. It was configured in
           some places but not everywhere.
        - Exports test results files for all tests
        - Exports all test artifacts
        - Uses gnu parallel to run tests in parallel. Turns out yarn
          workspaces foreach would give a false positive when an OOM
          was encountered. Fortunately, the parallel command offered an
          acceptable work around, and even offers some nice features
          like the load argument, which allows to control test execution a
          bit more efficiently.
2023-01-10 12:52:01 -08:00
dependabot[bot] 7b39167869
chore(deps): bump luxon from 2.3.2 to 2.5.2
Bumps [luxon](https://github.com/moment/luxon) from 2.3.2 to 2.5.2.
- [Release notes](https://github.com/moment/luxon/releases)
- [Changelog](https://github.com/moment/luxon/blob/master/CHANGELOG.md)
- [Commits](https://github.com/moment/luxon/compare/2.3.2...2.5.2)

---
updated-dependencies:
- dependency-name: luxon
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-09 14:45:48 +00:00
dependabot[bot] 3c88d75d18
chore(deps): bump @opentelemetry/auto-instrumentations-node
Bumps [@opentelemetry/auto-instrumentations-node](https://github.com/open-telemetry/opentelemetry-js-contrib) from 0.33.1 to 0.36.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/instrumentation-redis-v0.33.1...auto-instrumentations-node-v0.36.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/auto-instrumentations-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-03 06:35:00 +00:00
dependabot[bot] 5017fde8a9
chore(deps): bump fast-json-patch from 3.0.0-1 to 3.1.1
Bumps [fast-json-patch](https://github.com/Starcounter-Jack/JSON-Patch) from 3.0.0-1 to 3.1.1.
- [Release notes](https://github.com/Starcounter-Jack/JSON-Patch/releases)
- [Commits](https://github.com/Starcounter-Jack/JSON-Patch/compare/3.0.0-1...3.1.1)

---
updated-dependencies:
- dependency-name: fast-json-patch
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-30 17:11:05 +00:00
Vijay Budhram 5b50225520
fix(tests): Lower number of content-server test executors and increase instance size 2022-12-20 13:11:41 -05:00
Dan Schomburg 4c14d3e2c2
Merge pull request #14597 from mozilla/FXA-6344
task(ci): Use docker base images to run pipelines
2022-12-19 11:09:42 -08:00
dschom 80a4c66a94
Try targeting mozilla-fxa repos again 2022-12-19 09:35:21 -08:00
Reino Muhl ad7ca38115
Merge pull request #14591 from mozilla/fxa-6187-sub-manage-display-tax
fix(Subscriptions): add tax to sub management
2022-12-19 11:38:38 -05:00
Reino Muhl 50087fd712
fix(Subscriptions): add tax to sub management
Because:

* For exclusive tax, display the tax amount in subscription management

This commit:

* Adds a new component, PriceDetails, that can be used to display the
  price with/out tax, and price intervals with/out tax.
* Adds PriceDetails component to Subscription Management, and updates
  the copy used.
* Preview invoice for each subscription to get the current tax amount
* Update preview invoice and subsequent invoices endpoints to return
  total and subtotal *_excluding_tax amounts.

Closes #FXA-6187
2022-12-16 17:42:53 -05:00
dschom acf3c82590
task(ci): Use docker base image
Because:
- We want to speed up pipeline startup.

This Commit:
- Optimizes docker base image builds for the smallest images possible.
- Enables hard links for yarn cache
- Enables global yarn cache
- Avoids needlessly installing playwright browsers.
- Avoids needlessly running yarn install.
- Uses mozilla/fxa-circleci:ci-base-latest image for running test pipelines
- Uses mozilla/fxa-circleci:ci-base-browsers image for running functional tests pipelines
- Creates configurable executors that can be reused across pipelines
- Upgrades to yarn 3.3.0
- Enabled direct check out of PR code to test, which is faster than circle ci’s checkout command.
- Upgrades functional test to X-Large. This was already the case for playwright tests, but is now extended to content server tests too. This decision was made due to running lots of pipelines and realizing flakiness was largely due to CPU or memory hitting 100% for long periods of time.
- Turns off tracing, since it saves a bit of runtime.
2022-12-15 15:48:16 -08:00
Lauren Zugai 1437af6a6e
Merge pull request #14594 from mozilla/dependabot/npm_and_yarn/opentelemetry/exporter-trace-otlp-http-0.34.0
chore(deps): bump @opentelemetry/exporter-trace-otlp-http from 0.33.0 to 0.34.0
2022-12-14 15:06:16 -06:00
dependabot[bot] a8e4e871c3
chore(deps): bump @opentelemetry/exporter-trace-otlp-http
Bumps [@opentelemetry/exporter-trace-otlp-http](https://github.com/open-telemetry/opentelemetry-js) from 0.33.0 to 0.34.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.33.0...experimental/v0.34.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/exporter-trace-otlp-http"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-14 18:49:59 +00:00
dependabot[bot] ea0f11e18a
chore(deps-dev): bump read from 1.0.7 to 2.0.0
Bumps [read](https://github.com/npm/read) from 1.0.7 to 2.0.0.
- [Release notes](https://github.com/npm/read/releases)
- [Changelog](https://github.com/npm/read/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/read/compare/v1.0.7...v2.0.0)

---
updated-dependencies:
- dependency-name: read
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-14 06:06:49 +00:00
dependabot[bot] 48c1744d95
chore(deps-dev): bump postcss-import from 15.0.0 to 15.1.0
Bumps [postcss-import](https://github.com/postcss/postcss-import) from 15.0.0 to 15.1.0.
- [Release notes](https://github.com/postcss/postcss-import/releases)
- [Changelog](https://github.com/postcss/postcss-import/blob/master/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss-import/compare/15.0.0...15.1.0)

---
updated-dependencies:
- dependency-name: postcss-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-13 06:14:06 +00:00
Valerie Pomerleau 499a41a410
refactor(l10n): Ensure shared FTL strings not duplicated on Pontoon
Because:

- Concatenating shared FTL strings into multiple packages before sending for localization created duplication of localization work, and we want each string to only be translated once.

This commit:

- Remove concatenation of shared files (branding.ftl, fxa-react ftl files) from grunttasks
- Add grunttasks in fxa-react to concatenate fxa-react FTL files into one react.ftl file
- Add grunt to fxa-react dev dependencies
- Update fxa-react scripts to run l10n and ftl tasks
- Update clone-l10n script to distribute react.ftl to packages
- Bundle branding and shared into AppLocalizationProvider

Closes #FXA-6388
2022-12-08 15:45:34 -08:00
dependabot[bot] 946cb34a1b
chore(deps): bump express from 4.17.2 to 4.17.3
Bumps [express](https://github.com/expressjs/express) from 4.17.2 to 4.17.3.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.17.2...4.17.3)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-06 20:25:51 +00:00
dependabot[bot] c15e7631fe
chore(deps): bump qs from 6.3.2 to 6.3.3
Bumps [qs](https://github.com/ljharb/qs) from 6.3.2 to 6.3.3.
- [Release notes](https://github.com/ljharb/qs/releases)
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ljharb/qs/compare/v6.3.2...v6.3.3)

---
updated-dependencies:
- dependency-name: qs
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-06 16:41:08 +00:00
Vijay Budhram 391857d904
Merge pull request #14581 from mozilla/dependabot/npm_and_yarn/node-sass-8.0.0
chore(deps): bump node-sass from 7.0.1 to 8.0.0
2022-12-05 10:43:21 -05:00
Barry Chen 2dcd1fa589
Merge pull request #14586 from mozilla/ts-4-point-9
chore(deps): upgrade to TS 4.9
2022-12-02 12:39:10 -06:00
Vijay Budhram 279a1ec27d
Merge pull request #14584 from mozilla/dependabot/npm_and_yarn/ts-morph-17.0.1
chore(deps): bump ts-morph from 16.0.0 to 17.0.1
2022-12-02 13:39:01 -05:00
dependabot[bot] 53e42bae4b
chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases)
- [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2)

---
updated-dependencies:
- dependency-name: decode-uri-component
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-02 16:49:37 +00:00
Barry Chen 3c34f69394
chore(deps): upgrade to TS 4.9 2022-12-02 10:33:12 -06:00
dependabot[bot] a2b07b2b8b
chore(deps): bump ts-morph from 16.0.0 to 17.0.1
Bumps [ts-morph](https://github.com/dsherret/ts-morph) from 16.0.0 to 17.0.1.
- [Release notes](https://github.com/dsherret/ts-morph/releases)
- [Commits](https://github.com/dsherret/ts-morph/compare/16.0.0...17.0.1)

---
updated-dependencies:
- dependency-name: ts-morph
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-02 06:28:26 +00:00
dependabot[bot] e12ad3a5bc
chore(deps): bump @opentelemetry/instrumentation-fetch
Bumps [@opentelemetry/instrumentation-fetch](https://github.com/open-telemetry/opentelemetry-js) from 0.33.0 to 0.34.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.33.0...experimental/v0.34.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/instrumentation-fetch"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-02 06:25:40 +00:00
dependabot[bot] ca2c6353cd
chore(deps): bump node-sass from 7.0.1 to 8.0.0
Bumps [node-sass](https://github.com/sass/node-sass) from 7.0.1 to 8.0.0.
- [Release notes](https://github.com/sass/node-sass/releases)
- [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sass/node-sass/compare/v7.0.1...v8.0.0)

---
updated-dependencies:
- dependency-name: node-sass
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-02 06:22:34 +00:00
Vijay Budhram b339a1c8b9
Merge pull request #14571 from mozilla/dependabot/npm_and_yarn/opentelemetry/instrumentation-document-load-0.31.0
chore(deps): bump @opentelemetry/instrumentation-document-load from 0.30.0 to 0.31.0
2022-12-01 13:03:18 -05:00
Barry Chen d81e6cb196
Merge pull request #14547 from mozilla/FXA-298-shared-js-to-ts
chore(typescript): convert more of fxa-shared to TS
2022-12-01 11:38:23 -06:00
Vijay Budhram 1329ab7c72
Merge pull request #14574 from mozilla/dependabot/npm_and_yarn/nestjs/testing-9.2.1
chore(deps-dev): bump @nestjs/testing from 9.1.1 to 9.2.1
2022-12-01 11:17:20 -05:00
dependabot[bot] 1a0771bf53
chore(deps-dev): bump @typescript-eslint/parser from 5.43.0 to 5.45.0
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.43.0 to 5.45.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.45.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-01 06:18:21 +00:00
dependabot[bot] 1d1f96d533
chore(deps-dev): bump @nestjs/testing from 9.1.1 to 9.2.1
Bumps [@nestjs/testing](https://github.com/nestjs/nest) from 9.1.1 to 9.2.1.
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/compare/v9.1.1...v9.2.1)

---
updated-dependencies:
- dependency-name: "@nestjs/testing"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-01 06:16:55 +00:00
dependabot[bot] 0d97edb821
chore(deps): bump @opentelemetry/instrumentation-document-load
Bumps [@opentelemetry/instrumentation-document-load](https://github.com/open-telemetry/opentelemetry-js-contrib) from 0.30.0 to 0.31.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/host-metrics-v0.30.0...host-metrics-v0.31.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/instrumentation-document-load"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-01 06:06:54 +00:00
Barry Chen 95cded6e96
chore(typescript): convert more of fxa-shared to TS
Because:
 - there were some JS in fxa-shared in fxa-shared that can be converted
   to TS

This commit:
 - convert some shared JS to TS
2022-11-30 17:31:23 -06:00
dependabot[bot] 7a4c95006a
chore(deps-dev): bump type-fest from 3.2.0 to 3.3.0
Bumps [type-fest](https://github.com/sindresorhus/type-fest) from 3.2.0 to 3.3.0.
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](https://github.com/sindresorhus/type-fest/compare/v3.2.0...v3.3.0)

---
updated-dependencies:
- dependency-name: type-fest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-30 16:07:50 +00:00
dependabot[bot] 6ad8b3571c
chore(deps): bump @opentelemetry/exporter-jaeger from 1.7.0 to 1.8.0
Bumps [@opentelemetry/exporter-jaeger](https://github.com/open-telemetry/opentelemetry-js) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js/compare/v1.7.0...v1.8.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/exporter-jaeger"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-29 19:13:44 +00:00
Vijay Budhram a8747c7f36
Merge pull request #14532 from mozilla/dependabot/npm_and_yarn/nestjs/core-9.2.0
chore(deps): bump @nestjs/core from 9.1.1 to 9.2.0
2022-11-29 14:08:16 -05:00
dependabot[bot] 9882959f21
chore(deps-dev): bump @playwright/test from 1.27.1 to 1.28.1
Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.27.1 to 1.28.1.
- [Release notes](https://github.com/Microsoft/playwright/releases)
- [Commits](https://github.com/Microsoft/playwright/compare/v1.27.1...v1.28.1)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-28 18:51:14 +00:00
Dan Schomburg 01062841f8
Merge pull request #14527 from mozilla/FXA-5763
task(content): Move speed-trap library into fxa-shared
2022-11-23 08:43:17 -08:00
dependabot[bot] 0ddf3d63be
chore(deps): bump @nestjs/core from 9.1.1 to 9.2.0
Bumps [@nestjs/core](https://github.com/nestjs/nest) from 9.1.1 to 9.2.0.
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/compare/v9.1.1...v9.2.0)

---
updated-dependencies:
- dependency-name: "@nestjs/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-23 15:40:07 +00:00
Vijay Budhram b5807c6d02
Merge pull request #14530 from mozilla/dependabot/npm_and_yarn/opentelemetry/api-1.3.0
chore(deps): bump @opentelemetry/api from 1.2.0 to 1.3.0
2022-11-23 10:36:59 -05:00
dependabot[bot] eb1a8824e6
chore(deps): bump @opentelemetry/api from 1.2.0 to 1.3.0
Bumps [@opentelemetry/api](https://github.com/open-telemetry/opentelemetry-js) from 1.2.0 to 1.3.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js/compare/v1.2.0...v1.3.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-23 06:08:20 +00:00
dependabot[bot] 1f2c2cf633
chore(deps-dev): bump @typescript-eslint/eslint-plugin
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.41.0 to 5.44.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.44.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-23 06:07:25 +00:00
dschom 59f2c5acac
task(content): Move speed-trap library into fxa-shared
Because:
- There are some issues for timing metrics we are producing.
- Timing values come from the speed trap library, but this library is no longer maintained.

This Commit:
- Takes the source for the speed-trap library (from node_modules/speed-trap), and ports it into fxa-shared.
- Makes some minor adjustments so the code passes
2022-11-22 19:08:20 -08:00
Dan Schomburg 65909aa79c
Merge pull request #14426 from mozilla/dependabot/npm_and_yarn/jwks-rsa-3.0.0
chore(deps): bump jwks-rsa from 2.1.4 to 3.0.0
2022-11-22 14:45:01 -08:00