Skip to content

Commit

Permalink
chore(deps)!: bump js-lib to 9.0.0 (#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelez committed Oct 25, 2023
1 parent caa1819 commit 94b7f26
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 36 deletions.
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.0845-test-server.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "0845-test-server",
Expand Down
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.dev-server.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "dev-server",
Expand Down
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.dev.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "local-dev",
Expand Down
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.ls-test-server.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "ls-test-server",
Expand Down
3 changes: 0 additions & 3 deletions apps/dsp-app/src/config/config.prod.json
Expand Up @@ -3,7 +3,6 @@
"apiProtocol": "http",
"apiHost": "0.0.0.0",
"apiPort": 3333,
"zioApiPort": 5555,
"apiPath": "",
"iiifProtocol": "http",
"iiifHost": "0.0.0.0",
Expand All @@ -12,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": false,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "prod",
Expand Down
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.staging-server.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "staging-server",
Expand Down
2 changes: 0 additions & 2 deletions apps/dsp-app/src/config/config.test-server.json
Expand Up @@ -11,8 +11,6 @@
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "test-server",
Expand Down
Expand Up @@ -23,8 +23,6 @@ describe('AppConfigService with dev config', () => {
iiifPath: 'mypath',
jsonWebToken: 'mytoken',
logErrors: true,
zioPrefix: ':5555',
zioEndpoints: [],
geonameToken: 'geoname_token',
iriBase: 'http://rdfh.ch',
instrumentation: {
Expand Down Expand Up @@ -61,8 +59,6 @@ describe('AppConfigService with dev config', () => {
expect(service.dspApiConfig.apiProtocol).toEqual('http');
expect(service.dspApiConfig.apiHost).toEqual('0.0.0.0');
expect(service.dspApiConfig.apiPort).toEqual(3333);
expect(service.dspApiConfig.zioPrefix).toEqual(':5555');
expect(service.dspApiConfig.zioEndpoints).toEqual([]);
expect(service.dspApiConfig.apiPath).toEqual('mypath');
expect(service.dspIiifConfig.iiifProtocol).toEqual('http');
expect(service.dspIiifConfig.iiifHost).toEqual('0.0.0.0');
Expand Down Expand Up @@ -106,8 +102,6 @@ describe('AppConfigService with prod config', () => {
iiifPath: '',
jsonWebToken: 'mytoken',
logErrors: true,
zioPrefix: '/zio',
zioEndpoints: [],
geonameToken: 'geoname_token',
iriBase: 'http://rdfh.ch',
instrumentation: {
Expand Down Expand Up @@ -151,8 +145,6 @@ describe('AppConfigService with prod config', () => {
expect(service.dspApiConfig.apiHost).toEqual('0.0.0.0');
expect(service.dspApiConfig.apiPort).toEqual(3333);
expect(service.dspApiConfig.apiPath).toEqual('');
expect(service.dspApiConfig.zioPrefix).toEqual('/zio');
expect(service.dspApiConfig.zioEndpoints).toEqual([]);
expect(service.dspIiifConfig.iiifProtocol).toEqual('https');
expect(service.dspIiifConfig.iiifHost).toEqual('0.0.0.0');
expect(service.dspIiifConfig.iiifPort).toEqual(1024);
Expand Down
Expand Up @@ -63,8 +63,6 @@ export class AppConfigService {
c.apiPath,
c.jsonWebToken,
c.logErrors,
c.zioPrefix,
c.zioEndpoints
);

// init iiif configuration
Expand Down
Expand Up @@ -20,8 +20,6 @@ describe('app-config schema tests', () => {
iiifPath: '',
jsonWebToken: 'mytoken',
logErrors: true,
zioPrefix: '/zio',
zioEndpoints: [],
geonameToken: 'geoname_token',
iriBase: 'http://rdfh.ch',
instrumentation: {
Expand Down Expand Up @@ -58,8 +56,6 @@ describe('app-config schema tests', () => {
iiifPath: '',
jsonWebToken: 'mytoken',
logErrors: true,
zioPrefix: '/zio',
zioEndpoints: [],
geonameToken: 'geoname_token',
iriBase: 'http://rdfh.ch',
instrumentation: {
Expand Down
2 changes: 0 additions & 2 deletions libs/vre/shared/app-config/src/lib/app-config/app-config.ts
Expand Up @@ -84,8 +84,6 @@ export const AppConfig = z.object({
apiProtocol: z.enum(['http', 'https']),
apiHost: z.string().nonempty("required 'apiHost' value missing in config"),
apiPort: ApiPort,
zioPrefix: z.enum(['/zio', ':5555']),
zioEndpoints: z.array(z.string()), // array of strings
apiPath: z.string(),
iiifProtocol: z.enum(['http', 'https']),
iiifHost: z
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -40,7 +40,7 @@
"@angular/platform-browser-dynamic": "^16.1.5",
"@angular/router": "^16.1.5",
"@ckeditor/ckeditor5-angular": "^5.2.0",
"@dasch-swiss/dsp-js": "^8.3.6",
"@dasch-swiss/dsp-js": "^9.0.0",
"@datadog/browser-logs": "^4.42.2",
"@datadog/browser-rum": "^4.42.2",
"@ngrx/component-store": "^16.1.0",
Expand Down

0 comments on commit 94b7f26

Please sign in to comment.