Skip to content

Commit

Permalink
24.8.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Nov 19, 2024
0 parents commit da24488
Show file tree
Hide file tree
Showing 2,866 changed files with 258,494 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
name: Bug report
about: Create a report to help us improve

---

### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->

* [ ] I agree to follow the [Code of Conduct](https://github.com/jgraph/drawio/blob/dev/CODE_OF_CONDUCT.md) that this project adheres to.
* [ ] I have searched the issue tracker for a feature request that matches the one I want to file, without success.

You must agree to search and the code of conduct. You must fill in this entire template. If you delete part/all or miss parts out your issue will be closed.

If you are technical, you should reporting bugs along the lines of https://marker.io/blog/how-to-write-bug-report. If you are not technical, we will make allowances, please try to make an effort to understand the process.

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**draw.io version (In the Help->About menu of the draw.io editor):**

- draw.io version x.y.z

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Browser Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**I tested the problem in incognito/private mode with all browser extensions switched off, write "yes" below:**
-

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project

---

* [ ] I agree to follow the [Code of Conduct](https://github.com/jgraph/drawio/blob/dev/CODE_OF_CONDUCT.md) that this project adheres to.
* [ ] I have searched the issue tracker for a feature request that matches the one I want to file, without success.

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
73 changes: 73 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ dev ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ dev ]
schedule:
- cron: '06 13 * * *'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
run: |
cd etc/build
npm install [email protected] --global
ant
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
32 changes: 32 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests

on:
schedule:
- cron: '42 11 * * *'

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. See [the FAQ](https://github.com/jgraph/drawio/wiki/Stale-bot-FAQ) for more information.'
stale-pr-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. See [the FAQ](https://github.com/jgraph/drawio/wiki/Stale-bot-FAQ) for more information.'
stale-issue-label: 'wontfix'
stale-pr-label: 'wontfix'
close-issue-label: 'declined'
days-before-stale: 250
days-before-close: 30
exempt-issue-labels: notstale
exempt-pr-labels: notstale
30 changes: 30 additions & 0 deletions .github/workflows/war.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a Java project with Ant
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant

name: WAR CI

on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8'
- name: Build war with Ant
run: |
cd etc/build
ant war
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: build/draw.war
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
bin
build
classes
node_modules
.vscode/settings.json
src/main/webapp/WEB-INF/lib/animal-sniffer-annotations-*.jar
src/main/webapp/WEB-INF/lib/annotations-*.jar
src/main/webapp/WEB-INF/lib/api-common-*.jar
src/main/webapp/WEB-INF/lib/auto-value-annotations-*.jar
src/main/webapp/WEB-INF/lib/bcpkix-jdk15on-*.jar
src/main/webapp/WEB-INF/lib/bcprov-jdk15on-*.jar
src/main/webapp/WEB-INF/lib/checker-qual-*.jar
src/main/webapp/WEB-INF/lib/conscrypt-openjdk-uber-*.jar
src/main/webapp/WEB-INF/lib/error_prone_annotations-*.jar
src/main/webapp/WEB-INF/lib/failureaccess-*.jar
src/main/webapp/WEB-INF/lib/gax-*.jar
src/main/webapp/WEB-INF/lib/gax-grpc-*.jar
src/main/webapp/WEB-INF/lib/google-auth-library-credentials-*.jar
src/main/webapp/WEB-INF/lib/google-auth-library-oauth2-http-*.jar
src/main/webapp/WEB-INF/lib/google-cloud-secretmanager-*.jar
src/main/webapp/WEB-INF/lib/google-http-client-*.jar
src/main/webapp/WEB-INF/lib/google-http-client-gson-*.jar
src/main/webapp/WEB-INF/lib/grpc-alts-*.jar
src/main/webapp/WEB-INF/lib/grpc-api-*.jar
src/main/webapp/WEB-INF/lib/grpc-auth-*.jar
src/main/webapp/WEB-INF/lib/grpc-context-*.jar
src/main/webapp/WEB-INF/lib/grpc-core-*.jar
src/main/webapp/WEB-INF/lib/grpc-grpclb-*.jar
src/main/webapp/WEB-INF/lib/grpc-netty-shaded-*.jar
src/main/webapp/WEB-INF/lib/grpc-protobuf-*.jar
src/main/webapp/WEB-INF/lib/grpc-protobuf-lite-*.jar
src/main/webapp/WEB-INF/lib/grpc-services-*.jar
src/main/webapp/WEB-INF/lib/grpc-stub-*.jar
src/main/webapp/WEB-INF/lib/grpc-xds-*.jar
src/main/webapp/WEB-INF/lib/guava-*-jre.jar
src/main/webapp/WEB-INF/lib/httpcore-*.jar
src/main/webapp/WEB-INF/lib/j2objc-annotations-*.jar
src/main/webapp/WEB-INF/lib/javax.annotation-api-*.jar
src/main/webapp/WEB-INF/lib/jsr305-*.jar
src/main/webapp/WEB-INF/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
src/main/webapp/WEB-INF/lib/opencensus-api-*.jar
src/main/webapp/WEB-INF/lib/opencensus-contrib-http-util-*.jar
src/main/webapp/WEB-INF/lib/opencensus-proto-*.jar
src/main/webapp/WEB-INF/lib/perfmark-api-*.jar
src/main/webapp/WEB-INF/lib/proto-google-cloud-secretmanager-v1-*.jar
src/main/webapp/WEB-INF/lib/proto-google-cloud-secretmanager-v1beta1-*.jar
src/main/webapp/WEB-INF/lib/proto-google-common-protos-*.jar
src/main/webapp/WEB-INF/lib/proto-google-iam-v1-*.jar
src/main/webapp/WEB-INF/lib/protobuf-java-*.jar
src/main/webapp/WEB-INF/lib/protobuf-java-util-*.jar
src/main/webapp/WEB-INF/lib/re2j-*.jar
src/main/webapp/WEB-INF/lib/threetenbp-*.jar
4 changes: 4 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Snyk (https://snyk.io) policy file
exclude:
global:
- etc/vsdx/src/com/mxgraph/vsdxImport
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: java
sudo: false
before_install:
- sudo apt-get update
- sudo apt-get install ant
- cd etc/build
script: ant war
before_deploy:
- cd $TRAVIS_BUILD_DIR
deploy:
provider: releases
api_key:
secure: CzBd1sEPknb5wQYpPa3Ao517JTi8I/wBQXAQN3xUcGiJycZRb4GcOdbylDzcL9VtjkXAldHUxGHV181xvs/xUt4BQQY4Rg0OhWFQ8JhThFGe/eQwLKTxZbJmFk9eRs36GbqrBXRQ/2SgWDzhWf1FBefBb/blJKrgpzqyJlIhYESE7mKvPGORF9ef/3zrieXCu6ycDn/AhWLXgB/HE7ZztcrsUa+DxiIvjGoVIfECIXf1uejBJSK5iPzfxWEMOoOxKueA9Y6cajMNJeKO410D/GxFTT+2xRyZhTIFiM7BF0hTCbPlIIJIS6TdIYYkIZAjd8FlYqk8ECrhCQn5etzaDx/FWvtC5IvFMJjwAfydLwPFt+iRBfP8fFSuQ6Hw8RE3CxDkU1SV6N6BAEACiteAQXzYcjtL3YCoUlsR8CIHXf+x+gaxK6rPE/XGNg8JX1N5duYDsHBf5rJZrVfImQd5Qy/eddP2/4/NBsV+5zfapMrfx0MIeP/uUWhENkZYUysnum+sn9JhKvqqjbou1gBJh8xXgFEPAqcylSqxgXFY+AcWVCJzKnycjR2ldi0jBWgaYt0ItzwW0oWOaDmxMPnXLMzbozap414BfpdipxWrhYM9e2ldGd7StniJFYN4eAzRGMYlSFd3xA+HLeJzk7EunI3tAn8VMVy7gXcHzyQ4GpA=
file: build/draw.war
skip_cleanup: true
on:
repo: jgraph/drawio
tags: true
13 changes: 13 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
cff-version: 1.2.0
message: "To cite draw.io in publications please use:"
type: software
license: Apache-2.0
abstract: "draw.io - JavaScript Diagramming and Whiteboard Application"
authors:
- name: "JGraph"
website: "http://www.drawio.com"
title: "draw.io"
version: 15.5.2
date-released: 2021-10-14
repository-code: "https://github.com/jgraph/drawio"
url: "https://www.drawio.com/"
49 changes: 49 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Contributor Covenant Code of Conduct:

## Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers aim to making participation in our project and our community a harassment-free experience for everyone.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances.
* Trolling, insulting/derogatory comments, and personal or political attacks.
* Public or private harassment, including focusing on individual developers when a topic should be broadly addressed.
* Publishing others' private information, such as a physical or electronic address, without explicit permission.
* Other conduct which could reasonably be considered inappropriate in a professional setting.
* Not respecting other people's time.
* Being impatient or rude.
* Pressing developers for priority fixes or ETAs.
* Guilting the developers into focusing on your issue(s).
* Ignoring that a request has been declined and repeating your point over and over .
* "X app has it, why don't you?"
* Repeatedly showing an inappropriate level of entitlement, asking for issue status, or bumping issues.

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies to all JGraph projects and the draw.io google groups.

Project maintainers are not subject to this code.

## Attribution

This Code of Conduct is adapted from the [Contributor-Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]

[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
Loading

0 comments on commit da24488

Please sign in to comment.