Skip to content

Commit f15d82f

Browse files
authored
Merge pull request #9 from patbil/ver-0.0.4
Fix url property visibility from private to protected to allow subcla…
2 parents f0e97d4 + 8b7d16c commit f15d82f

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,8 @@ All notable changes to this project will be documented in this file. See [standa
44

55
### 0.0.3 (2025-10-23)
66

7-
8-
### Features
9-
10-
* automatic deploy on npm ([0318da9](https://github.com/patbil/angular-strapi-client/commit/0318da9eb872a0188e323e01c14c32681b23412c))
11-
* automatic deploy on npm ([30f8f4c](https://github.com/patbil/angular-strapi-client/commit/30f8f4c8eadaa61ea7421f9ee2f09a771374e66c))
12-
* automatic deploy on npm ([0dbd9f7](https://github.com/patbil/angular-strapi-client/commit/0dbd9f725c2ae9a6bd458d06cdd051dc308fa331))
13-
* automatic deploy on npm ([8d5fcd9](https://github.com/patbil/angular-strapi-client/commit/8d5fcd98b9aa8d320e9c27592ee2f5b72d8ab2cb))
14-
* automatic deploy on npm ([5534bce](https://github.com/patbil/angular-strapi-client/commit/5534bce7787b38bd381a3ec14667cb9577ac9958))
15-
* automatic deploy on npm ([bd8983c](https://github.com/patbil/angular-strapi-client/commit/bd8983c7629b9208a9307e159bddca52dd07a9a1))
16-
* automatic deploy on npm ([487b2e4](https://github.com/patbil/angular-strapi-client/commit/487b2e4b7e7a41964a9ba8f48728beaffec6d134))
7+
### Infrastructure
8+
- **CI/CD Pipeline**: GitHub Actions workflow for automatic NPM deployment on release
179

1810
## [0.0.2] - 2025-01-23
1911

src/lib/service/strapi/strapi.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { StrapiRequestOptions } from '../../model/strapi-request-options';
1212
providedIn: 'root',
1313
})
1414
export abstract class StrapiService<T> {
15-
private readonly url!: string;
15+
protected readonly url!: string;
1616
abstract path: string;
1717

1818
constructor(

0 commit comments

Comments
 (0)