openstudio-calibration 0.12.1 → 0.13.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2472acb0658b059fc4adecf0c6dacebd8e9b2fdbc2756f84daf6193edd6631d8
4
- data.tar.gz: 401e83ad8d4429aae741f97537a583cef1526dc0dd9c887b71c3b43d1918a213
3
+ metadata.gz: e3933e605e1040984a6a2b99c8a110eed28d63801d201dedd10b3d135d6ce4ef
4
+ data.tar.gz: 99af620d4dcc12a6f8f91a00ee1e0a22dade603acdb101d6bec8d446f4784bd0
5
5
  SHA512:
6
- metadata.gz: a019151938f06616bb1d02b1c5dd49e6fd4b69133437c2b403525329d1d9f8fd93d7cf36087bfac91f76eaf4a51ebb82db0914c2272c4505a052b199cb305674
7
- data.tar.gz: 39b5c84c8d9e163fe4c3d72fe86c7f93118a68d28194262101898a574aadb10a9f745af101a22bda8338476b89e520f13e2756918a1a29175317258cdfe6627d
6
+ metadata.gz: ef22a2157ab6d7fea030afa82c288805c0045fb9d425ea24d96ecf69f5b0fcb6f3ddcfcbf760354ee3f7a52e8fee540127d81ed16e3aed3b0b7ebedc890e1ed6
7
+ data.tar.gz: fcf9b38f02c83459c821c1af5be22dea5e4e434ff59a2c93a1ad45df8c94eafe7763df0c2e9d939520991eea96a4b9f88aa0a4bc1396ac796878b9770f084945
@@ -12,12 +12,12 @@ jobs:
12
12
  S3_BUCKET: ext-gem-dashboard
13
13
 
14
14
  container: # Define the Docker container for the job. All subsequent steps run inside it.
15
- image: nrel/openstudio:3.10.0
15
+ image: nrel/openstudio:dev-3.11.0-rc3
16
16
  options: -u root -e "LANG=en_US.UTF-8" # These options are passed to the 'docker run' command internally
17
17
 
18
18
  steps:
19
19
  - name: Checkout Repository
20
- # The repository will be checked out inside the 'nrel/openstudio:3.10.0' container
20
+ # The repository will be checked out inside the 'nrel/openstudio:3.11.0' container
21
21
  uses: actions/checkout@v4 # Use v4 for better security and features
22
22
  with:
23
23
  submodules: true # Set to true if your repository uses Git submodules
@@ -39,7 +39,7 @@ jobs:
39
39
  apt-get install -y nodejs
40
40
 
41
41
  # Install AWS CLI v2
42
- curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
42
+ curl --retry 5 --retry-connrefused "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
43
43
  unzip awscliv2.zip
44
44
  ./aws/install
45
45
 
@@ -56,7 +56,6 @@ jobs:
56
56
  shell: bash # Specify the shell if needed, though bash is default for Ubuntu runners
57
57
  run: |
58
58
  # Fix git ownership issue in container
59
- git config --global --add safe.directory /__w/openstudio-load-flexibility-measures-gem/openstudio-load-flexibility-measures-gem
60
59
 
61
60
  echo "OpenStudio Version: $(openstudio --version)"
62
61
  echo "Ruby Version: $(ruby -v)"
@@ -79,14 +78,16 @@ jobs:
79
78
  ls -al ./test # Verify the output directory exists and contains files
80
79
 
81
80
  - name: Configure AWS Credentials
81
+ if: success() || failure()
82
82
  # This step is crucial for authenticating with AWS S3
83
83
  uses: aws-actions/configure-aws-credentials@v4 # Use v4 for updated features
84
84
  with:
85
85
  aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
86
86
  aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # Assuming this is your secret name
87
- aws-region: ${{ secrets.AWS_DEFAULT_REGION }} # Replace with your AWS region, e.g., us-west-2
87
+ aws-region: ${{ secrets.AWS_DEFAULT_REGION }} # Replace with your AWS region, e.g., us-east-1
88
88
 
89
89
  - name: Sync files to S3 with branch and build in path
90
+ if: success() || failure()
90
91
  shell: bash
91
92
  run: |
92
93
  echo "Deploying to s3://${{ env.S3_BUCKET }}/${{ env.DEPLOY_PATH }}/"
@@ -102,6 +103,7 @@ jobs:
102
103
  echo dir_name=$dir_name >> $GITHUB_ENV # Save the directory name to an environment variable for later use
103
104
 
104
105
  - name: Archive static site as artifact
106
+ if: always()
105
107
  uses: actions/upload-artifact@v4
106
108
  with:
107
109
  name: static-html-artifact
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # OpenStudio Calibration Measures Gem
2
2
 
3
+ ## Version 0.13.0
4
+ * Updated dependency (openstudio-extension gem 0.9.3 to 0.9.7)
5
+ * Updated dependency (openstudio-standards gem 0.8.2 to 0.8.5)
6
+
7
+ ## Version 0.12.2
8
+ * Update dependency (extension gem 0.9.3)
9
+
3
10
  ## Version 0.12.1
4
11
  * Update licenses and measure meta data
5
12
  * Update depenencies (extension gem 0.9.2)
data/README.md CHANGED
@@ -24,6 +24,8 @@ Or install it yourself as:
24
24
 
