зеркало из https://github.com/mozilla/fxa.git
Release 1.179.0
This commit is contained in:
Родитель
8606b1c14c
Коммит
a8ba875301
8
AUTHORS
8
AUTHORS
|
@ -34,8 +34,8 @@ dave justice
|
|||
Dave Justice
|
||||
Deepti
|
||||
dependabot[bot]
|
||||
Divya Biyani
|
||||
divyabiyani
|
||||
Divya Biyani
|
||||
Edouard Oger
|
||||
Edwin Wong
|
||||
Emin Mastizada
|
||||
|
@ -64,8 +64,8 @@ Jason Strutz
|
|||
jbonacci
|
||||
Jed Parsons
|
||||
Jody Heavener
|
||||
John Gruen
|
||||
johngruen
|
||||
John Gruen
|
||||
John Morrison
|
||||
Jon Buckley
|
||||
Jon Petto
|
||||
|
@ -78,8 +78,8 @@ Karan Sapolia
|
|||
Kit Cambridge
|
||||
Kohei Yoshino
|
||||
Kurt Bauer
|
||||
Larissa Gaulia
|
||||
larissagaulia
|
||||
Larissa Gaulia
|
||||
Lauren Zugai
|
||||
Leif Oines
|
||||
Les Orchard
|
||||
|
@ -120,8 +120,8 @@ Ramyashree DG
|
|||
rebeccabillings
|
||||
Renoir Boulanger
|
||||
Renovate Bot
|
||||
Riadh Chtara
|
||||
riadhchtara
|
||||
Riadh Chtara
|
||||
Rishi Baldawa
|
||||
Robert Kowalski
|
||||
Roger Meier
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-auth-db-mysql",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "MySQL backend for Firefox Accounts",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
## 1.179.0
|
||||
|
||||
### New features
|
||||
|
||||
- auth-server: add stripe object filtering ([de82e10d3](https://github.com/mozilla/fxa/commit/de82e10d3))
|
||||
- auth-server: add setup intent methods ([f60c453e4](https://github.com/mozilla/fxa/commit/f60c453e4))
|
||||
- add new stripe methods for payment method id ([e5f5d911a](https://github.com/mozilla/fxa/commit/e5f5d911a))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- oauth: Clarify that JWT `typ` header is case-insensitive. ([4afe925c1](https://github.com/mozilla/fxa/commit/4afe925c1))
|
||||
- auth-server: allow customer to not have source on file ([21685ef29](https://github.com/mozilla/fxa/commit/21685ef29))
|
||||
- auth-server: payload validation for payment methods ([1ac47bd08](https://github.com/mozilla/fxa/commit/1ac47bd08))
|
||||
- attached-clients: Ignore a device's refreshTokenId if it's not a live token. ([3b980c6c9](https://github.com/mozilla/fxa/commit/3b980c6c9))
|
||||
|
||||
## 1.178.1
|
||||
|
||||
### Bug fixes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-auth-server",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts, an identity provider for Mozilla cloud services",
|
||||
"bin": {
|
||||
"fxa-auth": "./bin/key_server.js"
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
## 1.179.0
|
||||
|
||||
### New features
|
||||
|
||||
- payments: New PaymentFormV2 component with Stripe upgrades ([05c0a47a7](https://github.com/mozilla/fxa/commit/05c0a47a7))
|
||||
- surveys: Replace minimize/maximize functionality with close ([4318c3ff3](https://github.com/mozilla/fxa/commit/4318c3ff3))
|
||||
- surveys: send env and server name to survey gizmo as query params ([37f0bf0bd](https://github.com/mozilla/fxa/commit/37f0bf0bd))
|
||||
- surveys: don't animate survey when prefers-reduced-motion is present ([2af2db710](https://github.com/mozilla/fxa/commit/2af2db710))
|
||||
- surveys: always show surveys in dev, regardless of rate or last shown timestamp ([0375e993e](https://github.com/mozilla/fxa/commit/0375e993e))
|
||||
- surveys: permit strings or arrays to be used in RP checks ([b32ec7efc](https://github.com/mozilla/fxa/commit/b32ec7efc))
|
||||
- surveys: permit strings or arrays to be used in ua property checks ([007adc315](https://github.com/mozilla/fxa/commit/007adc315))
|
||||
- surveys: send matching conditions over to survey gizmo ([5106a1444](https://github.com/mozilla/fxa/commit/5106a1444))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- content-server: disable the "Take picture" button ([1fbac30a6](https://github.com/mozilla/fxa/commit/1fbac30a6))
|
||||
- content-server: clean the password input ([b8fdf796d](https://github.com/mozilla/fxa/commit/b8fdf796d))
|
||||
- content-server: create fake hidden input ([1187f6efb](https://github.com/mozilla/fxa/commit/1187f6efb))
|
||||
- react: use package.json export ([10c230f04](https://github.com/mozilla/fxa/commit/10c230f04))
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-content-server",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts Content Server",
|
||||
"scripts": {
|
||||
"build": "tsc --build ../fxa-react && NODE_ENV=production grunt build",
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-customs-server",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts Customs Server",
|
||||
"author": "Mozilla (https://mozilla.org/)",
|
||||
"license": "MPL-2.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-email-event-proxy",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Proxies events from Sendgrid to FxA SQS queues",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -689,7 +689,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "fxa_email_service"
|
||||
version = "1.178.1"
|
||||
version = "1.179.0"
|
||||
dependencies = [
|
||||
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "fxa_email_service"
|
||||
version = "1.178.1"
|
||||
version = "1.179.0"
|
||||
publish = false
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Change history
|
||||
|
||||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-event-broker",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts Event Broker",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Change history
|
||||
|
||||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-geodb",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts GeoDB Repo for Geolocation based services",
|
||||
"main": "lib/fxa-geodb.js",
|
||||
"directories": {
|
||||
|
|
|
@ -1,5 +1,20 @@
|
|||
# Change history
|
||||
|
||||
## 1.179.0
|
||||
|
||||
### New features
|
||||
|
||||
- payments: New PaymentFormV2 component with Stripe upgrades ([05c0a47a7](https://github.com/mozilla/fxa/commit/05c0a47a7))
|
||||
- payments: add @svgr/webpack to storybook can properly compile svgs ([c44d000d3](https://github.com/mozilla/fxa/commit/c44d000d3))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- payments: stop fetching unused cached subscription data on payments frontend ([aa69769bf](https://github.com/mozilla/fxa/commit/aa69769bf))
|
||||
|
||||
### Other changes
|
||||
|
||||
- styles: correctly pass styles into stripe card element ([7fa3fcaef](https://github.com/mozilla/fxa/commit/7fa3fcaef))
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-payments-server",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Firefox Accounts Payments Service",
|
||||
"scripts": {
|
||||
"postinstall": "scripts/download_l10n.sh",
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-profile-server",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"private": true,
|
||||
"description": "Firefox Accounts Profile service.",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Change history
|
||||
|
||||
## 1.179.0
|
||||
|
||||
### New features
|
||||
|
||||
- auth-server: add stripe object filtering ([de82e10d3](https://github.com/mozilla/fxa/commit/de82e10d3))
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-shared",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Shared module for FxA repositories",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Change history
|
||||
|
||||
## 1.179.0
|
||||
|
||||
No changes.
|
||||
|
||||
## 1.178.1
|
||||
|
||||
No changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fxa-support-panel",
|
||||
"version": "1.178.1",
|
||||
"version": "1.179.0",
|
||||
"description": "Small app to help customer support access FxA details",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
|
|
Загрузка…
Ссылка в новой задаче