Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ded8173
feat: EOD commit, encyption of license key - WIP, need to fix tests
nvyasadobe Apr 17, 2025
c5700bc
feat: fixing failing test
nvyasadobe Apr 21, 2025
8e0ad60
feat: sync branch from spic
nvyasadobe Apr 22, 2025
4baa330
feat: bump alpha version
nvyasadobe Apr 22, 2025
1eb5d39
feat: bumped up beta version
nvyasadobe Apr 24, 2025
3b871b5
feat: modiefied code to address review comment and address for splunk…
nvyasadobe Apr 25, 2025
6de9fd3
feat: very minor correction
nvyasadobe Apr 25, 2025
d3f99b1
feat(metadata): initialize dotenv and include API mesh environment va…
kmaschi Apr 25, 2025
3dd8ea8
Release/5.3.1 (#248) (#249)
kmaschi Apr 28, 2025
7d674da
refactor: removed Newrelic license 40 char restriction
AjazSumaiya Apr 29, 2025
791b99e
Merge branch 'develop' into CEXT-4511
AjazSumaiya Apr 29, 2025
d129e50
bump up package version
AjazSumaiya Apr 29, 2025
bc2ef06
fix: updated keys to enum values
AjazSumaiya Apr 29, 2025
4fdc848
Update package version
AjazSumaiya Apr 30, 2025
6f8b062
Update package version
AjazSumaiya Apr 30, 2025
e2c6cfe
Apply suggestions from code review
AjazSumaiya Apr 30, 2025
355ed70
fix: linting
AjazSumaiya Apr 30, 2025
0dfdce9
Merge pull request #250 from adobe/cext-4578
AjazSumaiya May 5, 2025
e379a25
Merge branch 'develop' into CEXT-4511
AjazSumaiya May 5, 2025
637fd8b
Merge pull request #246 from adobe/CEXT-4511
AjazSumaiya May 6, 2025
1237f9e
fix(bigint-serialization): - Fixed OpenAPI source BigInt scalar seria…
May 8, 2025
e186ed9
Merge branch 'main' into develop
May 12, 2025
0caac68
Merge pull request #254 from adobe/chore/resolve-conflict-main-develop
kmaschi May 12, 2025
bc61b33
Merge pull request #252 from adobe/bugfix/CEXT-4620-openapi-bigint-se…
kmaschi May 13, 2025
09982cb
Update package.json
AjazSumaiya May 20, 2025
4285927
Merge pull request #257 from adobe/beta/5.3.3-beta.1
AjazSumaiya May 20, 2025
40bb7ba
Update package version
AjazSumaiya May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/aio-cli-plugin-api-mesh",
"version": "5.3.2",
"version": "5.3.3",
"description": "Adobe I/O CLI plugin to develop and manage API mesh sources",
"keywords": [
"oclif-plugin"
Expand Down Expand Up @@ -89,6 +89,7 @@
"graphql": "^16.6.0",
"inquirer": "^8.2.4",
"jsmin": "1.0.1",
"json-bigint-patch": "^0.0.8",
"json-interpolate": "^1.0.3",
"lru-cache": "^7.14.1",
"node-clipboardy": "^1.0.3",
Expand Down Expand Up @@ -138,7 +139,9 @@
},
"oclif": {
"topics": {
"api-mesh": { "description": "Create, run, test, and deploy API Mesh"}
"api-mesh": {
"description": "Create, run, test, and deploy API Mesh"
}
},
"commands": "./src/commands",
"bin": "aio",
Expand Down
2 changes: 2 additions & 0 deletions src/worker.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'json-bigint-patch';

import { ServedTier, addServedHeader } from './served';
import { buildServer } from './server';
import { bindedlogger as logger } from './utils/logger';
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7597,7 +7597,7 @@ jsmin@1.0.1:
resolved "https://registry.yarnpkg.com/jsmin/-/jsmin-1.0.1.tgz#e7bd0dcd6496c3bf4863235bf461a3d98aa3b98c"
integrity sha512-OPuL5X/bFKgVdMvEIX3hnpx3jbVpFCrEM8pKPXjFkZUqg521r41ijdyTz7vACOhW6o1neVlcLyd+wkbK5fNHRg==

json-bigint-patch@0.0.8:
json-bigint-patch@0.0.8, json-bigint-patch@^0.0.8:
version "0.0.8"
resolved "https://registry.yarnpkg.com/json-bigint-patch/-/json-bigint-patch-0.0.8.tgz#45d954da1f21c6d4f3ae9ef64c9ac227cd0ab0fe"
integrity sha512-xa0LTQsyaq8awYyZyuUsporWisZFiyqzxGW8CKM3t7oouf0GFAKYJnqAm6e9NLNBQOCtOLvy614DEiRX/rPbnA==
Expand Down
Loading