Skip to content
Merged

0.1.1 #108

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ca873d0
chore(deps): update actions/upload-artifact action to v7
renovate[bot] Feb 26, 2026
db62290
chore(deps): update gradle/actions digest to 342e94e
renovate[bot] Mar 3, 2026
70d4f82
chore(deps): update gradle/actions action to v5
renovate[bot] Feb 24, 2026
51714f8
zollinger/add category support (#77)
Jonathan-Zollinger Mar 3, 2026
adf74b5
ci: run only on ubuntu
Jonathan-Zollinger Mar 3, 2026
2596765
fix: correct infrequent 409 errors
Jonathan-Zollinger Mar 3, 2026
930d82f
test: check create, delete category
Jonathan-Zollinger Mar 3, 2026
82bff97
chore(deps): update gradle/actions digest to c2457a7
renovate[bot] Mar 24, 2026
3fd86dd
chore(deps): update gradle/actions action to v6
renovate[bot] Mar 23, 2026
8925373
chore(deps): update graalvm/setup-graalvm digest to 03e8abf
renovate[bot] Mar 16, 2026
97701eb
fix(deps): update dependency org.projectlombok:lombok to v1.18.44
renovate[bot] Mar 11, 2026
9c9b68a
chore(deps): update graalvm/setup-graalvm action to v1.5.0
renovate[bot] Mar 12, 2026
26bdcae
chore(deps): update graalvm/setup-graalvm action to v1.5.1
renovate[bot] Mar 31, 2026
6372605
chore(deps): update gradle/actions action to v6.0.1
renovate[bot] Mar 24, 2026
1c54cd4
chore(deps): update gradle/actions digest to 263d8fe
renovate[bot] Mar 27, 2026
f62ae39
chore(deps): update graalvm/setup-graalvm digest to 2149f39
renovate[bot] Mar 31, 2026
768c37c
chore: bump micronaut to 4.10.10
Jonathan-Zollinger Mar 31, 2026
1bce330
chore(deps): update gradle/actions action to v6.1.0
renovate[bot] Apr 3, 2026
abfbd25
chore(deps): update graalvm/setup-graalvm action to v1.5.2
renovate[bot] Apr 2, 2026
b1db1f3
chore(deps): update graalvm/setup-graalvm digest to 60c2672
renovate[bot] Apr 2, 2026
65aff24
refactor: cleanup whitespace
Jonathan-Zollinger Mar 31, 2026
cb1d6bc
feat: introduce searchClient#list()
Jonathan-Zollinger Apr 1, 2026
c0f6a26
feat: introduce Search#Count method
Jonathan-Zollinger Apr 2, 2026
b17ec6d
feat: add SearchClient#export()
Jonathan-Zollinger Apr 5, 2026
5f8c00f
fix(test): correct where block syntax
Jonathan-Zollinger Apr 5, 2026
955f489
chore(deps): update gradle/actions digest to 11d4d83
renovate[bot] Apr 3, 2026
145eb00
chore(config): migrate config renovate.json
renovate[bot] Mar 3, 2026
987731b
Create LICENSE
Jonathan-Zollinger Apr 11, 2026
fc26036
chore: bump project version to 0.1.1-SNAPSHOT
Jonathan-Zollinger Apr 11, 2026
6a2ccd8
Add support for Zendesk Categories
Jonathan-Zollinger Apr 21, 2026
800d0c1
chore: set project version to 0.1.1
Jonathan-Zollinger Apr 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ on:
- "[0-9]+.[0-9]+.[0-9]+" # release branches
jobs:
build-and-analyze:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ubuntu-latest
env:
Z4J_URL: ${{ secrets.ZENDESK_URL }}
Z4J_TOKEN: ${{ secrets.ZENDESK_TOKEN }}
Expand All @@ -23,12 +20,12 @@ jobs:
with:
fetch-depth: 0 # SonarCloud needs a full history to assign issues correctly
- name: Set up JDK
uses: graalvm/setup-graalvm@9d0e2dff13a8c69a81d72a49c9816836f963fe01
uses: graalvm/setup-graalvm@60c26726de13f8b90771df4bc1641a52a3159994
with:
java-version: '21'
distribution: 'graalvm-community'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # 4.4.4
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # 6.1.0
- name: Build and run tests
if: ${{ github.event.pull_request.base.ref != 'main' && github.event.action != 'closed' }}
run: ./gradlew build
Expand All @@ -39,7 +36,7 @@ jobs:
run: ./gradlew build sonar
- name: Upload test report
if: failure()
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0
with:
name: test-report
path: build/reports/tests/test
Expand All @@ -50,9 +47,9 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
- name: Set up JDK 21
uses: graalvm/setup-graalvm@54b4f5a65c1a84b2fdfdc2078fe43df32819e4b1 # 1.4.5
uses: graalvm/setup-graalvm@60c26726de13f8b90771df4bc1641a52a3159994 # 1.5.2
with:
java-version: '21'
distribution: 'graalvm-community'
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # v4.4.4
uses: gradle/actions/dependency-submission@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
with:
fetch-depth: 0
- uses: gradle/actions/wrapper-validation@78f7dee6337f393c0a872d0afbda4c51a20e543d
- uses: gradle/actions/wrapper-validation@11d4d83c63a6ce61b32d8a9c4faddbdb04fe9917
- name: Set up JDK
uses: graalvm/setup-graalvm@9d0e2dff13a8c69a81d72a49c9816836f963fe01
uses: graalvm/setup-graalvm@60c26726de13f8b90771df4bc1641a52a3159994
with:
java-version: '21'
distribution: 'graalvm-community'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # 4.4.4
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # 6.1.0
- name: Publish to Maven Central
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down
31 changes: 25 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,23 @@ By participating in this project, you agree to abide our
[code of conduct]


**✨ Thank you for contributing to z4j! ✨**
<strong>Thank you for contributing to z4j</strong>

PBU projects are open to contributions! Below are some instructions on best practices and standards used when contributing to this project!
Below are some instructions on best practices and standards used when contributing to this project!

## Style Guide
- This project uses [google's java style guide].
- We follow (and enforce) [conventional commits] in this repo.
## Set up your machine

`z4j` is written in java 21, runs on [graal community distro], and uses [gradle] as its build tool.
`z4j` is written in java 21, compiled with the [graalvm], and uses [gradle] as its build tool.

### Prerequisites:
### What you need locally:
- Gradle doesn't need to be installed locally, a [gradle wrapper] is provided with this repo.
- Docker or Podman installed and running at compile time
- [Graal-CE 21]
- [Git]
- a decent IDE like IntelliJ

#### Getting Started
Create your own fork of `z4j`, clone your fork and call the gradle wrapper to build the project
Expand All @@ -30,7 +31,7 @@ cd z4j
./gradlew build
```
## IDE
Any IDE specific documentation will reference IntelliJ configured to [delegate build and run actions to gradle].
Any IDE specific documentation in this repo will reference IntelliJ, specifically one configured to [delegate build and run actions to gradle].

# Testing

Expand All @@ -45,6 +46,8 @@ To run the tests, you will need:
1. A Zendesk account with the Help Center activated, along with an API token for access.
2. Users with [different roles] created in your Zendesk instance.
3. [Environment variables] configured in your test environment
4. [Custom ticket fields] configured in your sandbox
5. [Expected locales] enabled in your help center.

### Required Roles for Testing

Expand All @@ -58,6 +61,8 @@ You'll need to set up the following users in your Zendesk account:
<details id="user-configuration"><summary><strong>User Configuration</strong></summary>

View a user's configured role by navigating to {domain}.zendesk.com/admin/people/team/members, then selecting a user.


<table>
<thead>
<tr>
Expand Down Expand Up @@ -127,6 +132,7 @@ A dropdown menu to categorize the ticket's subject.
* **Field ID**: `40971535122835`

**Field values:**

| Field option title | Tag |
| :----------------- | :---- |
| Delivery | `delivery` |
Expand All @@ -142,6 +148,7 @@ A dropdown menu to specify the type of refund being processed.
* **Field ID**: `45241019372563`

**Field values:**

| Field option title | Tag | Default |
| :----------------- | :---- |:---:|
| Full Refund | `full_refund` | |
Expand Down Expand Up @@ -217,6 +224,16 @@ A multi-select dropdown for reporting one or more errors.

---

## Expected Locales
A few locales are to be enabled. See Zendesk's current docs on how to do that.

The following languages are required for testing:
- Spanish (`es`)
- French (`fr`)
- English (`en`)

---

## Testing Strategy

One of the most important parts of contributing to z4j is getting tests right. A test is written adequately if:
Expand Down Expand Up @@ -292,14 +309,16 @@ This method is a little tricky to test for negative tests because the only way t
[branches of code]:https://medium.com/@zubairkhansh/branch-testing-and-branch-coverage-3fb4bbd9f949
[code of conduct]:CODE_OF_CONDUCT.md
[conventional commits]:https://www.conventionalcommits.org/en/v1.0.0/
[Custom ticket fields]:#custom-ticket-fields-setup
[Expected locales]:#Expected-Locales
[delegate build and run actions to gradle]:https://www.jetbrains.com/help/idea/work-with-gradle-projects.html#delegate_build_gradle
[different roles]:#Required-Roles-for-Testing
[google's java style guide]:https://google.github.io/styleguide/javaguide.html
[google's styleguide]:https://google.github.io/styleguide/javaguide.html#s7-javadoc
[gradle]:https://gradle.org/maven-and-gradle/
[gradle wrapper]:https://docs.gradle.org/current/userguide/gradle_wrapper_basics.html
[Git]:https://gist.github.com/Jonathan-Zollinger/8d9a231a57f3d33ff813989c34df00e0
[graal community distro]:https://www.graalvm.org/release-notes/JDK_21/
[graalvm]:https://www.graalvm.org/release-notes/JDK_21/
[Graal-CE 21]:https://www.graalvm.org/jdk21/docs/
[Environment Variables]:#Required-Environment-Variables
[source function]:https://gist.github.com/Jonathan-Zollinger/96160f971741f5f3a8749d10127e7764
Expand Down
201 changes: 201 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.

"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:

(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and

(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and

(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and

(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.

You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ To get a local copy up and running, please follow the detailed setup instruction

| Gradle Kotlin | Gradle |
|:-----------------------------------------------|:----------------------------------------------|
| <pre>implementation("lol.pbu:z4j:0.1.0")</pre> | <pre>implementation 'lol.pbu:z4j:0.1.0'</pre> |
| <pre>implementation("lol.pbu:z4j:0.1.1")</pre> | <pre>implementation 'lol.pbu:z4j:0.1.1'</pre> |

**Maven**

```xml
<dependency>
<groupId>lol.pbu</groupId>
<artifactId>z4j</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
</dependency>
```

Expand Down
Loading
Loading