25
25
  |OpenStudio Calibration Gem|OpenStudio|Ruby|
26
26
  |:--------------:|:----------:|:--------:|
27
+ | 0.13.0 | 3.11 | 3.2.2 |
28
+ | 0.12.2 | 3.10 | 3.2.2 |
27
29
  | 0.12.1 | 3.10 | 3.2.2 |
28
30
  | 0.12.0 | 3.10 | 3.2.2 |
29
31
  | 0.11.1 | 3.9 | 3.2.2 |
@@ -3,8 +3,8 @@
3
3
  <schema_version>3.1</schema_version>
4
4
  <name>timeseries_objective_function</name>
5
5
  <uid>6804217d-4737-45f3-82df-b81393c29ce4</uid>
6
- <version_id>ed72c5eb-52d5-41a6-b4ba-d6c20cd1db88</version_id>
7
- <version_modified>2025-08-01T20:02:39Z</version_modified>
6
+ <version_id>d158fd38-ae0d-4d44-bf81-14e34da35718</version_id>
7
+ <version_modified>2025-08-08T15:24:38Z</version_modified>
8
8
  <xml_checksum>FFE04372</xml_checksum>
9
9
  <class_name>TimeseriesObjectiveFunction</class_name>
10
10
  <display_name>TimeSeries Objective Function</display_name>
@@ -425,7 +425,7 @@
425
425
  <filename>report.html.erb</filename>
426
426
  <filetype>erb</filetype>
427
427
  <usage_type>resource</usage_type>
428
- <checksum>AF17D9A6</checksum>
428
+ <checksum>E4694706</checksum>
429
429
  </file>
430
430
  <file>
431
431
  <filename>timeseries_data.csv</filename>
@@ -22,6 +22,8 @@
22
22
 
23
23
 
24
24
 
25
+
26
+
25
27
  <!DOCTYPE html>
26
28
  <meta charset="utf-8">
27
29
  <style>
@@ -3,8 +3,8 @@
3
3
  <schema_version>3.1</schema_version>
4
4
  <name>timeseries_plot</name>
5
5
  <uid>6804217d-4737-45f3-82df-b81393c29ce7</uid>
6
- <version_id>6f5d5d93-6362-43a2-b760-a4f7f450fbaa</version_id>
7
- <version_modified>2025-08-01T20:02:39Z</version_modified>
6
+ <version_id>b388579a-f1f1-4c6e-b3e6-51e57fd566e3</version_id>
7
+ <version_modified>2025-08-08T15:24:38Z</version_modified>
8
8
  <xml_checksum>FFE04372</xml_checksum>
9
9
  <class_name>TimeseriesPlot</class_name>
10
10
  <display_name>Timeseries Plot</display_name>
@@ -132,7 +132,7 @@
132
132
  <filename>report.html.erb</filename>
133
133
  <filetype>erb</filetype>
134
134
  <usage_type>resource</usage_type>
135
- <checksum>87AC6D26</checksum>
135
+ <checksum>0F3CCAA5</checksum>
136
136
  </file>
137
137
  </files>
138
138
  </measure>
@@ -22,6 +22,8 @@
22
22
 
23
23
 
24
24
 
25
+
26
+
25
27
  <!DOCTYPE html>
26
28
  <meta charset="utf-8">
27
29
  <style>
@@ -5,6 +5,6 @@
5
5
 
6
6
  module OpenStudio
7
7
  module Calibration
8
- VERSION = '0.12.1'.freeze
8
+ VERSION = '0.13.0'.freeze
9
9
  end
10
10
  end
@@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
30
30
  spec.required_ruby_version = '~> 3.2.2'
31
31
 
32
32
  spec.add_dependency 'bundler', '~> 2.4.10'
33
- spec.add_dependency 'openstudio-extension', '~> 0.9.2'
34
- spec.add_dependency 'openstudio-standards', '0.8.2'
33
+ spec.add_dependency 'openstudio-extension', '~> 0.9.7'
34
+ spec.add_dependency 'openstudio-standards', '0.8.5'
35
35
 
36
36
  # if we need the following dependencies pinned,
37
37
  # let's set them in extension-gem for next release
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstudio-calibration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Ball
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-08-01 00:00:00.000000000 Z
12
+ date: 2026-06-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -31,28 +31,28 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.9.2
34
+ version: 0.9.7
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.9.2
41
+ version: 0.9.7
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: openstudio-standards
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - '='
47
47
  - !ruby/object:Gem::Version
48
- version: 0.8.2
48
+ version: 0.8.5
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - '='
54
54
  - !ruby/object:Gem::Version
55
- version: 0.8.2
55
+ version: 0.8.5
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: multipart-post
58
58
  requirement: !ruby/object:Gem::Requirement
@@ -379,7 +379,7 @@ licenses: []
379
379
  metadata:
380
380
  bug_tracker_uri: https://github.com/NREL/openstudio-calibration-gem/issues
381
381
  changelog_uri: https://github.com/NREL/openstudio-calibration-gem/blob/develop/CHANGELOG.md
382
- source_code_uri: https://github.com/NREL/openstudio-calibration-gem/tree/v0.12.1
382
+ source_code_uri: https://github.com/NREL/openstudio-calibration-gem/tree/v0.13.0
383
383
  post_install_message:
384
384
  rdoc_options: []
385
385
  require_paths: