Skip to content

Commit

Permalink
release(workspace): v9.12.4 release
Browse files Browse the repository at this point in the history
fix: fixed fetch issues

- fixed issue with fetchURL() where no relative URL could be returned as attempting to create a new URL with a relative path and no base would throw an error
- fixed issue where any paths on the base url were not being retained when creating the final url
- added fixExtraQueryParameters()
- added additional tests
  • Loading branch information
ci committed Nov 8, 2022
1 parent 9f3f249 commit a227332
Show file tree
Hide file tree
Showing 64 changed files with 372 additions and 86 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)


### Bug Fixes

* fixed fetch issues ([8859b49](https://github.com/dereekb/dbx-components/commit/8859b4967030e9cecc336195f4d12551b9cc8d93))



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions apps/demo-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions apps/demo-e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions apps/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions components/demo-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion components/demo-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/demo-components",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
Expand Down
4 changes: 4 additions & 0 deletions components/demo-firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion components/demo-firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/demo-firebase",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-components",
"version": "9.12.3",
"version": "9.12.4",
"license": "MIT",
"scripts": {
"postinstall": "ngcc --properties es2020 browser module main && echo >> .env.local",
Expand Down
4 changes: 4 additions & 0 deletions packages/browser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/browser",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
4 changes: 4 additions & 0 deletions packages/date/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/date/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/date",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
4 changes: 4 additions & 0 deletions packages/dbx-analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-analytics",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-core",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-firebase",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-form/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-form/mapbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-form/mapbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-form/mapbox",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.1.0",
"@angular/core": "^14.1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-form",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions packages/dbx-web/mapbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-web/mapbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-web/mapbox",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.1.0",
"@angular/core": "^14.1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/dbx-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/dbx-web",
"version": "9.12.3",
"version": "9.12.4",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/firebase-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions packages/firebase-server/mailgun/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-server/mailgun/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/firebase-server/mailgun",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion packages/firebase-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/firebase-server",
"version": "9.12.3",
"version": "9.12.4",
"devDependencies": {
"firebase-functions-test": "2.0.2"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/firebase-server/test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-server/test/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/firebase-server/test",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
4 changes: 4 additions & 0 deletions packages/firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dereekb/firebase",
"version": "9.12.3",
"version": "9.12.4",
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.0"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/firebase/test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/firebase/test/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/firebase/test",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
4 changes: 4 additions & 0 deletions packages/model/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/model/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dereekb/model",
"version": "9.12.3",
"version": "9.12.4",
"type": "commonjs"
}
4 changes: 4 additions & 0 deletions packages/nestjs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
4 changes: 4 additions & 0 deletions packages/nestjs/mailgun/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [9.12.4](https://github.com/dereekb/dbx-components/compare/v9.12.3-dev...v9.12.4) (2022-11-08)



## [9.12.3](https://github.com/dereekb/dbx-components/compare/v9.12.2-dev...v9.12.3) (2022-11-07)


Expand Down
Loading

0 comments on commit a227332

Please sign in to comment.