Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: webapi query on bylocation shows 24 hours worth of data even when smaller range requested #570

Closed
1 task done
trent-s opened this issue Oct 1, 2024 · 3 comments · Fixed by #572
Closed
1 task done
Labels
bug Something isn't working v1.7
Milestone

Comments

@trent-s
Copy link
Contributor

trent-s commented Oct 1, 2024

Contact Details

trent@jp.ibm.com

What happened?

Thank you for your ongoing efforts for this very beneficial project.

After installing the Carbon Aware SDK from the Helm chart on an OpenShift cluster, I ran into behavior that seems different from what is described in the documentation. I have a workaround for this, so it is not an urgent problem for me, but thought that I would report it the event that it could be useful.

Following the web API descriptions here: https://github.com/Green-Software-Foundation/carbon-aware-sdk/blob/dev/casdk-docs/docs/tutorial-basics/carbon-aware-webapi.md

Expecting to get 2 hours worth of entries, I ran the following command on 10/01 at about 4:30 UTC, I get about 24 hours hours worth of data.

$ curl -s  "http://webapi-green-software-foundation.hostname.com/emissions/bylocation?location=japanwest&time=2024-10-01T01%3A00Z&toTime=2024-10-01T02%3A00Z" | jq
[
  {
    "location": "japanwest",
    "time": "2024-09-30T05:00:00+00:00",
    "rating": 337,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T06:00:00+00:00",
    "rating": 355,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T07:00:00+00:00",
    "rating": 384,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T08:00:00+00:00",
    "rating": 396,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T09:00:00+00:00",
    "rating": 396,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T10:00:00+00:00",
    "rating": 391,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T11:00:00+00:00",
    "rating": 385,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T12:00:00+00:00",
    "rating": 374,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T13:00:00+00:00",
    "rating": 363,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T14:00:00+00:00",
    "rating": 356,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T15:00:00+00:00",
    "rating": 347,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T16:00:00+00:00",
    "rating": 334,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T17:00:00+00:00",
    "rating": 328,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T18:00:00+00:00",
    "rating": 333,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T19:00:00+00:00",
    "rating": 338,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T20:00:00+00:00",
    "rating": 334,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T21:00:00+00:00",
    "rating": 330,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T22:00:00+00:00",
    "rating": 305,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-09-30T23:00:00+00:00",
    "rating": 290,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T00:00:00+00:00",
    "rating": 281,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T01:00:00+00:00",
    "rating": 271,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T02:00:00+00:00",
    "rating": 269,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T03:00:00+00:00",
    "rating": 312,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T04:00:00+00:00",
    "rating": 312,
    "duration": "01:00:00"
  }
]

I was expecting to see a more limited time range, such as perhaps:

[
  {
    "location": "japanwest",
    "time": "2024-10-01T00:00:00+00:00",
    "rating": 281,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T01:00:00+00:00",
    "rating": 271,
    "duration": "01:00:00"
  },
  {
    "location": "japanwest",
    "time": "2024-10-01T02:00:00+00:00",
    "rating": 269,
    "duration": "01:00:00"
  },
]

client

WebAPI (Default)

Relevant log output

info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
      Request starting HTTP/1.1 GET http://webapi-green-software-foundation.apps.hostname.com/emissions/bylocation?location=japanwest&time=2024-10-01T01%3A00Z&toTime=2024-10-01T02%3A00Z - - -
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
      Executing endpoint 'CarbonAware.WebApi.Controllers.CarbonAwareController.GetEmissionsDataForLocationByTime (CarbonAware.WebApi)'
