All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
BREAKING
for breaking changes.Added
for new features.Changed
for changes in existing functionality.Deprecated
for soon-to-be removed features.Removed
for now removed features.Fixed
for any bug fixes.Security
in case of vulnerabilities.
---#
- Attach
schema
tobm-properties
response header. assistant.request.url
is now properly set for all environments (development, production, etc) and works whether called from custom domain or Firebase default function domain.
- Require Node.js version
18
or higher. - Updated
firebase-functions
to6.0.1
(now need to requirefirebase-functions/v1
to use v1 functions orfirebase-functions/v2
to use v2 functions).
- Replaced all
methods
references withroutes
. This should be changed in your code as well.
- Modified
.assistant().errorify()
to have defaults oflog
,sentry
, andsend
tofalse
if not specified to prevent accidental logging and premature sending of errors.
- Modified
.assistant()
token/key check to useoptions.apiKey || data.apiKey
- Added
.settings()
API. Put your settings in./schemas/*.js
and access them withassistant.settings.*
.
- Added
.analytics()
API GA4 support.
analytics.send({
name: 'tutorial_begin',
params: {
tutorial_id: 'tutorial_1',
tutorial_name: 'the_beginning',
tutorial_step: 1,
},
});
- Added
.usage()
API to track user usage. - Added
.middleware()
API to help setup http functions. - Added
.respond()
function toassistant.js
to help with http responses.
-
Updated
firebase-admin
from9.12.0
-->11.10.1
-
Updated
firebase-functions
from3.24.1
-->4.4.1
-
This project now requires
firebase-tools
from10.9.2
-->12.5.2
-
Updated required Node.js version from
12
-->16
-
Updated
@google-cloud/storage
from5.20.5
-->7.0.1
-
Updated
fs-jetpack
from4.3.1
-->5.1.0
-
Updated
uuid
from8.3.2
-->9.0.0
-
Removed
backend-assistant
dependency and moved to custom library within this module at./src/manager/helpers/assistant.js
-
Replaced
require('firebase-functions/lib/logger/compat')
with the updatedrequire('firebase-functions/logger/compat')
-
Changed default for
options.setupFunctionsLegacy
fromtrue
-->false
-
.analytics()
is broken due to GA4 updates and should not be used until the next feature release -
Updated geolocation and client data retrieval to new format:
const assistant = new Assistant();
// Get geolocation data
assistant.request.geolocation.ip;
assistant.request.geolocation.continent;
assistant.request.geolocation.country;
assistant.request.geolocation.region;
assistant.request.geolocation.city;
assistant.request.geolocation.latitude;
assistant.request.geolocation.longitude;
// Get Client data
assistant.request.client.userAgent;
assistant.request.client.language;
assistant.request.client.platform;
assistant.request.client.mobile;
const assistant = new Assistant();
// Get geolocation data
assistant.request.ip;
assistant.request.continent;
assistant.request.country;
assistant.request.region;
assistant.request.city;
assistant.request.latitude;
assistant.request.longitude;
// Get Client data
assistant.request.userAgent;
assistant.request.language;
assistant.request.platform;
assistant.request.mobile;
- Identity Platform auth/before-create.js
- Identity Platform auth/before-signin.js
- Disable these by passing
options.setupFunctionsIdentity: false