Skip to content

Commit

Permalink
Merge branch 'main' into api_limiting_http_request_filter
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro authored Oct 29, 2024
2 parents 739fbdb + e68bfbe commit 37e33a6
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v2.67.1 - 2024-10-29

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.67.0...v2.67.1)

## v2.67.0 - 2024-10-29

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.66.6...v2.67.0)

## v2.66.6 - 2024-10-28

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.66.5...v2.66.6)

- [#7111](https://github.com/ORCID/ORCID-Source/pull/7111): update license reference

## v2.66.5 - 2024-10-15

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.66.4...v2.66.5)
Expand Down
2 changes: 1 addition & 1 deletion PROJECTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Also see our active contributors: [CREDITS.md](https://github.com/ORCID/ORCID-Wo
>
> Copyright (c) 2013 ORCID, Inc.
> Licensed under an MIT-Style License (MIT)
> https://github.com/ORCID/ORCID-Source/blob/master/LICENSE.md
> https://github.com/ORCID/ORCID-Source/blob/main/LICENSE
> http://orcid.org/OpenSource/license
>
> This copyright and license information (including a link to the full license) shall be included in its entirety in all copies or substantial portion of the software.
Expand Down
2 changes: 1 addition & 1 deletion TESTAUTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ Mac: ```/Applications/Firefox.app/Contents/MacOS/firefox-bin```
[src/test/resources/test-client.properties](https://github.com/ORCID/ORCID-Source/blob/master/orcid-integration-test/src/test/resources/test-client.properties)

# License
See [LICENSE.md](https://github.com/ORCID/ORCID-Source/blob/master/LICENSE.md)
See [LICENSE](https://github.com/ORCID/ORCID-Source/blob/main/LICENSE)

13 changes: 12 additions & 1 deletion orcid-activemq/src/main/resources/message-listener.properties
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,15 @@ org.orcid.message-listener.index.s3.search.max_elements=5
org.orcid.message-listener.index.summaries.bucket_name=v2.0-summaries-dev
org.orcid.message-listener.index.activities.bucket_name=v2.0-activities-dev
org.orcid.message-listener.index.summaries.v3.bucket_name=v3.0-summaries-dev
org.orcid.message-listener.index.activities.v3.bucket_name=v3.0-activities-dev
org.orcid.message-listener.index.activities.v3.bucket_name=v3.0-activities-dev


org.orcid.persistence.panoply.cleanup.production=false
# Panoply redshift database
org.orcid.core.utils.panoply.driver=com.amazon.redshift.jdbc.Driver
org.orcid.core.utils.panoply.maxPoolSize=20
org.orcid.core.utils.panoply.password=xxx
org.orcid.core.utils.panoply.idleConnectionTimeout=3600
org.orcid.core.utils.panoply.connectionTimeout=36000
org.orcid.core.utils.panoply.jdbcUrl=xxx
org.orcid.core.utils.panoply.username=xxx
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,24 @@
</bean>

<bean id="ORCIDMarshaller" class="org.orcid.utils.jersey.marshaller.ORCIDMarshaller" />

<!-- Panoply Redshift -->
<bean id="panoplyRedshiftDataSource" class="com.zaxxer.hikari.HikariDataSource" destroy-method="close">
<property name="driverClassName" value="\${org.orcid.core.utils.panoply.driver:com.amazon.redshift.jdbc.Driver}" />
<property name="jdbcUrl" value="\${org.orcid.core.utils.panoply.jdbcUrl}" />
<property name="username" value="\${org.orcid.core.utils.panoply.username}" />
<property name="password" value="\${org.orcid.core.utils.panoply.password}" />
<property name="maximumPoolSize" value="\${org.orcid.core.utils.panoply.maxPoolSize:5}" />
<property name="idleTimeout" value="\${org.orcid.core.utils.panoply.idleConnectionTimeout:3600}" />
<property name="connectionTimeout" value="\${org.orcid.core.utils.panoply.connectionTimeout:3600}" />
</bean>

<!-- Panoply JdbcTemplate Bean Definition -->
<bean id="panoplyJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="panoplyRedshiftDataSource" />
</bean>

<!-- Redshift panoply -->
<bean id="panoplyClient" class="org.orcid.utils.panoply.PanoplyRedshiftClient" />

</beans>

0 comments on commit 37e33a6

Please sign in to comment.