Skip to content

Commit

Permalink
Merge remote-tracking branch 'migration/main' into nodejs-api-gateway…
Browse files Browse the repository at this point in the history
…-migration
  • Loading branch information
sofisl committed Nov 11, 2022
2 parents 5944688 + e34d465 commit 8e49741
Show file tree
Hide file tree
Showing 55 changed files with 44,564 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/google-cloud-apigateway/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
samples/generated/
3 changes: 3 additions & 0 deletions packages/google-cloud-apigateway/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "./node_modules/gts"
}
4 changes: 4 additions & 0 deletions packages/google-cloud-apigateway/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.ts text eol=lf
*.js text eol=lf
protos/* linguist-generated
**/api-extractor.json linguist-language=JSON-with-Comments
25 changes: 25 additions & 0 deletions packages/google-cloud-apigateway/.github/.OwlBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest

deep-remove-regex:
- /owl-bot-staging

deep-copy-regex:
- source: /google/cloud/apigateway/(.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2

begin-after-commit-hash: f899f4fc473f95086eba7fb43b28794417e24aa0

14 changes: 14 additions & 0 deletions packages/google-cloud-apigateway/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/*.log
**/node_modules
.coverage
coverage
.nyc_output
docs/
out/
build/
system-test/secrets.js
system-test/*key.json
*.lock
.DS_Store
package-lock.json
__pycache__
55 changes: 55 additions & 0 deletions packages/google-cloud-apigateway/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

'use strict';

module.exports = {
opts: {
readme: './README.md',
package: './package.json',
template: './node_modules/jsdoc-fresh',
recurse: true,
verbose: true,
destination: './docs/'
},
plugins: [
'plugins/markdown',
'jsdoc-region-tag'
],
source: {
excludePattern: '(^|\\/|\\\\)[._]',
include: [
'build/src',
'protos'
],
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2022 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/api-gateway',
theme: 'lumen',
default: {
outputSourceFiles: false
}
},
markdown: {
idInHeadings: true
}
};
29 changes: 29 additions & 0 deletions packages/google-cloud-apigateway/.mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
const config = {
"enable-source-maps": true,
"throw-deprecation": true,
"timeout": 10000,
"recursive": true
}
if (process.env.MOCHA_THROW_DEPRECATION === 'false') {
delete config['throw-deprecation'];
}
if (process.env.MOCHA_REPORTER) {
config.reporter = process.env.MOCHA_REPORTER;
}
if (process.env.MOCHA_REPORTER_OUTPUT) {
config['reporter-option'] = `output=${process.env.MOCHA_REPORTER_OUTPUT}`;
}
module.exports = config
24 changes: 24 additions & 0 deletions packages/google-cloud-apigateway/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"report-dir": "./.coverage",
"reporter": ["text", "lcov"],
"exclude": [
"**/*-test",
"**/.coverage",
"**/apis",
"**/benchmark",
"**/conformance",
"**/docs",
"**/samples",
"**/scripts",
"**/protos",
"**/test",
"**/*.d.ts",
".jsdoc.js",
"**/.jsdoc.js",
"karma.conf.js",
"webpack-tests.config.js",
"webpack.config.js"
],
"exclude-after-remap": false,
"all": true
}
6 changes: 6 additions & 0 deletions packages/google-cloud-apigateway/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
17 changes: 17 additions & 0 deletions packages/google-cloud-apigateway/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

module.exports = {
...require('gts/.prettierrc.json')
}
16 changes: 16 additions & 0 deletions packages/google-cloud-apigateway/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"requires_billing": true,
"name": "api-gateway",
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/api-gateway/latest",
"api_id": "apigateway.googleapis.com",
"issue_tracker": "https://github.com/googleapis/nodejs-api-gateway/issues",
"distribution_name": "@google-cloud/api-gateway",
"language": "nodejs",
"release_level": "stable",
"product_documentation": "https://cloud.google.com/api-gateway/docs",
"name_pretty": "API Gateway",
"repo": "googleapis/nodejs-api-gateway",
"default_version": "v1",
"api_shortname": "apigateway",
"library_type": "GAPIC_AUTO"
}
123 changes: 123 additions & 0 deletions packages/google-cloud-apigateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
# Changelog

## [2.1.2](https://github.com/googleapis/nodejs-api-gateway/compare/v2.1.1...v2.1.2) (2022-11-11)