info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[102]
      Route matched with {action = "GetEmissionsDataForLocationByTime", controller = "CarbonAware"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetEmissionsDataForLocationByTime(System.String, System.Nullable`1[System.DateTimeOffset], System.Nullable`1[System.DateTimeOffset]) on controller CarbonAware.WebApi.Controllers.CarbonAwareController (CarbonAware.WebApi).
info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[101]
      Executing action method CarbonAware.WebApi.Controllers.CarbonAwareController.GetEmissionsDataForLocationByTime (CarbonAware.WebApi) - Validation state: Valid
info: CarbonAware.LocationSources.LocationSource[0]
      1 files discovered
info: CarbonAware.LocationSources.LocationSource[0]
      Reading Location data source from /app/location-sources/json/azure-regions.json
info: System.Net.Http.HttpClient.ElectricityMapsClient.LogicalHandler[100]
      Start processing HTTP request GET https://api.electricitymap.org/v3/carbon-intensity/history?lat=34.6939&lon=135.5022
info: System.Net.Http.HttpClient.ElectricityMapsClient.ClientHandler[100]
      Sending HTTP request GET https://api.electricitymap.org/v3/carbon-intensity/history?lat=34.6939&lon=135.5022
Activity.TraceId:            292a7fdddde524ebd40e3da26aefaebc
Activity.SpanId:             5a1f3d0a0bfa8e95
Activity.TraceFlags:         Recorded
Activity.ParentSpanId:       faa0ef7cf762fbb1
Activity.ActivitySourceName: System.Net.Http
Activity.DisplayName:        HTTP GET
Activity.Kind:               Client
Activity.StartTime:          2024-10-01T04:49:12.5073855Z
Activity.Duration:           00:00:00.5997288
Activity.Tags:
    http.scheme: https
    http.method: GET
    net.peer.name: api.electricitymap.org
    http.url: https://api.electricitymap.org/v3/carbon-intensity/history?lat=34.6939&lon=135.5022
    http.flavor: 1.1
    http.status_code: 200
Resource associated with Activity:
    service.name: CarbonAware.WebAPI
    service.version: 1.0.0
    service.instance.id: ca9e91e7-dede-4d73-9f10-b19f455a2c8f
    telemetry.sdk.name: opentelemetry
    telemetry.sdk.language: dotnet
    telemetry.sdk.version: 1.6.0

info: System.Net.Http.HttpClient.ElectricityMapsClient.ClientHandler[101]
      Received HTTP response headers after 605.309ms - 200
info: System.Net.Http.HttpClient.ElectricityMapsClient.LogicalHandler[101]
      End processing HTTP request after 614.2769ms - 200
info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[103]
      Executed action method CarbonAware.WebApi.Controllers.CarbonAwareController.GetEmissionsDataForLocationByTime (CarbonAware.WebApi), returned result Microsoft.AspNetCore.Mvc.OkObjectResult in 683.3091ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
      Executing OkObjectResult, writing value of type 'System.Linq.Enumerable+SelectListIterator`2[[CarbonAware.Model.EmissionsData, CarbonAware, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null],[GSF.CarbonAware.Models.EmissionsData, GSF.CarbonAware, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[105]
      Executed action CarbonAware.WebApi.Controllers.CarbonAwareController.GetEmissionsDataForLocationByTime (CarbonAware.WebApi) in 742.3564ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
      Executed endpoint 'CarbonAware.WebApi.Controllers.CarbonAwareController.GetEmissionsDataForLocationByTime (CarbonAware.WebApi)'
info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
      Request finished HTTP/1.1 GET http://webapi-green-software-foundation.apps.hostname.com/emissions/bylocation?location=japanwest&time=2024-10-01T01%3A00Z&toTime=2024-10-01T02%3A00Z - 200 - application/json;+charset=utf-8 779.0769ms
Activity.TraceId:            292a7fdddde524ebd40e3da26aefaebc
Activity.SpanId:             faa0ef7cf762fbb1
Activity.TraceFlags:         Recorded
Activity.ActivitySourceName: Microsoft.AspNetCore
Activity.DisplayName:        emissions/bylocation
Activity.Kind:               Server
Activity.StartTime:          2024-10-01T04:49:12.3782214Z
Activity.Duration:           00:00:00.7792018
Activity.Tags:
    net.host.name: webapi-green-software-foundation.apps.hostname.com
    http.method: GET
    http.scheme: http
    http.target: /emissions/bylocation
    http.url: http://webapi-green-software-foundation.apps.hostname.com/emissions/bylocation?location=japanwest&time=2024-10-01T01%3A00Z&toTime=2024-10-01T02%3A00Z
    http.flavor: 1.1
    http.user_agent: curl/7.61.1
    http.route: emissions/bylocation
    http.status_code: 200
Resource associated with Activity:
    service.name: CarbonAware.WebAPI
    service.version: 1.0.0
    service.instance.id: ca9e91e7-dede-4d73-9f10-b19f455a2c8f
    telemetry.sdk.name: opentelemetry
    telemetry.sdk.language: dotnet
    telemetry.sdk.version: 1.6.0

Code of Conduct

  • I agree to follow this project's Code of Conduct
@trent-s trent-s added the bug Something isn't working label Oct 1, 2024
@trent-s trent-s changed the title [Bug]: [Bug]: webapi query on bylocation shows 24 hours worth of data even when smaller range requested Oct 1, 2024
@YaSuenag
Copy link
Member

YaSuenag commented Oct 1, 2024

@trent-s
Thanks for your report! Did you configure Electricity Maps as a data source, right?

@vaughanknight @danuw @tiwatsuka
I think this is similar with my past report for EMFree data source in #389 . We need to filter with time range in ElectricityMapsDataSouce::HistoryCarbonIntensityToEmissionsData.

@trent-s
Copy link
Contributor Author

trent-s commented Oct 1, 2024

Thank you @YaSuenag for your kind consideration. Yes, I am using "ElectricityMaps" as the "EmissionsDataSource" for this query.

YaSuenag added a commit to YaSuenag/carbon-aware-sdk that referenced this issue Oct 2, 2024
Issue Green-Software-Foundation#570

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
@danuw danuw added the v1.7 label Oct 8, 2024
@danuw danuw added this to the Release 1.7 milestone Oct 8, 2024
vaughanknight pushed a commit that referenced this issue Oct 15, 2024
Issue #570

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
@trent-s
Copy link
Contributor Author

trent-s commented Oct 15, 2024

Thank you very much for your excellent work on this!

vaughanknight added a commit that referenced this issue Nov 12, 2024
* Further updates to clean up merge duplication

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* blog posts - unpublished / placeholder posts currently sit in blog_preview sub folder

* annoucementBar #416 to include disclaimer as well as CarbonHack link

* CarbonHack24 Update to README.md

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* bold disclaimer / banner message

* ensuring samples get deployed as part of the docs too

* working directory correction for moving samples in docs deployment workflow

* normalisation of the workflow name to others

* latest docusaurus updates to check the latest workflow

* docusaurus broken links build warning + move all samples folder

* Update CONTRIBUTING.md

Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>

* Update CONTRIBUTING.md

Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>

* Update CHANGELOG.md

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CHANGELOG.md with first draft release notes for 1.2

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CHANGELOG.md

Updating release date

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update WattTime registration link

Signed-off-by: Phil Huang <phil.huang@microsoft.com>

* Update containerization.md

Small typo ("arbon" => "Carbon")

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* Create adopters.md

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Add Vestas.

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Remove a hyphen for consistent appearance

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Update the description

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Update the description to mention pull requests

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Create enablement.md

table of content


Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>

* draft of enablement.md

Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>

* Update carbon-aware-cli.md

Fixes bugs with Linux scripts

Signed-off-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>

* Initial codespace branch and associated docs

* updated vs code extensions

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 44578f4
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 3ae9a00

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update README.md

* More updates

More updates

* Added plcaeholder images

Added plcaeholder images

* Updated images

Updates all images and compressed some images, cleaned up naming for the avif file.

* More updates

New images, and some updates to the copy after stepping away from it for a bit.

* Updates with theory of change details

Updates with theory of change details

* Minor updates, included adopters page link

Minor updates, included adopters page link

* Update README.md

* More updates

More updates

* Added plcaeholder images

Added plcaeholder images

* Updated images

Updates all images and compressed some images, cleaned up naming for the avif file.

* More updates

New images, and some updates to the copy after stepping away from it for a bit.

* Updates with theory of change details

Updates with theory of change details

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update tests.md

our current coverage is 74.6% so adjusting until we can improve

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update README.md

linking to the new banner

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* adding the banner image

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Create SECURITY.md

* merge and bug fixes

* Qucikstart fix and overview link adjustment following move

* Up Helm chart version to 1.1.0

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* CarbonHack24 Update to README.md

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Create tests.md

test coverage  #413

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update tests.md

our current coverage is 74.6% so adjusting until we can improve

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* blog updates

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 356ce09
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 2c342a8
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 04be596
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c437b5b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 46958d9
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 21a0e16
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 8bbe72e
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 62e2a95
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 5183d73
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 93267d6
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ee8841c
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 2d7b4dd
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 68bbb2f
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 735a515
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: a31b391
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: b7483b6
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4cece7b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 83f3073
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4799d7a
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: d2d823d
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c3d832c
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ec96b52
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 9567c45
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4527514
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ff729b0
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 1bdd2ad
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 012ca25
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c7d4563
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: a51782f
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: cc15035
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 3c62bd4
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 590f262

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

DCO Remediation Commit for danuw <danuw@volto.io>

I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: fbc602c
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: ac1432f
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 8166cf2
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 48f117e

Signed-off-by: danuw <danuw@volto.io>

* DCO Remediation Commit for danuw <danuw@volto.io>

I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: fbc602c
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: ac1432f
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 8166cf2
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 48f117e

Signed-off-by: danuw <danuw@volto.io>
Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update baseURL docusaurus config

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Revert changes 

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update domain from docusaurus

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Create CNAME file

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* clean up for title

* Option to show the samples in the local docs using `nm run start-with-samples` . Will need deleting manually for now

* seo for the doc site

* docs fixes

* layout update for blogs

* Update SECURITY.md

Updated with @Willmish recommendations for the document which were lost in a comment 👍

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 2dc06f8

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Ensure pictures on the blog are correctly sized

* updated links to videos

* Update README.md

* Change "Withing" to "Within"

I'm genuinely unsure on what word this should be, possible "Using", but I'm sure it's not "Withing".

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* Update README.md

Two other typos
- programatically -> programmatically
- soruces -> sources

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* first draft of release 1.3 changelog

* Update README.md with updated link to overview

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Fix overview URL in README

Signed-off-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>

* Update README.md

Update FAQ link for Carbon Hack

Signed-off-by: Russell Trow <russell@greensoftware.foundation>

* Updates to the contribution documentation

Updates to the contribution documentation

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: f267eba

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Readme as project overview in docs, disclaimer update for graduated project, and docs deploying pipeline updates

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: bd7ad15
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 693beed
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 1d78756
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: a7bc0fc
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 571e217
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: a07870f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0314c47
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3af6f73
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 932a665
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 9f09493
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 02ea4d6
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 183a676
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0481081

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Migrate to .NET 8

#404
#420
#421
#422

Co-authored-by: Takuya Iwatsuka <takuya.iwatsuka@gmail.com>
Signed-off-by: Yasumasa Suenaga <suenaga@nttdata.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typo

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typo

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* Update agenda-template.md

Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>

* Resolve NU1605 relating to System.IO.FileSystem.Primitives

https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1605#example-3

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Use RID rather than QEMU to build WebAPI container image

https://devblogs.microsoft.com/dotnet/improving-multiplatform-container-support/

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Separate OpenAPI document generation from build-env stage

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Create case-study-template.md

Creating the case study template.

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update case-study-template.md

Minor updates.

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Up Helm chart version to 1.2.0 (#500)

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* First draft of the ADR for watt time v3 changes

First draft of the ADR for watt time v3 changes.  Looking at path mappings and parameters.  Still plenty to work on.

* Initial changelog 1.4.0 (#511)

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* overview.md: Fixed three broken links Signed-off-by: joecus1 <joecusano57@gmail.com>

* DCO Remediation Commit for joecus1 <joecusano57@gmail.com>

I, joecus1 <joecusano57@gmail.com>, hereby add my Signed-off-by to this commit: c6b2c14

Signed-off-by: joecus1 <joecusano57@gmail.com>

* Update enablement.md

update older .Net reference 

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* (fix) broken links - Update enablement.md

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Moved ADR to correct location

Moved ADR to correct location

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update SECURITY.md (.NET 8 upgrade)

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Update enablement.md 

2 missed references...

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Update docusaurus.config.js

removed banner's mention of Hack

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* documentation-change.yml: Created issue template for documentation changes.

Signed-off-by: joecus1 <joecusano57@gmail.com>

* Update 0016-watt-time-v3.md

updated notes for BA

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* First draft of the ADR for watt time v3 changes

First draft of the ADR for watt time v3 changes.  Looking at path mappings and parameters.  Still plenty to work on.

* Moved ADR to correct location

Moved ADR to correct location

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update 0016-watt-time-v3.md

updated notes for BA

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Add blog article for .NET 8 upgrade

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update article

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Create 0016-watt-time-v3.md

More updates.

* Added base url to the configuration with validation

Added AuthenticationBaseUrl to the configuration and updated Authentication to leverage the v3 authenication path - note the API is not updated and will require further updates.

* Updated start and end configuration

Updated start and end configuration to new values

* Balancing Authority Parameter Renamed to Region

Balancing Authority Renamed to Region.  Does not include updates to API, just the Query String parameter.

* Add example for 'podman play kube' (#340)

* Add example for 'podman play kube'

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update Swagger JSON URL

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

---------

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Updates for historical data API

Updates for historical data API

* Removed accidental file

Removed accidental file

* Lots of test updates

Lots of test updates, need to do some fixes.

* Historical forecasts updated

Historical forecasts updated

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b9490e4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b991bac
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e4f1494
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b443e9e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: ab1205d
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 7c115fa
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e047c9a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: aa81382
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 8640c8c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 880fcf7

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Many tests reworked, a few to go

Many tests reworked, a few to go.  Consolidated a lot of the hand crafted json objects into objects that get serialized as the purist JsonObject format was prone to errors - in some cases tests were passing even with bad typing.

* Further test updates

Further test updates

* Further updates, just 1 test left to remediate

Further updates, just 1 test left to remediate

* Updated to add authentication client to the service builder for the tests

Updated to add authentication client to the service builder for the tests.  All tests now passing.

* Renaming of Balancing Authority to Region

Renaming of Balancing Authority to Region through all code and comments.  This will also need updating through documentation.

* Fixed spelling error in latitude

Fixed spelling error in latitude

* Fixed a bug where location sources were loading twice

Fixed a bug where location sources were loading twice.  Added a semaphore to stop any threading issues, and also stopped it loading twice in the service configuration.

* Fixed typo for method name

Fixed typo for method name

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e324f36
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: be6663c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 39e45a6
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fbfcac1
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 9aabd27
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 8127a92
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 4ff0151
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d93320f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 91799f7
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 4665813

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Updates based on code review for WattTime Tests

Updates based on code review for WattTime Tests.  Mostly cleanup of constants which were removed elsewhere in tests.

* Cleaned up a lot of the string literals

Cleaned up a lot of the string literals.  They were causing too much fragility in the code base, and made it complex when updating the WattTime API.

* More cleanup of some of the strings

More cleanup of some of the strings.  Creating consistency for using the test data on parameters and not just reponses also.

* Updates to documentation and changelog

Updates to documentation and changelog

* Fix

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update azure-regions.json (#536)

Latest azure-regions.json list 
Adds italynorth, polandcentral, spaincentral, mexicocentral, israelcentral, qatarcentral, brazilus, eastusstg
(Also seems to remove trailing zeros in some existing coordinates)

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Fix comments

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md for v1.5

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CHANGELOG.md

layout update

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Add env directive to values.yaml and troubleshooting guide to avoid inotify limitation on Linux

Closes #528

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add env directive into explanation of values.yaml for Helm chart

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* typo: fix incorrect usage of it's

Signed-off-by: Scott Trent <trent@jp.ibm.com>

* Docs/blog update for releases 1.3 to1.5 and fix (#551)

* Catching up on release blog posts for 1.3, 1.4 and 1.5

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* fixed docusaurus (strict) compilation error

* release dates updated

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* added tag

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* tag update to post and image layout fix

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* updated slug

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* formatting fix

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 53e120c

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* formatting

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 0f6cada

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

---------

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Add a configuration for disabling to cache JSON emission data

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md for 1.6

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Update 1-pr.yaml

Updating from deprecated version of upload and download artifact to v4 as mentioned in https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Update dev_carbon-aware-api.yml

updating upload and download artifact@v1or 2 actions to v4

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* fixes and release notes post for 1.6

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* updated blog post

* docs workflow's node version updated to latest LTS -> 22

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: d3b054b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: f412591

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* blogs with truncate

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* node version update back to 20

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* adding yarn.lock

* pipelines fixes

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CarbonAwareController.cs (minor typos)

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: eae5bd1

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Consider null value in carbonIntensity on EM (#575)

Issue #571

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* EM datasource didn't filter out-of-range emission data (#572)

Issue #570

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md

updating changelog for 1.6.1

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Add configuration for tracing log (#531)

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Updating 1.6.1 to include #531 straight away

* DCO Remediation Commit for Dan Benitah <8134789+danuw@users.noreply.github.com>

I, Dan Benitah <8134789+danuw@users.noreply.github.com>, hereby add my Signed-off-by to this commit: f35bb59

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* fix

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

---------

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Dan Benitah <bdanuw@gmail.com>
Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>
Signed-off-by: Phil Huang <phil.huang@microsoft.com>
Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>
Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>
Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>
Signed-off-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>
Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
Signed-off-by: danuw <danuw@volto.io>
Signed-off-by: Osama Jandali <osamajandaly@gmail.com>
Signed-off-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>
Signed-off-by: Russell Trow <russell@greensoftware.foundation>
Signed-off-by: Yasumasa Suenaga <suenaga@nttdata.com>
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>
Signed-off-by: joecus1 <joecusano57@gmail.com>
Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>
Signed-off-by: Scott Trent <trent@jp.ibm.com>
Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>
Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Co-authored-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>
Co-authored-by: Phil Huang <phil.huang@microsoft.com>
Co-authored-by: Richard Jackson <jacksorjacksor@pm.me>
Co-authored-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>
Co-authored-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>
Co-authored-by: rinikeda <rintaro.ikeda.sw@gmail.com>
Co-authored-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>
Co-authored-by: Szymon Duchniewicz <szymon.duchniewicz@avanade.com>
Co-authored-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
Co-authored-by: Osama Jandali <osamajandaly@gmail.com>
Co-authored-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>
Co-authored-by: Russell Trow <russell@greensoftware.foundation>
Co-authored-by: Takuya Iwatsuka <takuya.iwatsuka@gmail.com>
Co-authored-by: omahs <73983677+omahs@users.noreply.github.com>
Co-authored-by: joecus1 <joecusano57@gmail.com>
Co-authored-by: nttDamien <125525959+nttDamien@users.noreply.github.com>
Co-authored-by: Yasumasa Suenaga <yasuenag@gmail.com>
Co-authored-by: Scott Trent <trent@jp.ibm.com>
Co-authored-by: Scott Trent <32449003+trent-s@users.noreply.github.com>
@danuw danuw mentioned this issue Jan 7, 2025
2 tasks
vaughanknight added a commit that referenced this issue Jan 21, 2025
* Update the description to mention pull requests

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>

* Create enablement.md

table of content


Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>

* draft of enablement.md

Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>

* Update carbon-aware-cli.md

Fixes bugs with Linux scripts

Signed-off-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>

* Initial codespace branch and associated docs

* updated vs code extensions

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 44578f4
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 3ae9a00

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update README.md

* More updates

More updates

* Added plcaeholder images

Added plcaeholder images

* Updated images

Updates all images and compressed some images, cleaned up naming for the avif file.

* More updates

New images, and some updates to the copy after stepping away from it for a bit.

* Updates with theory of change details

Updates with theory of change details

* Minor updates, included adopters page link

Minor updates, included adopters page link

* Update README.md

* More updates

More updates

* Added plcaeholder images

Added plcaeholder images

* Updated images

Updates all images and compressed some images, cleaned up naming for the avif file.

* More updates

New images, and some updates to the copy after stepping away from it for a bit.

* Updates with theory of change details

Updates with theory of change details

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update tests.md

our current coverage is 74.6% so adjusting until we can improve

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update README.md

linking to the new banner

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* adding the banner image

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Create SECURITY.md

* merge and bug fixes

* Qucikstart fix and overview link adjustment following move

* Up Helm chart version to 1.1.0

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* CarbonHack24 Update to README.md

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Create tests.md

test coverage  #413

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update tests.md

our current coverage is 74.6% so adjusting until we can improve

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: da70ec4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6be74ff
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fe5cef9
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b4a7973
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d0a954a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 996d084
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 648a1ce
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 581267c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3c90f55
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 6c1514e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0592710
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: c59057c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0cec58f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 028a179

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* blog updates

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 356ce09
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 2c342a8
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 04be596
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c437b5b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 46958d9
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 21a0e16
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 8bbe72e
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 62e2a95
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 5183d73
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 93267d6
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ee8841c
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 2d7b4dd
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 68bbb2f
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 735a515
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: a31b391
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: b7483b6
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4cece7b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 83f3073
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4799d7a
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: d2d823d
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c3d832c
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ec96b52
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 9567c45
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 4527514
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: ff729b0
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 1bdd2ad
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 012ca25
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: c7d4563
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: a51782f
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: cc15035
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 3c62bd4
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 590f262

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

DCO Remediation Commit for danuw <danuw@volto.io>

I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: fbc602c
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: ac1432f
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 8166cf2
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 48f117e

Signed-off-by: danuw <danuw@volto.io>

* DCO Remediation Commit for danuw <danuw@volto.io>

I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: fbc602c
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: ac1432f
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 8166cf2
I, danuw <danuw@volto.io>, hereby add my Signed-off-by to this commit: 48f117e

Signed-off-by: danuw <danuw@volto.io>
Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update baseURL docusaurus config

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Revert changes 

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update domain from docusaurus

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* Create CNAME file

Signed-off-by: Osama Jandali <osamajandaly@gmail.com>

* clean up for title

* Option to show the samples in the local docs using `nm run start-with-samples` . Will need deleting manually for now

* seo for the doc site

* docs fixes

* layout update for blogs

* Update SECURITY.md

Updated with @Willmish recommendations for the document which were lost in a comment 👍

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 2dc06f8

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Ensure pictures on the blog are correctly sized

* updated links to videos

* Update README.md

* Change "Withing" to "Within"

I'm genuinely unsure on what word this should be, possible "Using", but I'm sure it's not "Withing".

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* Update README.md

Two other typos
- programatically -> programmatically
- soruces -> sources

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* first draft of release 1.3 changelog

* Update README.md with updated link to overview

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Fix overview URL in README

Signed-off-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>

* Update README.md

Update FAQ link for Carbon Hack

Signed-off-by: Russell Trow <russell@greensoftware.foundation>

* Updates to the contribution documentation

Updates to the contribution documentation

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: f267eba

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Readme as project overview in docs, disclaimer update for graduated project, and docs deploying pipeline updates

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: bd7ad15
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 693beed
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 1d78756
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: a7bc0fc
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 571e217
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: a07870f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0314c47
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 3af6f73
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 932a665
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 9f09493
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 02ea4d6
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 183a676
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 0481081

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Migrate to .NET 8

#404
#420
#421
#422

Co-authored-by: Takuya Iwatsuka <takuya.iwatsuka@gmail.com>
Signed-off-by: Yasumasa Suenaga <suenaga@nttdata.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typo

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typo

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* fix typos

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>

* Update agenda-template.md

Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>

* Resolve NU1605 relating to System.IO.FileSystem.Primitives

https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1605#example-3

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Use RID rather than QEMU to build WebAPI container image

https://devblogs.microsoft.com/dotnet/improving-multiplatform-container-support/

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Separate OpenAPI document generation from build-env stage

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add GHA workflow for generating WebAPI client library for Java

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Create case-study-template.md

Creating the case study template.

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update case-study-template.md

Minor updates.

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Up Helm chart version to 1.2.0 (#500)

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* First draft of the ADR for watt time v3 changes

First draft of the ADR for watt time v3 changes.  Looking at path mappings and parameters.  Still plenty to work on.

* Initial changelog 1.4.0 (#511)

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* overview.md: Fixed three broken links Signed-off-by: joecus1 <joecusano57@gmail.com>

* DCO Remediation Commit for joecus1 <joecusano57@gmail.com>

I, joecus1 <joecusano57@gmail.com>, hereby add my Signed-off-by to this commit: c6b2c14

Signed-off-by: joecus1 <joecusano57@gmail.com>

* Update enablement.md

update older .Net reference 

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* (fix) broken links - Update enablement.md

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Moved ADR to correct location

Moved ADR to correct location

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update SECURITY.md (.NET 8 upgrade)

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Update enablement.md 

2 missed references...

Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>

* Update docusaurus.config.js

removed banner's mention of Hack

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update docusaurus.config.js

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* documentation-change.yml: Created issue template for documentation changes.

Signed-off-by: joecus1 <joecusano57@gmail.com>

* Update 0016-watt-time-v3.md

updated notes for BA

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* First draft of the ADR for watt time v3 changes

First draft of the ADR for watt time v3 changes.  Looking at path mappings and parameters.  Still plenty to work on.

* Moved ADR to correct location

Moved ADR to correct location

* Further updates for the watt time v2 to v3 upgrade

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Update 0016-watt-time-v3.md

updated notes for BA

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Add blog article for .NET 8 upgrade

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update article

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Create 0016-watt-time-v3.md

More updates.

* Added base url to the configuration with validation

Added AuthenticationBaseUrl to the configuration and updated Authentication to leverage the v3 authenication path - note the API is not updated and will require further updates.

* Updated start and end configuration

Updated start and end configuration to new values

* Balancing Authority Parameter Renamed to Region

Balancing Authority Renamed to Region.  Does not include updates to API, just the Query String parameter.

* Update GHA workflow for uploading Javadoc

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add example for 'podman play kube' (#340)

* Add example for 'podman play kube'

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update Swagger JSON URL

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

---------

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Updates for historical data API

Updates for historical data API

* Removed accidental file

Removed accidental file

* Lots of test updates

Lots of test updates, need to do some fixes.

* Historical forecasts updated

Historical forecasts updated

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b9490e4
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b991bac
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e4f1494
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: b443e9e
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: ab1205d
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 7c115fa
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e047c9a
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: aa81382
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 8640c8c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 880fcf7

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Many tests reworked, a few to go

Many tests reworked, a few to go.  Consolidated a lot of the hand crafted json objects into objects that get serialized as the purist JsonObject format was prone to errors - in some cases tests were passing even with bad typing.

* Further test updates

Further test updates

* Further updates, just 1 test left to remediate

Further updates, just 1 test left to remediate

* Updated to add authentication client to the service builder for the tests

Updated to add authentication client to the service builder for the tests.  All tests now passing.

* Renaming of Balancing Authority to Region

Renaming of Balancing Authority to Region through all code and comments.  This will also need updating through documentation.

* Fixed spelling error in latitude

Fixed spelling error in latitude

* Fixed a bug where location sources were loading twice

Fixed a bug where location sources were loading twice.  Added a semaphore to stop any threading issues, and also stopped it loading twice in the service configuration.

* Fixed typo for method name

Fixed typo for method name

* DCO Remediation Commit for Vaughan Knight <vaughan@vaughanknight.com>

I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: e324f36
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: be6663c
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 39e45a6
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: fbfcac1
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 9aabd27
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 8127a92
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 4ff0151
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: d93320f
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 91799f7
I, Vaughan Knight <vaughan@vaughanknight.com>, hereby add my Signed-off-by to this commit: 4665813

Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>

* Updates based on code review for WattTime Tests

Updates based on code review for WattTime Tests.  Mostly cleanup of constants which were removed elsewhere in tests.

* Cleaned up a lot of the string literals

Cleaned up a lot of the string literals.  They were causing too much fragility in the code base, and made it complex when updating the WattTime API.

* More cleanup of some of the strings

More cleanup of some of the strings.  Creating consistency for using the test data on parameters and not just reponses also.

* Updates to documentation and changelog

Updates to documentation and changelog

* Fix

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update azure-regions.json (#536)

Latest azure-regions.json list 
Adds italynorth, polandcentral, spaincentral, mexicocentral, israelcentral, qatarcentral, brazilus, eastusstg
(Also seems to remove trailing zeros in some existing coordinates)

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Update casdk-docs/blog/2024-05-16-dotnet8/index.md

Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Fix comments

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md for v1.5

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CHANGELOG.md

layout update

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Add env directive to values.yaml and troubleshooting guide to avoid inotify limitation on Linux

Closes #528

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add env directive into explanation of values.yaml for Helm chart

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* typo: fix incorrect usage of it's

Signed-off-by: Scott Trent <trent@jp.ibm.com>

* Docs/blog update for releases 1.3 to1.5 and fix (#551)

* Catching up on release blog posts for 1.3, 1.4 and 1.5

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* fixed docusaurus (strict) compilation error

* release dates updated

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* added tag

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* tag update to post and image layout fix

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* updated slug

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* formatting fix

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 53e120c

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* formatting

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: 0f6cada

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

---------

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Add a configuration for disabling to cache JSON emission data

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md for 1.6

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Update 1-pr.yaml

Updating from deprecated version of upload and download artifact to v4 as mentioned in https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Update dev_carbon-aware-api.yml

updating upload and download artifact@v1or 2 actions to v4

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* fixes and release notes post for 1.6

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* updated blog post

* docs workflow's node version updated to latest LTS -> 22

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: d3b054b
I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: f412591

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* blogs with truncate

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* node version update back to 20

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* adding yarn.lock

* pipelines fixes

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Update CarbonAwareController.cs (minor typos)

Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>

* DCO Remediation Commit for Dan Benitah <bdanuw@gmail.com>

I, Dan Benitah <bdanuw@gmail.com>, hereby add my Signed-off-by to this commit: eae5bd1

Signed-off-by: Dan Benitah <bdanuw@gmail.com>

* Consider null value in carbonIntensity on EM (#575)

Issue #571

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* EM datasource didn't filter out-of-range emission data (#572)

Issue #570

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Update CHANGELOG.md

updating changelog for 1.6.1

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Add configuration for tracing log (#531)

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Updating 1.6.1 to include #531 straight away

* DCO Remediation Commit for Dan Benitah <8134789+danuw@users.noreply.github.com>

I, Dan Benitah <8134789+danuw@users.noreply.github.com>, hereby add my Signed-off-by to this commit: f35bb59

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* fix

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* add gh cli to devcontainer/codespace

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Add developerEmail to config.json

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Fix typo in commit message for Javadoc

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Upgrade actions/checkout to v4

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Fix compile error in Program.cs in WebAPI

This commit fixes not to refer variables deleted by b502723 .

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add workflow for generating NPM library

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add WebAPI client example for TS

Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>

* Add client API docs into sidebar

Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>

* Add Client API documents for WebAPI 1.0.0

* Update CHANGELOG.md for 1.7

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Create 2025-01-07-release-1.7.mdx

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Create 2024-11-30-relese1.6.1.mdx

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

* Update CHANGELOG.md

Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>

---------

Signed-off-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>
Signed-off-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>
Signed-off-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>
Signed-off-by: Dan Benitah <bdanuw@gmail.com>
Signed-off-by: Vaughan Knight <vaughan@vaughanknight.com>
Signed-off-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
Signed-off-by: danuw <danuw@volto.io>
Signed-off-by: Osama Jandali <osamajandaly@gmail.com>
Signed-off-by: Richard Jackson <jacksorjacksor@pm.me>
Signed-off-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>
Signed-off-by: Russell Trow <russell@greensoftware.foundation>
Signed-off-by: Yasumasa Suenaga <suenaga@nttdata.com>
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>
Signed-off-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>
Signed-off-by: joecus1 <joecusano57@gmail.com>
Signed-off-by: nttDamien <125525959+nttDamien@users.noreply.github.com>
Signed-off-by: Yasumasa Suenaga <yasuenag@gmail.com>
Signed-off-by: Scott Trent <trent@jp.ibm.com>
Signed-off-by: Dan Benitah <8134789+danuw@users.noreply.github.com>
Co-authored-by: tkuramoto33 <70622977+tkuramoto33@users.noreply.github.com>
Co-authored-by: Rintaro Ikeda <51394766+rinikeda@users.noreply.github.com>
Co-authored-by: rinikeda <rintaro.ikeda.sw@gmail.com>
Co-authored-by: JasonLuuk <96975358+JasonLuuk@users.noreply.github.com>
Co-authored-by: Vaughan Knight <vaughan@vaughanknight.com>
Co-authored-by: Sophie Trinder <144015600+Sophietn@users.noreply.github.com>
Co-authored-by: Szymon Duchniewicz <szymon.duchniewicz@avanade.com>
Co-authored-by: Yasumasa Suenaga <suenaga@oss.nttdata.com>
Co-authored-by: Osama Jandali <osamajandaly@gmail.com>
Co-authored-by: Richard Jackson <jacksorjacksor@pm.me>
Co-authored-by: Szymon Duchniewicz <szymon.duchniewicz.20@ucl.ac.uk>
Co-authored-by: Russell Trow <russell@greensoftware.foundation>
Co-authored-by: Takuya Iwatsuka <takuya.iwatsuka@gmail.com>
Co-authored-by: omahs <73983677+omahs@users.noreply.github.com>
Co-authored-by: joecus1 <joecusano57@gmail.com>
Co-authored-by: nttDamien <125525959+nttDamien@users.noreply.github.com>
Co-authored-by: Yasumasa Suenaga <yasuenag@gmail.com>
Co-authored-by: Scott Trent <trent@jp.ibm.com>
Co-authored-by: Scott Trent <32449003+trent-s@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working v1.7
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants