newrelic 11.5.0 → 11.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NEWS.md +101 -30
- package/README.md +3 -3
- package/THIRD_PARTY_NOTICES.md +116 -116
- package/api.js +108 -3
- package/lib/adaptive-sampler.js +1 -1
- package/lib/agent.js +2 -0
- package/lib/collector/remote-method.js +1 -1
- package/lib/config/default.js +14 -0
- package/lib/config/hsm.js +3 -0
- package/lib/instrumentation/@elastic/elasticsearch.js +2 -2
- package/lib/instrumentation/@nestjs/core.js +1 -1
- package/lib/instrumentation/@prisma/client.js +1 -1
- package/lib/instrumentation/cassandra-driver.js +1 -1
- package/lib/instrumentation/fastify.js +1 -1
- package/lib/instrumentation/grpc-js/grpc.js +1 -1
- package/lib/instrumentation/mongodb.js +1 -1
- package/lib/instrumentation/openai.js +337 -0
- package/lib/instrumentation/pg.js +43 -16
- package/lib/instrumentation/pino/pino.js +1 -1
- package/lib/instrumentation/winston.js +6 -1
- package/lib/instrumentations.js +1 -0
- package/lib/llm-events/openai/chat-completion-message.js +20 -0
- package/lib/llm-events/openai/chat-completion-summary.js +20 -0
- package/lib/llm-events/openai/embedding.js +15 -0
- package/lib/llm-events/openai/error-message.js +30 -0
- package/lib/llm-events/openai/event.js +56 -0
- package/lib/llm-events/openai/feedback-message.js +20 -0
- package/lib/llm-events/openai/index.js +20 -0
- package/lib/llm-events/tracked-ids.js +27 -0
- package/lib/logger.js +1 -1
- package/lib/metrics/names.js +13 -1
- package/lib/metrics/normalizer/rule.js +1 -1
- package/lib/metrics/normalizer.js +2 -2
- package/lib/shim/conglomerate-shim.js +3 -2
- package/lib/shim/datastore-shim.js +3 -2
- package/lib/shim/index.js +11 -8
- package/lib/shim/message-shim.js +3 -2
- package/lib/shim/promise-shim.js +4 -3
- package/lib/shim/shim.js +24 -22
- package/lib/shim/transaction-shim.js +7 -5
- package/lib/shim/webframework-shim.js +9 -5
- package/lib/shimmer.js +75 -17
- package/lib/spans/streaming-span-event-aggregator.js +1 -1
- package/lib/symbols.js +8 -1
- package/lib/timer.js +3 -3
- package/lib/transaction/index.js +5 -0
- package/lib/util/flatten.js +1 -1
- package/lib/util/objects.js +1 -1
- package/lib/util/process-version.js +2 -2
- package/lib/util/properties.js +2 -2
- package/lib/util/urltils.js +4 -4
- package/package.json +4 -4
package/NEWS.md
CHANGED
|
@@ -1,28 +1,99 @@
|
|
|
1
|
-
### v11.
|
|
2
|
-
|
|
3
|
-
####
|
|
4
|
-
|
|
5
|
-
* **
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
####
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
####
|
|
18
|
-
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
### v11.6.1 (2023-12-07)
|
|
2
|
+
|
|
3
|
+
#### Bug fixes
|
|
4
|
+
|
|
5
|
+
* **deps:** Updated @newrelic/aws-sdk to 7.0.3 ([#1902](https://github.com/newrelic/node-newrelic/pull/1902)) ([bf22ae5](https://github.com/newrelic/node-newrelic/commit/bf22ae502ee74d5071dc5578cc77c38039e68778))
|
|
6
|
+
* Updated shimmer to handle instrumenting named and default exports of CommonJS modules in ESM ([#1894](https://github.com/newrelic/node-newrelic/pull/1894)) ([9f7979c](https://github.com/newrelic/node-newrelic/commit/9f7979cd41dcb3735e553cbd4837ad455836e3ff))
|
|
7
|
+
|
|
8
|
+
#### Code refactoring
|
|
9
|
+
|
|
10
|
+
* Fixed cognitive complexity violations of openai instrumentation by moving functions outside of the parent function scope ([#1895](https://github.com/newrelic/node-newrelic/pull/1895)) ([31dc717](https://github.com/newrelic/node-newrelic/commit/31dc71797c4798793b1bba8ca15733482ba3e7d6))
|
|
11
|
+
* Updated span names of openai actions to allow AI O11y team to locate relevant spans ([#1896](https://github.com/newrelic/node-newrelic/pull/1896)) ([b7a644d](https://github.com/newrelic/node-newrelic/commit/b7a644d1ef56bf88171fb74868ae78d24745dd19))
|
|
12
|
+
|
|
13
|
+
#### Miscellaneous chores
|
|
14
|
+
|
|
15
|
+
* Improve OpenAI mock server streams ([#1890](https://github.com/newrelic/node-newrelic/pull/1890)) ([d12bfe4](https://github.com/newrelic/node-newrelic/commit/d12bfe45f2c8d01277a1f8186844f0dd3598cbd7))
|
|
16
|
+
|
|
17
|
+
#### Tests
|
|
18
|
+
|
|
19
|
+
* Fix winston-esm versioned tests ([#1898](https://github.com/newrelic/node-newrelic/pull/1898)) ([6e02e57](https://github.com/newrelic/node-newrelic/commit/6e02e57a2b4ed8351e39e5fb8d47e2702bcafde0))
|
|
20
|
+
* pin undici versioned to <6.0.0 on Node 16 ([#1900](https://github.com/newrelic/node-newrelic/pull/1900)) ([9973b24](https://github.com/newrelic/node-newrelic/commit/9973b24067211f5fcc06adae79e02df8f599d735))
|
|
21
|
+
|
|
22
|
+
### v11.6.0 (2023-11-29)
|
|
23
|
+
|
|
24
|
+
#### Features
|
|
25
|
+
|
|
26
|
+
* Added instrumentation for `openai`.
|
|
27
|
+
* This feature is in limited preview and will be off by default.
|
|
28
|
+
* Aside from creating spans for chat completions and embeddings, it will create custom events that drive the [New Relic AI Monitoring](https://newrelic.com/platform/ai-monitoring).
|
|
29
|
+
* Added instrumentation for chat completion streams ([#1884](https://github.com/newrelic/node-newrelic/pull/1884)) ([404e317](https://github.com/newrelic/node-newrelic/commit/404e31737092fd7e6cd66b38d17507fb4375e079))
|
|
30
|
+
* Added instrumentation for openai chat completion creation ([#1862](https://github.com/newrelic/node-newrelic/pull/1862)) ([34dcd70](https://github.com/newrelic/node-newrelic/commit/34dcd7015b379982b90716a87763576cafe9cbd1))
|
|
31
|
+
* Added instrumentation for openai embedding creation ([#1872](https://github.com/newrelic/node-newrelic/pull/1872)) ([1c62321](https://github.com/newrelic/node-newrelic/commit/1c62321a4320a81a6a25aa064e3cdb42d6fbf851))
|
|
32
|
+
* Added `ai_monitoring.enabled` configuration.([#1873](https://github.com/newrelic/node-newrelic/pull/1873)) ([52bf9f3](https://github.com/newrelic/node-newrelic/commit/52bf9f362884f481a6dcc955be4fb1267458def8))
|
|
33
|
+
* Added `Nodejs/ML/OpenAI/<version>` metric every time a chat completion or embedding occurs.([#1886](https://github.com/newrelic/node-newrelic/pull/1886)) ([d11d100](https://github.com/newrelic/node-newrelic/commit/d11d100a37ad04201a9065363b1bc6b2d6fe36f2))
|
|
34
|
+
* Added `setLlmMetadata` API to allow users to specify metadata for LLM events ([#1863](https://github.com/newrelic/node-newrelic/pull/1863)) ([85979d7](https://github.com/newrelic/node-newrelic/commit/85979d752ee4b47db5e50c48953dcf62ea23a9fa))
|
|
35
|
+
* Ensure API errors are tracked ([#1880](https://github.com/newrelic/node-newrelic/pull/1880)) ([289c2a2](https://github.com/newrelic/node-newrelic/commit/289c2a295b157b18c5ccf7da2e68391e5fb3cba6))
|
|
36
|
+
* Added `getLlmMessageIds` and `recordLlmFeedbackEvent` API methods for tracking LLM feedback ([#1868](https://github.com/newrelic/node-newrelic/pull/1868)) ([1681e4b](https://github.com/newrelic/node-newrelic/commit/1681e4bbaa60264a0638790424d3e5370b1ee7bf))
|
|
37
|
+
* Added openai LLM events. ([#1857](https://github.com/newrelic/node-newrelic/pull/1857)) ([a7786f3](https://github.com/newrelic/node-newrelic/commit/a7786f3e033e33a7a1652cf55b7e3bece9b01378))
|
|
38
|
+
* Added pkgVersion to shim instances to facilitate semver checking without having to re-parse the package.json ([#1883](https://github.com/newrelic/node-newrelic/pull/1883)) ([4ddfd81](https://github.com/newrelic/node-newrelic/commit/4ddfd81a7c8c707d216c97a49a83ab96b20d59ba))
|
|
39
|
+
|
|
40
|
+
#### Bug fixes
|
|
41
|
+
|
|
42
|
+
* Updated isSimpleObject util to only check plain objects not arrays ([#1865](https://github.com/newrelic/node-newrelic/pull/1865)) ([8baa5bc](https://github.com/newrelic/node-newrelic/commit/8baa5bc7daa58d6db3c0c5d2687892fa189f54b5))
|
|
43
|
+
|
|
44
|
+
#### Security improvements
|
|
45
|
+
|
|
46
|
+
* Set log file permissions to read/write for Node process only ([#1854](https://github.com/newrelic/node-newrelic/pull/1854)) ([1b93ec9](https://github.com/newrelic/node-newrelic/commit/1b93ec942809505ae84aebba3b195b503a58f67d))
|
|
47
|
+
|
|
48
|
+
#### Code refactoring
|
|
49
|
+
|
|
50
|
+
* Improved custom event attributes checking when using api.recordCustomEvent ([#1870](https://github.com/newrelic/node-newrelic/pull/1870)) ([20e7f1d](https://github.com/newrelic/node-newrelic/commit/20e7f1ddf51c48f88339dcab496fe4fc49684bec))
|
|
51
|
+
|
|
52
|
+
#### Miscellaneous chores
|
|
53
|
+
|
|
54
|
+
* **dep:** Updated @newrelic/security-agent to v0.5.0 ([#1877](https://github.com/newrelic/node-newrelic/pull/1877)) ([2882236](https://github.com/newrelic/node-newrelic/commit/2882236b9f6d3a626bda0bbc0783ed829bdcdf9b))
|
|
55
|
+
* **dev-deps:** bump axios and @slack/bolt ([#1871](https://github.com/newrelic/node-newrelic/pull/1871)) ([2d00b02](https://github.com/newrelic/node-newrelic/commit/2d00b02c8f341a919c12ee62081cf77b4ccff30c))
|
|
56
|
+
* **docs:** Updated links in documentation to https ([#1888](https://github.com/newrelic/node-newrelic/pull/1888)) ([f1913ea](https://github.com/newrelic/node-newrelic/commit/f1913ea9aff12051167e11b2c3ca899a5e8324fc))
|
|
57
|
+
* Fixed bool -> boolean in jsdoc ([#1853](https://github.com/newrelic/node-newrelic/pull/1853)) ([3c00e55](https://github.com/newrelic/node-newrelic/commit/3c00e55291ef8a54e64339519700384c06cc5d71))
|
|
58
|
+
|
|
59
|
+
#### Tests
|
|
60
|
+
|
|
61
|
+
* Added streaming responses to mock OpenAI sever ([#1881](https://github.com/newrelic/node-newrelic/pull/1881)) ([86d83f2](https://github.com/newrelic/node-newrelic/commit/86d83f20028ec8a135241d4ad92032488ff5ad3a))
|
|
62
|
+
* Added unit tests for LLM API methods ([#1878](https://github.com/newrelic/node-newrelic/pull/1878)) ([3d8b987](https://github.com/newrelic/node-newrelic/commit/3d8b987408512e0643b4daed078a6fd7ebe363ca))
|
|
63
|
+
* Added a mock server for openai testing ([#1858](https://github.com/newrelic/node-newrelic/pull/1858)) ([3b1f5e6](https://github.com/newrelic/node-newrelic/commit/3b1f5e69950385a9f8482d33ebb783c8cf054e57))
|
|
64
|
+
* Fixed shadowed variable lint error in pino versioned tests ([#1859](https://github.com/newrelic/node-newrelic/pull/1859)) ([e1b21eb](https://github.com/newrelic/node-newrelic/commit/e1b21eb8ed87297b5e55ee2c86e33bc2594d8d8b))
|
|
65
|
+
* Updated openai versioned tests to properly work with the legacy context manager ([#1876](https://github.com/newrelic/node-newrelic/pull/1876)) ([a879700](https://github.com/newrelic/node-newrelic/commit/a87970019dab2fa2a393f2f10e8da2cf03338c87))
|
|
66
|
+
|
|
67
|
+
#### Continuous integration
|
|
68
|
+
|
|
69
|
+
* Made release note date always in pacific time ([#1855](https://github.com/newrelic/node-newrelic/pull/1855)) ([6d7dc69](https://github.com/newrelic/node-newrelic/commit/6d7dc69ccb71b2778da28598c50b65842ac4e3f7))
|
|
70
|
+
* Remove updating staging with newly release agent version ([#1887](https://github.com/newrelic/node-newrelic/pull/1887)) ([9d38faa](https://github.com/newrelic/node-newrelic/commit/9d38faa3de07d0dc194fddc7317908adfc51b627))
|
|
71
|
+
|
|
72
|
+
### v11.5.0 (2023-10-30)
|
|
73
|
+
|
|
74
|
+
#### Miscellaneous chores
|
|
75
|
+
|
|
76
|
+
* **dep:** Updated @newrelic/security-agent to v0.4.0 ([#1837](https://github.com/newrelic/node-newrelic/pull/1837)) ([fb06ac9](https://github.com/newrelic/node-newrelic/commit/fb06ac930269b784fcea6c2b8ea5e54158677ec4))
|
|
77
|
+
|
|
78
|
+
#### Continuous integration
|
|
79
|
+
|
|
80
|
+
* Disable fail-fast on nightly versioned test runs ([#1836](https://github.com/newrelic/node-newrelic/pull/1836)) ([fe1b4fc](https://github.com/newrelic/node-newrelic/commit/fe1b4fc4c00b2e4ea4c7b6fa5a8c1cd6e864145a))
|
|
81
|
+
|
|
82
|
+
### v11.4.0 (2023-10-25)
|
|
83
|
+
|
|
84
|
+
#### Features
|
|
85
|
+
|
|
86
|
+
* Added support for parsing container ids from docker versions using cgroups v2. ([#1830](https://github.com/newrelic/node-newrelic/pull/1830)) ([9892901](https://github.com/newrelic/node-newrelic/commit/98929013da3e62e2223f94531b8d6f59eecfc35b))
|
|
87
|
+
|
|
88
|
+
#### Miscellaneous chores
|
|
89
|
+
|
|
90
|
+
* [Snyk] Upgraded @grpc/grpc-js from 1.9.2 to 1.9.4. ([#1823](https://github.com/newrelic/node-newrelic/pull/1823)) ([81f9450](https://github.com/newrelic/node-newrelic/commit/81f945033376e4d33651d1e42afc30aea19dbdeb))
|
|
91
|
+
* **deps:** Updated aws-sdk, koa, superagent ([#1831](https://github.com/newrelic/node-newrelic/pull/1831)) ([8b4e963](https://github.com/newrelic/node-newrelic/commit/8b4e963e84d34e4727b9fda3aa630ef119aa3905))
|
|
92
|
+
|
|
93
|
+
#### Tests
|
|
94
|
+
|
|
95
|
+
* Increased timeout for integration tests to avoid random failures. ([#1827](https://github.com/newrelic/node-newrelic/pull/1827)) ([5202048](https://github.com/newrelic/node-newrelic/commit/52020485191868f479092ae4860019acf105b3eb))
|
|
96
|
+
|
|
26
97
|
### v11.3.0 (2023-10-23)
|
|
27
98
|
|
|
28
99
|
#### Features
|
|
@@ -3673,7 +3744,7 @@ Special thanks to Ryan Copley (@RyanCopley) for the contribution.
|
|
|
3673
3744
|
used for instrumenting web frameworks like `restify` or `express`.
|
|
3674
3745
|
|
|
3675
3746
|
Documentation and tutorials for the new API can be found on our GitHub
|
|
3676
|
-
documentation page:
|
|
3747
|
+
documentation page: https://newrelic.github.io/node-newrelic/
|
|
3677
3748
|
|
|
3678
3749
|
* Rewrote built-in instrumentation using the new `Shim` classes.
|
|
3679
3750
|
|
|
@@ -3762,7 +3833,7 @@ Special thanks to Ryan Copley (@RyanCopley) for the contribution.
|
|
|
3762
3833
|
meaning every instrumentation will create Middleware metrics for your server.
|
|
3763
3834
|
|
|
3764
3835
|
Tutorials on using the new instrumentation shim can be found on our API docs:
|
|
3765
|
-
|
|
3836
|
+
https://newrelic.github.io/node-newrelic/.
|
|
3766
3837
|
|
|
3767
3838
|
* Removed `express_segments` feature flag.
|
|
3768
3839
|
|
|
@@ -4589,7 +4660,7 @@ Special thanks to Ryan Copley (@RyanCopley) for the contribution.
|
|
|
4589
4660
|
|
|
4590
4661
|
* Advanced Analytics for APM Errors
|
|
4591
4662
|
|
|
4592
|
-
With this release, the agent reports [TransactionError events](https://docs.newrelic.com/docs/insights/new-relic-insights/decorating-events/error-event-default-attributes-insights). These new events power the beta feature [Advanced Analytics for APM Errors](https://docs.newrelic.com/docs/apm/applications-menu/events/view-apm-errors-error-traces) (apply [here](https://discuss.newrelic.com/t/join-the-apm-errors-beta-of-real-time-analytics/31123) to participate). The error events are also available today through [New Relic Insights](
|
|
4663
|
+
With this release, the agent reports [TransactionError events](https://docs.newrelic.com/docs/insights/new-relic-insights/decorating-events/error-event-default-attributes-insights). These new events power the beta feature [Advanced Analytics for APM Errors](https://docs.newrelic.com/docs/apm/applications-menu/events/view-apm-errors-error-traces) (apply [here](https://discuss.newrelic.com/t/join-the-apm-errors-beta-of-real-time-analytics/31123) to participate). The error events are also available today through [New Relic Insights](https://newrelic.com/insights).
|
|
4593
4664
|
|
|
4594
4665
|
Advanced Analytics for APM Errors lets you see all of your errors with
|
|
4595
4666
|
granular detail, filter and group by any attribute to analyze them, and take
|
|
@@ -5379,9 +5450,9 @@ Special thanks to Ryan Copley (@RyanCopley) for the contribution.
|
|
|
5379
5450
|
10,000 per minute. After that events are statistically sampled. Event data
|
|
5380
5451
|
includes transaction timing, transaction name, and any custom parameters. You
|
|
5381
5452
|
can read what is sent in more detail
|
|
5382
|
-
[here](
|
|
5453
|
+
[here](https://docs.newrelic.com/docs/insights/basic-attributes#transaction-defaults).
|
|
5383
5454
|
|
|
5384
|
-
You can read more about Insights [here](
|
|
5455
|
+
You can read more about Insights [here](https://newrelic.com/insights).
|
|
5385
5456
|
Documentation for configuring this feature can be found
|
|
5386
5457
|
[here](https://docs.newrelic.com/docs/nodejs/customizing-your-nodejs-config-file#tx_events).
|
|
5387
5458
|
|
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ These are the steps to work on core agent features, with more detail below:
|
|
|
158
158
|
$ git clone git@github.com:your-user-name/node-newrelic.git
|
|
159
159
|
$ cd node-newrelic
|
|
160
160
|
|
|
161
|
-
2. Install the project's
|
|
161
|
+
2. Install the project's dependencies:
|
|
162
162
|
|
|
163
163
|
$ npm install
|
|
164
164
|
|
|
@@ -184,7 +184,7 @@ Here are some resources for learning more about the agent:
|
|
|
184
184
|
|
|
185
185
|
- [New Relic's official Node.js agent documentation](https://docs.newrelic.com/docs/agents/nodejs-agent)
|
|
186
186
|
|
|
187
|
-
- [Developer docs](
|
|
187
|
+
- [Developer docs](https://newrelic.github.io/node-newrelic/)
|
|
188
188
|
|
|
189
189
|
- [Configuring the agent using `newrelic.js` or environment variables](https://docs.newrelic.com/docs/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration)
|
|
190
190
|
|
|
@@ -242,7 +242,7 @@ To [all contributors](https://github.com/newrelic/node-newrelic/graphs/contribut
|
|
|
242
242
|
|
|
243
243
|
## License
|
|
244
244
|
|
|
245
|
-
The Node.js agent is licensed under the [Apache 2.0](
|
|
245
|
+
The Node.js agent is licensed under the [Apache 2.0](https://apache.org/licenses/LICENSE-2.0.txt) License.
|
|
246
246
|
|
|
247
247
|
The Node.js agent also uses source code from third-party libraries. You can find full details on which libraries are used and the terms under which they are licensed in [the third-party notices document](https://github.com/newrelic/node-newrelic/blob/main/THIRD_PARTY_NOTICES.md).
|
|
248
248
|
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -510,7 +510,7 @@ This product includes source derived from [@grpc/proto-loader](https://github.co
|
|
|
510
510
|
|
|
511
511
|
### @newrelic/aws-sdk
|
|
512
512
|
|
|
513
|
-
This product includes source derived from [@newrelic/aws-sdk](https://github.com/newrelic/node-newrelic-aws-sdk) ([v7.0.
|
|
513
|
+
This product includes source derived from [@newrelic/aws-sdk](https://github.com/newrelic/node-newrelic-aws-sdk) ([v7.0.3](https://github.com/newrelic/node-newrelic-aws-sdk/tree/v7.0.3)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-aws-sdk/blob/v7.0.3/LICENSE):
|
|
514
514
|
|
|
515
515
|
```
|
|
516
516
|
Apache License
|
|
@@ -927,7 +927,7 @@ Apache License
|
|
|
927
927
|
|
|
928
928
|
### @newrelic/security-agent
|
|
929
929
|
|
|
930
|
-
This product includes source derived from [@newrelic/security-agent](https://github.com/newrelic/csec-node-agent) ([v0.
|
|
930
|
+
This product includes source derived from [@newrelic/security-agent](https://github.com/newrelic/csec-node-agent) ([v0.5.0](https://github.com/newrelic/csec-node-agent/tree/v0.5.0)), distributed under the [New Relic Pre-Release License](https://github.com/newrelic/csec-node-agent/blob/v0.5.0/LICENSE):
|
|
931
931
|
|
|
932
932
|
```
|
|
933
933
|
## New Relic Pre-Release Software Notice
|
|
@@ -2161,7 +2161,7 @@ THE SOFTWARE.
|
|
|
2161
2161
|
|
|
2162
2162
|
### @slack/bolt
|
|
2163
2163
|
|
|
2164
|
-
This product includes source derived from [@slack/bolt](https://github.com/slackapi/bolt) ([v3.
|
|
2164
|
+
This product includes source derived from [@slack/bolt](https://github.com/slackapi/bolt) ([v3.15.0](https://github.com/slackapi/bolt/tree/v3.15.0)), distributed under the [MIT License](https://github.com/slackapi/bolt/blob/v3.15.0/LICENSE):
|
|
2165
2165
|
|
|
2166
2166
|
```
|
|
2167
2167
|
The MIT License (MIT)
|
|
@@ -2302,27 +2302,27 @@ SOFTWARE.
|
|
|
2302
2302
|
This product includes source derived from [clean-jsdoc-theme](https://github.com/ankitskvmdam/clean-jsdoc-theme) ([v4.2.10](https://github.com/ankitskvmdam/clean-jsdoc-theme/tree/v4.2.10)), distributed under the [MIT License](https://github.com/ankitskvmdam/clean-jsdoc-theme/blob/v4.2.10/LICENSE):
|
|
2303
2303
|
|
|
2304
2304
|
```
|
|
2305
|
-
MIT License
|
|
2306
|
-
|
|
2307
|
-
Copyright (c) 2019-2022 Ankit Kumar (अंकित कुमार)
|
|
2308
|
-
|
|
2309
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2310
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2311
|
-
in the Software without restriction, including without limitation the rights
|
|
2312
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2313
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2314
|
-
furnished to do so, subject to the following conditions:
|
|
2315
|
-
|
|
2316
|
-
The above copyright notice and this permission notice shall be included in all
|
|
2317
|
-
copies or substantial portions of the Software.
|
|
2318
|
-
|
|
2319
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2320
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2321
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2322
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2323
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2324
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2325
|
-
SOFTWARE.
|
|
2305
|
+
MIT License
|
|
2306
|
+
|
|
2307
|
+
Copyright (c) 2019-2022 Ankit Kumar (अंकित कुमार)
|
|
2308
|
+
|
|
2309
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2310
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2311
|
+
in the Software without restriction, including without limitation the rights
|
|
2312
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2313
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2314
|
+
furnished to do so, subject to the following conditions:
|
|
2315
|
+
|
|
2316
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2317
|
+
copies or substantial portions of the Software.
|
|
2318
|
+
|
|
2319
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2320
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2321
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2322
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2323
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2324
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2325
|
+
SOFTWARE.
|
|
2326
2326
|
|
|
2327
2327
|
```
|
|
2328
2328
|
|
|
@@ -4375,13 +4375,13 @@ License: MIT
|
|
|
4375
4375
|
By: DY
|
|
4376
4376
|
Repository: <git@github.com:dfcreative/color-name.git>
|
|
4377
4377
|
|
|
4378
|
-
> The MIT License (MIT)
|
|
4379
|
-
> Copyright (c) 2015 Dmitry Ivanov
|
|
4380
|
-
>
|
|
4381
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4382
|
-
>
|
|
4383
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4384
|
-
>
|
|
4378
|
+
> The MIT License (MIT)
|
|
4379
|
+
> Copyright (c) 2015 Dmitry Ivanov
|
|
4380
|
+
>
|
|
4381
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4382
|
+
>
|
|
4383
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4384
|
+
>
|
|
4385
4385
|
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4386
4386
|
|
|
4387
4387
|
----------------------------------------
|
|
@@ -8615,17 +8615,17 @@ License: 0BSD
|
|
|
8615
8615
|
By: Microsoft Corp.
|
|
8616
8616
|
Repository: <https://github.com/Microsoft/tslib.git>
|
|
8617
8617
|
|
|
8618
|
-
> Copyright (c) Microsoft Corporation.
|
|
8619
|
-
>
|
|
8620
|
-
> Permission to use, copy, modify, and/or distribute this software for any
|
|
8621
|
-
> purpose with or without fee is hereby granted.
|
|
8622
|
-
>
|
|
8623
|
-
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8624
|
-
> REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
8625
|
-
> AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
8626
|
-
> INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
8627
|
-
> LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
8628
|
-
> OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
8618
|
+
> Copyright (c) Microsoft Corporation.
|
|
8619
|
+
>
|
|
8620
|
+
> Permission to use, copy, modify, and/or distribute this software for any
|
|
8621
|
+
> purpose with or without fee is hereby granted.
|
|
8622
|
+
>
|
|
8623
|
+
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8624
|
+
> REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
8625
|
+
> AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
8626
|
+
> INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
8627
|
+
> LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
8628
|
+
> OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
8629
8629
|
> PERFORMANCE OF THIS SOFTWARE.
|
|
8630
8630
|
|
|
8631
8631
|
----------------------------------------
|
|
@@ -8636,26 +8636,26 @@ License: MIT
|
|
|
8636
8636
|
By: Klaus Meinhardt
|
|
8637
8637
|
Repository: <https://github.com/ajafff/tsutils>
|
|
8638
8638
|
|
|
8639
|
-
> The MIT License (MIT)
|
|
8640
|
-
>
|
|
8641
|
-
> Copyright (c) 2017 Klaus Meinhardt
|
|
8642
|
-
>
|
|
8643
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8644
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
8645
|
-
> in the Software without restriction, including without limitation the rights
|
|
8646
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8647
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
8648
|
-
> furnished to do so, subject to the following conditions:
|
|
8649
|
-
>
|
|
8650
|
-
> The above copyright notice and this permission notice shall be included in all
|
|
8651
|
-
> copies or substantial portions of the Software.
|
|
8652
|
-
>
|
|
8653
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8654
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8655
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8656
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8657
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8658
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8639
|
+
> The MIT License (MIT)
|
|
8640
|
+
>
|
|
8641
|
+
> Copyright (c) 2017 Klaus Meinhardt
|
|
8642
|
+
>
|
|
8643
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8644
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
8645
|
+
> in the Software without restriction, including without limitation the rights
|
|
8646
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8647
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
8648
|
+
> furnished to do so, subject to the following conditions:
|
|
8649
|
+
>
|
|
8650
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
8651
|
+
> copies or substantial portions of the Software.
|
|
8652
|
+
>
|
|
8653
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8654
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8655
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8656
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8657
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8658
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8659
8659
|
> SOFTWARE.
|
|
8660
8660
|
|
|
8661
8661
|
----------------------------------------
|
|
@@ -8666,60 +8666,60 @@ License: Apache-2.0
|
|
|
8666
8666
|
By: Microsoft Corp.
|
|
8667
8667
|
Repository: <https://github.com/Microsoft/TypeScript.git>
|
|
8668
8668
|
|
|
8669
|
-
> Apache License
|
|
8670
|
-
>
|
|
8671
|
-
> Version 2.0, January 2004
|
|
8672
|
-
>
|
|
8673
|
-
> http://www.apache.org/licenses/
|
|
8674
|
-
>
|
|
8675
|
-
> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
8676
|
-
>
|
|
8677
|
-
> 1. Definitions.
|
|
8678
|
-
>
|
|
8679
|
-
> "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
8680
|
-
>
|
|
8681
|
-
> "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
8682
|
-
>
|
|
8683
|
-
> "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
8684
|
-
>
|
|
8685
|
-
> "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
8686
|
-
>
|
|
8687
|
-
> "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
8688
|
-
>
|
|
8689
|
-
> "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
8690
|
-
>
|
|
8691
|
-
> "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
8692
|
-
>
|
|
8693
|
-
> "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
8694
|
-
>
|
|
8695
|
-
> "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
8696
|
-
>
|
|
8697
|
-
> "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
8698
|
-
>
|
|
8699
|
-
> 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
8700
|
-
>
|
|
8701
|
-
> 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
8702
|
-
>
|
|
8703
|
-
> 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
8704
|
-
>
|
|
8705
|
-
> You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
8706
|
-
>
|
|
8707
|
-
> You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
8708
|
-
>
|
|
8709
|
-
> You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
8710
|
-
>
|
|
8711
|
-
> If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
8712
|
-
>
|
|
8713
|
-
> 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
8714
|
-
>
|
|
8715
|
-
> 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
8716
|
-
>
|
|
8717
|
-
> 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
8718
|
-
>
|
|
8719
|
-
> 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
8720
|
-
>
|
|
8721
|
-
> 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
8722
|
-
>
|
|
8669
|
+
> Apache License
|
|
8670
|
+
>
|
|
8671
|
+
> Version 2.0, January 2004
|
|
8672
|
+
>
|
|
8673
|
+
> http://www.apache.org/licenses/
|
|
8674
|
+
>
|
|
8675
|
+
> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
8676
|
+
>
|
|
8677
|
+
> 1. Definitions.
|
|
8678
|
+
>
|
|
8679
|
+
> "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
8680
|
+
>
|
|
8681
|
+
> "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
8682
|
+
>
|
|
8683
|
+
> "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
8684
|
+
>
|
|
8685
|
+
> "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
8686
|
+
>
|
|
8687
|
+
> "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
8688
|
+
>
|
|
8689
|
+
> "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
8690
|
+
>
|
|
8691
|
+
> "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
8692
|
+
>
|
|
8693
|
+
> "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
8694
|
+
>
|
|
8695
|
+
> "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
8696
|
+
>
|
|
8697
|
+
> "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
8698
|
+
>
|
|
8699
|
+
> 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
8700
|
+
>
|
|
8701
|
+
> 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
8702
|
+
>
|
|
8703
|
+
> 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
8704
|
+
>
|
|
8705
|
+
> You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
8706
|
+
>
|
|
8707
|
+
> You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
8708
|
+
>
|
|
8709
|
+
> You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
8710
|
+
>
|
|
8711
|
+
> If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
8712
|
+
>
|
|
8713
|
+
> 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
8714
|
+
>
|
|
8715
|
+
> 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
8716
|
+
>
|
|
8717
|
+
> 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
8718
|
+
>
|
|
8719
|
+
> 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
8720
|
+
>
|
|
8721
|
+
> 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
8722
|
+
>
|
|
8723
8723
|
> END OF TERMS AND CONDITIONS
|
|
8724
8724
|
|
|
8725
8725
|
----------------------------------------
|