### Bug Fixes

* Allow passing gax instance to client constructor ([#128](https://github.com/googleapis/nodejs-api-gateway/issues/128)) ([d164e0d](https://github.com/googleapis/nodejs-api-gateway/commit/d164e0d73efc730aa20df74a6333e7b139076225))
* **deps:** Use google-gax v3.5.2 ([#136](https://github.com/googleapis/nodejs-api-gateway/issues/136)) ([225bccf](https://github.com/googleapis/nodejs-api-gateway/commit/225bccfd96bdde4329c8481f104379e2293139f0))
* Do not import the whole google-gax from proto JS ([#1553](https://github.com/googleapis/nodejs-api-gateway/issues/1553)) ([#127](https://github.com/googleapis/nodejs-api-gateway/issues/127)) ([ca45455](https://github.com/googleapis/nodejs-api-gateway/commit/ca45455b795e42a95b6e1f814a821467d612bc8d))
* Preserve default values in x-goog-request-params header ([#130](https://github.com/googleapis/nodejs-api-gateway/issues/130)) ([a3e409a](https://github.com/googleapis/nodejs-api-gateway/commit/a3e409abde922fb3adc6eb1888e8a954702cfed2))
* Regenerated protos JS and TS definitions ([#139](https://github.com/googleapis/nodejs-api-gateway/issues/139)) ([924cd81](https://github.com/googleapis/nodejs-api-gateway/commit/924cd8179365dc4364d5431e6e7abab31f6d2bee))
* use google-gax v3.3.0 ([ca45455](https://github.com/googleapis/nodejs-api-gateway/commit/ca45455b795e42a95b6e1f814a821467d612bc8d))

## [2.1.1](https://github.com/googleapis/nodejs-api-gateway/compare/v2.1.0...v2.1.1) (2022-08-23)


### Bug Fixes

* better support for fallback mode ([#123](https://github.com/googleapis/nodejs-api-gateway/issues/123)) ([a5cf1d1](https://github.com/googleapis/nodejs-api-gateway/commit/a5cf1d1322bd1f7c70e995b15ce81f54ad5b10de))
* change import long to require ([#124](https://github.com/googleapis/nodejs-api-gateway/issues/124)) ([6edc9af](https://github.com/googleapis/nodejs-api-gateway/commit/6edc9af8b60cf5bf6494dbc9560ffe1962c268b3))
* remove pip install statements ([#1546](https://github.com/googleapis/nodejs-api-gateway/issues/1546)) ([#126](https://github.com/googleapis/nodejs-api-gateway/issues/126)) ([bde7a85](https://github.com/googleapis/nodejs-api-gateway/commit/bde7a858a9fdb90614a0a5996c525214053e6cb7))

## [2.1.0](https://github.com/googleapis/nodejs-api-gateway/compare/v2.0.0...v2.1.0) (2022-06-29)


### Features

* support regapic LRO ([#116](https://github.com/googleapis/nodejs-api-gateway/issues/116)) ([b3761fc](https://github.com/googleapis/nodejs-api-gateway/commit/b3761fc10fc5f3160ac29dbebfd86fda99de00e6))

## [2.0.0](https://github.com/googleapis/nodejs-api-gateway/compare/v1.2.1...v2.0.0) (2022-05-20)


### ⚠ BREAKING CHANGES

* update library to use Node 12 (#109)

### Build System

* update library to use Node 12 ([#109](https://github.com/googleapis/nodejs-api-gateway/issues/109)) ([b5a07ad](https://github.com/googleapis/nodejs-api-gateway/commit/b5a07ad01f8a9d74a8a713ff412ef165f5f494d8))

### [1.2.1](https://github.com/googleapis/nodejs-api-gateway/compare/v1.2.0...v1.2.1) (2022-01-12)


### Bug Fixes

* **apigateway:** add ancillary service bindings to service_yaml ([#84](https://github.com/googleapis/nodejs-api-gateway/issues/84)) ([801a824](https://github.com/googleapis/nodejs-api-gateway/commit/801a82482addc0acb8485c484b050cd34e39d270))

## [1.2.0](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.6...v1.2.0) (2021-08-23)


### Features

* turns on self-signed JWT feature flag ([#60](https://www.github.com/googleapis/nodejs-api-gateway/issues/60)) ([2f86035](https://www.github.com/googleapis/nodejs-api-gateway/commit/2f86035d2a76604b0e4dad97272781e25e4fe899))

### [1.1.6](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.5...v1.1.6) (2021-08-17)


### Bug Fixes

* **deps:** google-gax v2.24.1 ([#58](https://www.github.com/googleapis/nodejs-api-gateway/issues/58)) ([e5f8604](https://www.github.com/googleapis/nodejs-api-gateway/commit/e5f8604007dfcc0c58c016a0253b9b65616a5ae4))

### [1.1.5](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.4...v1.1.5) (2021-08-09)


### Bug Fixes

* **build:** migrate to using main branch ([#56](https://www.github.com/googleapis/nodejs-api-gateway/issues/56)) ([e7b3909](https://www.github.com/googleapis/nodejs-api-gateway/commit/e7b3909be004b229ae1151514b8b108286a0d6a5))

### [1.1.4](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.3...v1.1.4) (2021-07-16)


### Bug Fixes

* Updating WORKSPACE files to use the newest version of the Typescript generator. ([#48](https://www.github.com/googleapis/nodejs-api-gateway/issues/48)) ([92a65a5](https://www.github.com/googleapis/nodejs-api-gateway/commit/92a65a5be258a685cbed2780f70db0ecf91b65fd))

### [1.1.3](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.2...v1.1.3) (2021-07-12)


### Bug Fixes

* **deps:** google-gax v2.17.1 ([#46](https://www.github.com/googleapis/nodejs-api-gateway/issues/46)) ([d0d953e](https://www.github.com/googleapis/nodejs-api-gateway/commit/d0d953e87e8fe2d04f64e82923396da9b38925ad))

### [1.1.2](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.1...v1.1.2) (2021-06-29)


### Bug Fixes

* **deps:** google-gax v2.17.0 with mTLS ([#44](https://www.github.com/googleapis/nodejs-api-gateway/issues/44)) ([669d327](https://www.github.com/googleapis/nodejs-api-gateway/commit/669d32783d642d1bd6b2ee743200f2002878ab79))
* make request optional in all cases ([#40](https://www.github.com/googleapis/nodejs-api-gateway/issues/40)) ([9e00d1a](https://www.github.com/googleapis/nodejs-api-gateway/commit/9e00d1a4f8207880ceefa0717ddd68a1d61f45e6))

### [1.1.1](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.1.0...v1.1.1) (2021-05-25)


### Bug Fixes

* GoogleAdsError missing using generator version after 1.3.0 ([#33](https://www.github.com/googleapis/nodejs-api-gateway/issues/33)) ([d58a7f6](https://www.github.com/googleapis/nodejs-api-gateway/commit/d58a7f6ac39c050cacb82367588a536df5b94090))

## [1.1.0](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.0.1...v1.1.0) (2021-05-24)


### Features

* bump release level to GA ([#30](https://www.github.com/googleapis/nodejs-api-gateway/issues/30)) ([17d6485](https://www.github.com/googleapis/nodejs-api-gateway/commit/17d6485a5061f8c1f14e835d335b88e6bc427ff0))

### [1.0.1](https://www.github.com/googleapis/nodejs-api-gateway/compare/v1.0.0...v1.0.1) (2021-05-12)


### Bug Fixes

* **deps:** require google-gax v2.12.0 ([#23](https://www.github.com/googleapis/nodejs-api-gateway/issues/23)) ([9d7920e](https://www.github.com/googleapis/nodejs-api-gateway/commit/9d7920ea5e76253e1a042f29ff67dc5c36df0015))
* use require() to load JSON protos ([#26](https://www.github.com/googleapis/nodejs-api-gateway/issues/26)) ([e343ef1](https://www.github.com/googleapis/nodejs-api-gateway/commit/e343ef1bf9c8d34ec4f1a0281ed40ff4184c976f))

## 1.0.0 (2021-03-06)


### ⚠ BREAKING CHANGES

* initial generation of library (#1)

### Features

* initial generation of library ([#1](https://www.github.com/googleapis/nodejs-api-gateway/issues/1)) ([f2cd6e9](https://www.github.com/googleapis/nodejs-api-gateway/commit/f2cd6e9d92551ef6cdbc34a51ab9cf660e1de54d))
Loading

0 comments on commit 8e49741

Please sign in to comment.